{% extends "base.html" %} {% block title %}Export to a notebook{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Export to a notebook

You can export this data to a Jupyter or Observable notebook by copyind and pasting the following:

Jupyter

Make sure you have Pandas. Import it in a cell like this:

import pandas
If this shows an error you can run %pip install pandas in a notebook cell to install it.

Now paste the following into a cell to load the data into a DataFrame called df:

df = pandas.read_json({{ json.dumps(json_url) }})

Run df in a new cell to see the table.

Observable

Import d3 by running this in a cell:

d3 = require("d3@5")

Now import the data into a variable called rows like this:

rows = d3.json({{ json.dumps(json_url) }})
{% endblock %}