COVIDTrackingProject Class

Represents the COVID Tracking Project dataset.

This datasets contains COVID Tracking Project dataset providing the latest numbers on tests, confirmed cases, hospitalizations, and patient outcomes from every US state and territory. For more information about this dataset, including column descriptions, different ways to access the dataset, and examples, see COVID Tracking Project dataset in the Microsoft Azure Open Datasets catalog.

Initialize filtering fields.

Inheritance
COVIDTrackingProject

Constructor

COVIDTrackingProject(cols: List[str] | None = None, enable_telemetry: bool = True)

Parameters

Name Description
cols

A list of columns names to load from the dataset. If None, all columns are loaded. For information on the available columns in this dataset, see COVID Tracking Project dataset.

default value: None
enable_telemetry

Whether to enable telemetry on this dataset.

default value: True
cols
Required

A list of column names you'd like to retrieve. None will get all columns.

enable_telemetry
Required

Indicates whether to send telemetry.

Remarks

The example below shows how to access the dataset.


   from azureml.opendatasets import COVIDTrackingProject

   covid_tracking = COVIDTrackingProject()
   covid_tracking_df = covid_tracking.to_pandas_dataframe()