dataset
dataset copied to clipboard
qri dataset definition
The `NumVersions` field was added in https://github.com/qri-io/dataset/pull/177 to compensate for the fact that we, at that point, had no other reliable way to cache the number of versions a dataset...
Ran into a case in a test on `qri` where we needed to deep copy a dataset. We are relying on `github.com/jinzhu/copier` for this functionality, and it's working fine. While...
Is there a plan to support [Apache Parquet](http://parquet.apache.org/) as a data format?
Request from user Bob Gradeck in Sprint R: “I uploaded a public art dataset”
https://github.com/qri-io/desktop/issues/478 uncovered this with the following error message when running `qri save`: > validating data: error reading values: error writing row 129283: json: unsupported value: +Inf What's going on here:...
CSV and xlsx are always considered `Tabular`. Json is where this get's more fun. `Tabular` is true when each entry in the data, whether or not the top level is...
Metadata is confusing, we should clean up the comments on our `Meta` struct, giving readers a jump-off point for DCAT & the Dublin Core, and a list of any additions...
In lots of places I end up generating a body file on the spot from a stream of data & a structure: ```go qfs.NewMemfileBytes(fmt.Sprintf("body.%s", ds.Structure.Format), w.Bytes()) ``` I think this...
EG: ``` Name,Home_Runs,Rank Barry Bonds,762,1 Hank Aaron,755,2 Babe Ruth,714, Alex Rodriguez,696,4 Willie Mays,660,5 ``` has schema: ``` "schema": { "items": { "items": [ { "title": "name", "type": "string" }, {...
cafs.Filestore and cafs.Fetcher both relate to how datasets act with regards to getting file data from the underlying store. The only difference between Fetch and the Filestore's Get is that...