Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Fix example in 06_jupyter-notebook-workflow #5

Merged
merged 2 commits into from
Oct 29, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion docs/06_jupyter-notebook-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,10 @@ Next, you need to reload Kedro variables by calling `%reload_kedro` line magic i
Finally, you can save the data by executing the following command:

```python
import pandas
my_dict = {"key1": "some_value", "key2": None}
context.catalog.save("my_dataset", my_dict)
df = pandas.DataFrame([my_dict])
context.catalog.save("my_dataset", df)
```

### Using parameters
Expand Down