You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It'd be nice to make some "standard" datasets easily accessible, so users don't have to figure out how to create them from scratch. For example, the datasets used in the h2o benchmarks here.
Here are three rows from the h2o groupby dataset:
It would be nice if I could generate this dataset as follows:
import dbldatagen as dg
# using hierarchical naming
df = dg.Datasets("basic/iot_like").get(table="primary", rows=100000, numPartitions=4).build()
# or simply use
df = dg.Datasets("basic/iot_like").get().build()
We could also have some documentation of the datasets available via APIs so that we would not have to revise the docs every time we add a new dataset - along the lines of how dbutils is self describing.
import dbldatagen as dg
dg.Datasets.list("<pattern>") # get summary details
db.Datasets.describe("basic/iot_like") # get detailed description of data set
# describe should indicate the tables available, defaults, what the data looks like etc
Initial datasets would be a) the data sets described in the documentation as examples, b) some curated set of datasets such as the H20 one you reference
To others reading this, feel free to suggest datasets
Expected Behavior
It'd be nice to make some "standard" datasets easily accessible, so users don't have to figure out how to create them from scratch. For example, the datasets used in the h2o benchmarks here.
Here are three rows from the h2o groupby dataset:
It would be nice if I could generate this dataset as follows:
Current Behavior
I am guessing that there is some way to generate this dataset with the current API, but might take me a little while to figure it out.
The text was updated successfully, but these errors were encountered: