as.data.frame {openeo} | R Documentation |
Coercions into data.frame objects
Description
The openEO package offers functions to transform list objects obtained from JSON into data.frames. This is mostly applied in list_* functions.
Usage
## S3 method for class 'JobList'
as.data.frame(x, ...)
## S3 method for class 'ServiceList'
as.data.frame(x, ...)
## S3 method for class 'BandList'
as.data.frame(x, ...)
## S3 method for class 'CollectionList'
as.data.frame(x, ...)
## S3 method for class 'VersionsList'
as.data.frame(x, ...)
## S3 method for class 'FileFormatList'
as.data.frame(x, ...)
Arguments
x |
the list object that will be coerced |
... |
potentially additional parameters to pass on to internal functions like 'extract' |
Details
The parameter 'extract' is used as an additional parameter to extract specific values of the output list / json. The value for the parameters is a vector of character like c('id','title')
Value
a data.frame
[Package openeo version 1.3.1 Index]