jhu_us_data | R Documentation |
This function access and munges the cumulative time series of confirmed, and deaths from the US data in the repository for the 2019 Novel Coronavirus Visual Dashboard operated by the Johns Hopkins University Center for Systems Science and Engineering (JHU CSSE). Also, Supported by ESRI Living Atlas Team and the Johns Hopkins University Applied Physics Lab (JHU APL).
jhu_us_data()
Data are updated daily by JHU. Each call to this function redownloads the data
from github. No data cleansing is performed. Data are downloaded and then munged
into long-form tidy data.frame
.
A tidy data.frame
(actually, a tbl_df
) with columns:
UID: Universal Identifier
iso2: ISO 3166-1 alpha-2 code
iso3: ISO 3166-1 alpha-3 code
code3
fips: Federal Information Processing Standard Publication code
county: County
state: Province or state.
country: US
Lat: Latitude
Long: Longitude
Combined_Key: Comma-separated combination of columns Admin2
, ProvinceState
, and CountryRegion
date: Date
count: The cumulative count of cases for a given geographic area.
subset: either confirmed
or deaths
Uses https://raw.githubusercontent.com/CSSEGISandData/... as data source, then modifies column names and munges to long form table.
Although numbers are meant to be cumulative, there are instances where a day's count might be less than the prior day due to a reclassification of a case. These are not currently corrected in the source data
Other data-import:
acaps_government_measures_data()
,
acaps_secondary_impact_data()
,
apple_mobility_data()
,
beoutbreakprepared_data()
,
cci_us_vaccine_data()
,
cdc_aggregated_projections()
,
cdc_excess_deaths()
,
cdc_social_vulnerability_index()
,
coronadatascraper_data()
,
coronanet_government_response_data()
,
cov_glue_lineage_data()
,
cov_glue_newick_data()
,
cov_glue_snp_lineage()
,
covidtracker_data()
,
descartes_mobility_data()
,
ecdc_data()
,
econ_tracker_consumer_spending
,
econ_tracker_employment
,
econ_tracker_unemp_data
,
economist_excess_deaths()
,
financial_times_excess_deaths()
,
google_mobility_data()
,
government_policy_timeline()
,
jhu_data()
,
kff_icu_beds()
,
nytimes_county_data()
,
oecd_unemployment_data()
,
owid_data()
,
param_estimates_published()
,
test_and_trace_data()
,
us_county_geo_details()
,
us_county_health_rankings()
,
us_healthcare_capacity()
,
us_hospital_details()
,
us_state_distancing_policy()
,
usa_facts_data()
,
who_cases()
res = jhu_data() colnames(res) head(res) dplyr::glimpse(res) table(res$state)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.