nebraska_scraperR Documentation

Scraper class for general nebraska COVID data

Description

NE reports data mostly at the state level within several easy to scrape html tables.

Facility_Name

The facility name

Active

Residents currently infected at facility

Total Tests Administered

State-wide only

Total People Tested

State-wide only

Total Number of Confirmed Cases

State-wide only

Total Recovered Cases

State-wide only

Total Deaths

State-wide only

Details

The last run of the scraper was on 2021-01-11 and contained the extracted columns: Name, Residents.Tadmin, Residents.Confirmed, Residents.Recovered, Residents.Deaths, State, Date, id, source, jurisdiction. We are missing the following core variables for the analysis: Staff.Confirmed, Staff.Deaths, Staff.Recovered, Staff.Tested, Residents.Tested, Staff.Negative, Residents.Negative, Staff.Pending, Residents.Pending, Staff.Quarantine, Residents.Quarantine, Residents.Population, Residents.Active

Super class

R_GlobalEnv::generic_scraper -> nebraska_scraper

Methods

Public methods

Inherited methods

Method new()

Usage
nebraska_scraper$new(
  log,
  url = "https://corrections.nebraska.gov/ndcs-covid-19-data",
  id = "nebraska",
  type = "html",
  state = "NE",
  jurisdiction = "state",
  pull_func = nebraska_pull,
  restruct_func = nebraska_restruct,
  extract_func = nebraska_extract
)

Method clone()

The objects of this class are cloneable with this method.

Usage
nebraska_scraper$clone(deep = FALSE)
Arguments
deep

Whether to make a deep clone.