Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
d48fa56
docs: add CDC page and parameters
JavierMtzRdz Jan 28, 2026
32f8a12
docs: add covid facility page and parameters
JavierMtzRdz Jan 28, 2026
91ee1a4
docs: add covid facility state timeseries page and parameters
JavierMtzRdz Jan 28, 2026
87f55c2
docs: add covidcast metta page and parameters
JavierMtzRdz Jan 29, 2026
c857bf0
docs: add covidcast page and parameters
JavierMtzRdz Jan 29, 2026
f0efde2
docs: add Delphi forecast page and parameters
JavierMtzRdz Jan 29, 2026
0be339e
docs: add dengue nowcast page and parameters
JavierMtzRdz Jan 29, 2026
336aef2
docs: add dengue sensor page and parameters
JavierMtzRdz Jan 29, 2026
2d77f82
docs: add ECDC page and parameters
JavierMtzRdz Jan 29, 2026
43a61ac
docs: add FluSurv page and parameters
JavierMtzRdz Jan 29, 2026
d7e2fa7
docs: add Flueview page and parameters
JavierMtzRdz Jan 29, 2026
f6ea62c
docs: add gft page and parameters
JavierMtzRdz Jan 29, 2026
bad0378
docs: add ght page and parameters
JavierMtzRdz Jan 29, 2026
ed7e9cf
docs: add KCDC page and parameters
JavierMtzRdz Jan 29, 2026
045ec83
docs: add meta NOROSTAT page and parameters
JavierMtzRdz Jan 29, 2026
4ebb7ac
docs: add meta function page and parameters
JavierMtzRdz Jan 29, 2026
84c4f41
docs: add NIDSS page and parameters
JavierMtzRdz Jan 29, 2026
8fcb74e
docs: add missing NoroSTAT and NIDSS pages and parameters
JavierMtzRdz Jan 29, 2026
d341988
docs: add nowcast page and parameters
JavierMtzRdz Jan 29, 2026
f382bec
docs: add PAHO page and parameters
JavierMtzRdz Jan 29, 2026
72e81cb
docs: add Quidel page and parameters
JavierMtzRdz Jan 29, 2026
cfb5bc4
docs: add Sensors page and parameters
JavierMtzRdz Jan 29, 2026
5be0872
docs: add twitter and Wikipedia pages and parameters
JavierMtzRdz Jan 29, 2026
f2f65aa
Add Napoleon in the Sphinx configuration.
JavierMtzRdz Feb 2, 2026
906fb3d
docs: clean up parameter descriptions
JavierMtzRdz Feb 3, 2026
d7119d2
docs: add reference to specific valid parameter inputs.
JavierMtzRdz Feb 5, 2026
c00a23a
docs: fix documentation formatting and replace duplicate links with v…
JavierMtzRdz Feb 5, 2026
6711fd9
docs: update notebooks to match updates on epidatr/pull/324
JavierMtzRdz Feb 5, 2026
789b427
docs: remove fluview duplicated location link
JavierMtzRdz Feb 5, 2026
e7ed7c2
docs: correct lint formatting errors
JavierMtzRdz Feb 6, 2026
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
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ["sphinx.ext.autodoc", "sphinx_autodoc_typehints", "nbsphinx"]
extensions = ["sphinx.ext.autodoc", "sphinx.ext.napoleon", "sphinx_autodoc_typehints", "nbsphinx"]

# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]
Expand Down
4 changes: 2 additions & 2 deletions docs/epidatpy.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
epidatpy Reference
================
==================

.. toctree::
:maxdepth: 4
Expand All @@ -13,7 +13,7 @@ epidatpy.request module
:show-inheritance:

epidatpy._endpoints module
-----------------------
--------------------------

.. automodule:: epidatpy._endpoints
:members:
Expand Down
63 changes: 61 additions & 2 deletions docs/getting_started.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,65 @@
").df()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"We can also request all versions of the data issued within a specific time range using the `issues` argument. `issues` can also take a single date.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# See how the estimate for a SINGLE day (March 1, 2021) evolved\n",
"# by fetching all issues reported between March and April 2021.\n",
"epidata.pub_covidcast(\n",
" data_source=\"fb-survey\",\n",
" signals=\"smoothed_cli\",\n",
" geo_type=\"state\",\n",
" time_type=\"day\",\n",
" geo_values=\"pa\",\n",
" time_values=\"2021-03-01\",\n",
" issues=EpiRange(\"2021-03-01\", \"2021-04-30\"),\n",
").df()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Finally, we can use the `lag` argument to request only data that was reported a certain number of days after the event.\n"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"# Fetch survey data for January 2021, but ONLY include data\n",
"# that was issued exactly 2 days after it was collected.\n",
"epidata.pub_covidcast(\n",
" data_source=\"fb-survey\",\n",
" signals=\"smoothed_cli\",\n",
" geo_type=\"state\",\n",
" time_type=\"day\",\n",
" geo_values=\"pa\",\n",
" time_values=EpiRange(20210101, 20210131),\n",
" lag=2,\n",
").df()"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"See detail notebook about [versioned data](versioned_data.ipynb) for details and more ways to specify versioned data.\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
Expand Down Expand Up @@ -234,9 +293,9 @@
"\n",
"Most data is only available for the US. Select endpoints report other countries at the national and/or regional levels. Endpoint descriptions explicitly state when they cover non-US locations.\n",
"\n",
"For endpoints that report US data, see the\n",
"For the main endpoints that report US data, see the\n",
"[geographic coding documentation](https://cmu-delphi.github.io/delphi-epidata/api/covidcast_geography.html)\n",
"for available geographic levels.\n",
"for available geographic levels. Documentation for the other endpoints is available [here](https://cmu-delphi.github.io/delphi-epidata/api/geographic_codes.html).\n",
"\n",
"## International data\n",
"\n",
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Note that for the time being, the private endpoints (i.e. those prefixed with
``pvt``) will require additional permissions (contact us for more information).

Documentation Contents
===============
======================

.. toctree::
:maxdepth: 1
Expand Down
Loading