Export 101 rows to a notebook
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 pandasIf 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 101 rows into a DataFrame called df
:
df = pandas.read_json( "https://covid-19-j7hipcg4aq-uc.a.run.app/covid.json?sql=select+rowid%2C+date%2C+state%2C+fips%2C+cases%2C+deaths+from+ny_times_us_states+order+by+date+desc+limit+101&_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( "https://covid-19-j7hipcg4aq-uc.a.run.app/covid.json?sql=select+rowid%2C+date%2C+state%2C+fips%2C+cases%2C+deaths+from+ny_times_us_states+order+by+date+desc+limit+101&_shape=array" )