|
83 | 83 | "* `csv_path`: The desired path to your .csv file (in this case `epidemiology.csv`) relative to paths['raw_data_path']\n", |
84 | 84 | "* `download_message`: The message to display to indicate to the user how to manually download your .csv file.\n", |
85 | 85 | "* `license_str`: Information on the license for the dataset\n", |
86 | | - "* `descr_str`: Information on the dataset itself" |
| 86 | + "* `readme_str`: Information on the dataset itself" |
87 | 87 | ] |
88 | 88 | }, |
89 | 89 | { |
|
123 | 123 | "metadata": {}, |
124 | 124 | "outputs": [], |
125 | 125 | "source": [ |
126 | | - "descr_str = \"\"\"\n", |
| 126 | + "readme_str = \"\"\"\n", |
127 | 127 | "The epidemiology table from Google's [COVID-19 Open-Data dataset](https://github.com/GoogleCloudPlatform/covid-19-open-data). \n", |
128 | 128 | "\n", |
129 | 129 | "The full dataset contains datasets of daily time-series data related to COVID-19 for over 20,000 distinct locations around the world. The data is at the spatial resolution of states/provinces for most regions and at county/municipality resolution for many countries such as Argentina, Brazil, Chile, Colombia, Czech Republic, Mexico, Netherlands, Peru, United Kingdom, and USA. All regions are assigned a unique location key, which resolves discrepancies between ISO / NUTS / FIPS codes, etc. The different aggregation levels are:\n", |
|
170 | 170 | " csv_path=csv_path,\n", |
171 | 171 | " download_message=download_message,\n", |
172 | 172 | " license_str=license_str,\n", |
173 | | - " descr_str=descr_str,\n", |
| 173 | + " readme_str=readme_str,\n", |
174 | 174 | " overwrite_catalog=True)" |
175 | 175 | ] |
176 | 176 | }, |
|
206 | 206 | "cell_type": "markdown", |
207 | 207 | "metadata": {}, |
208 | 208 | "source": [ |
209 | | - "By default, the workflow helper function also created a `covid-19-epidemiology_raw` dataset that has an empty `ds.data`, but keeps a record of the location of the final `epidemiology.csv` file relative to in `ds.EXTRA`.\n", |
| 209 | + "By default, the workflow helper function also created a `covid-19-epidemiology_raw` dataset that has an empty `ds.data`, but keeps a record of the location of the final `epidemiology.csv` file relative to in `ds.FILESET`.\n", |
210 | 210 | "\n", |
211 | | - "The `.EXTRA` functionality is covered in other documentation." |
| 211 | + "The `.FILESET` functionality is covered in other documentation." |
212 | 212 | ] |
213 | 213 | }, |
214 | 214 | { |
|
236 | 236 | "metadata": {}, |
237 | 237 | "outputs": [], |
238 | 238 | "source": [ |
239 | | - "ds_raw.EXTRA" |
| 239 | + "ds_raw.FILESET" |
240 | 240 | ] |
241 | 241 | }, |
242 | 242 | { |
|
246 | 246 | "outputs": [], |
247 | 247 | "source": [ |
248 | 248 | "# fq path to epidemiology.csv file\n", |
249 | | - "ds_raw.extra_file('epidemiology.csv')" |
| 249 | + "ds_raw.fileset_file('epidemiology.csv')" |
250 | 250 | ] |
251 | 251 | }, |
252 | 252 | { |
|
0 commit comments