home

Menu
  • Log in

Export 1 rows to a notebook

Back to the rows

You can export this data to a Jupyter or Observable notebook by copying 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 1 row into a DataFrame called df:

df = pandas.read_json(
    "http://data-archives.envirodatagov.org/risk-management-plans/-/query.json?sql=select+count%28%2A%29+from+rmp_facility_chemicals+where+%22chemical_id%22+%3D+%3Ap0+&_shape=array"
)

Run df in a new cell to see the table.

Observable

Import the data into a variable called rows like this:

rows = d3.json(
  "http://data-archives.envirodatagov.org/risk-management-plans/-/query.json?sql=select+count%28%2A%29+from+rmp_facility_chemicals+where+%22chemical_id%22+%3D+%3Ap0+&_shape=array"
)
Powered by Datasette