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
dataTypes = [value.to_data() for value in islice(dsr, 10)]
55
+
56
+
# Or convert straight into pandas
57
+
import pandas as pd
58
+
dataTypeDataframe = pd.DataFrame([value.to_data() for value in islice(dataTypeDataset.open('r'), 10)])
53
59
```
54
60
61
+
`<project_directory>` is the repo's directory.
62
+
`<data_directory>` is the *parent* data directory.
63
+
64
+
If the project is called `my_project` and the code is located in `~/my_project` and the project data is in `~/data/my_project`, `<data_directory>` is `~/data`.
65
+
Set `branch` argument in `datasetFactory.get()` if you need anything else other than the current branch.
66
+
67
+
The `force` argument allows you to load the data even if your repo has uncommitted code, this is usually not a problem unless you plan to write into dataframes from Jupyter.
68
+
69
+
### How to list existing Datasets
70
+
55
71
This will list all existing datasets that matches `pattern` as self contained executable code.
0 commit comments