BingCOVID19Data Class
Represents the Bing COVID-19 dataset.
This datasets contains Bing COVID-19 data from multiple trusted, reliable sources, including the World Health Organization (WHO), Centers for Disease Control and Prevention (CDC), national and state public health departments, BNO News, 24/7 Wall St., and Wikipedia. For more information about this dataset, including column descriptions, different ways to access the dataset, and examples, see Bing COVID-19 Data in the Microsoft Azure Open Datasets catalog.
Initialize filtering fields.
- Inheritance
-
BingCOVID19Data
Constructor
BingCOVID19Data(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 Bing COVID-19 Data. 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 BingCOVID19Data
bing_covid = BingCOVID19Data()
bing_covid_df = bing_covid.to_pandas_dataframe()