Baselight

Massachusetts Arbovirus Survalliance Data 2014-19

Survalliance Data for EEE and WNV in Massachusetts from 2014-2019

@kaggle.bullardla_massachusetts_arbovirus_survalliance_data_201419

About this Dataset

Massachusetts Arbovirus Survalliance Data 2014-19

Context

In the United States, an average of seven cases of Eastern Equine Encephalitis (EEE) are reported to the CDC annually. In 2019, however, the CDC confirmed 38 cases of EEE and 15 deaths. It has a fatality rate estimated to be around 33%, with many survivors experiencing permanent neurological damage, and there is currently no effective treatment. Other arboviruses, such as West Nile Virus (WNV), are also prevalent and deadly.

Massachusetts was one of the most impacted states of the 2019 outbreak, with 12 reported cases and six deaths. Many towns in Massachusetts cancelled outdoor activities and imposed curfews during hours when mosquitos were most active with the hope of mitigating potential exposures, but such guidelines were reactive, not proactive. With fears of new, emerging arboviruses being more virulent, and in light of the recent outbreak of SARS-CoV-2, society should be better prepared to predict potential outbreaks and respond to them effectively before they happen.

Content

This dataset contains information from mass.gov detailing the results of arbovirus surveillance in Massachusetts from 2014 to 2019.

Inspiration

  1. Predicting future outbreaks.
  2. Identifying the species of mosquitos implicated in certain arboviruses.

Tables

Animal Cases

@kaggle.bullardla_massachusetts_arbovirus_survalliance_data_201419.animal_cases
  • 3.59 KB
  • 16 rows
  • 4 columns
Loading...

CREATE TABLE animal_cases (
  "town_or_city" VARCHAR,
  "animal_species" VARCHAR,
  "onset_year" BIGINT,
  "virus_result" VARCHAR
);

Human Arbovirus Cases

@kaggle.bullardla_massachusetts_arbovirus_survalliance_data_201419.human_arbovirus_cases
  • 4.25 KB
  • 12 rows
  • 5 columns
Loading...

CREATE TABLE human_arbovirus_cases (
  "county" VARCHAR,
  "age_range" VARCHAR,
  "onset_date" TIMESTAMP,
  "virus_result" VARCHAR,
  "clinical_presentation" VARCHAR
);

Mosquito Totals

@kaggle.bullardla_massachusetts_arbovirus_survalliance_data_201419.mosquito_totals
  • 11.56 KB
  • 1834 rows
  • 5 columns
Loading...

CREATE TABLE mosquito_totals (
  "county" VARCHAR,
  "town" VARCHAR,
  "collection_date" VARCHAR,
  "species" VARCHAR,
  "virus" VARCHAR
);

Total Tests Per Year

@kaggle.bullardla_massachusetts_arbovirus_survalliance_data_201419.total_tests_per_year
  • 2.95 KB
  • 6 rows
  • 3 columns
Loading...

CREATE TABLE total_tests_per_year (
  "year" BIGINT,
  "mosquitos_tested" BIGINT,
  "animals_tested" BIGINT
);