EcdcCOVIDCases Class
Represents the European Centre for Disease Prevention and Control (ECDC) Covid-19 Cases.
This datasets contains from the European Center for Disease Prevention and Control (ECDC). Each row/entry contains the number of new cases reported per day and per country/region. For more information about this dataset, including column descriptions, different ways to access the dataset, and examples, see European Centre for Disease Prevention and Control (ECDC) Covid-19 Cases in the Microsoft Azure Open Datasets catalog.
Initialize filtering fields.
- Inheritance
-
EcdcCOVIDCases
Constructor
EcdcCOVIDCases(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 European Centre for Disease Prevention and Control (ECDC) Covid-19 Cases. 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 EcdcCOVIDCases
ecdc_covid = EcdcCOVIDCases()
ecdc_covid_df = ecdc_covid.to_pandas_dataframe()