frictionless-r
frictionless-r copied to clipboard
R package to read and write Frictionless Data Packages
CHANGELOG: https://datapackage.org/overview/changelog/#schemacategories-new and https://datapackage.org/overview/changelog/#schemacategoriesordered-new - [ ] Implement with interlacer package and #213 - [ ] Update tests - [ ] Update documentation - [ ] How do we support...
A resource with the properties `path` and `data`, will currently read from path. To be correct, it should return an error if both properties are available. Frictionless Framework returns: ```...
The [httr](https://httr.r-lib.org/) package is a dependency of frictionless: https://github.com/frictionlessdata/frictionless-r/blob/b0a9fe34b26fe120309899503bba67cffcb710ff/DESCRIPTION#L33. However, httr is superseded. As this should not create a big issue, for long term development it could be better to...
Update: this can now be defined in `fieldMatch` #216 --- It is possible for an (invalid) Data Package to have discrepancies between the schema and the actual data. E.g. defining...
Presently, all missing values loaded by read_resource become NAs in the resulting tibble. This means that when missing values encode reasons for missingness (e.g. "Participant refused item", "Participant absent"), these...
Implement the functions suggested in the #70 : - `add_description()` - `edit_fields()` ## `add_description()` ``` R iris_schema add_description( c( "Sepal length in cm.", "Sepal width in cm.", "Pedal length in...
A possible way to implement #157 . It sounds like you're plan is to let the idea simmer to see how other implementations approach it, but figured I'd submit what...
CHANGELOG: https://datapackage.org/overview/changelog/#fieldmissingvalues-new - [ ] Implement with interlacer package and #213 - [ ] Add tests - [ ] Update documentation Values defined in `field.missingValues` overwrite anything that is defined...
CHANGELOG: https://datapackage.org/overview/changelog/#list-field-type-new - [ ] Decide on support, e.g. don't support this (i.e. default to string) or convert values on `delimiter` to a vector. - [ ] Update documentation -...