README.md

Travis-CI Build
Status AppVeyor Build
Status

#> Warning: package 'knitr' was built under R version 3.4.4

About

An R data package contains Local Area Unemployment Statistics (LAUS) from U.S. Bureau of Labor Statistics (BLS). So far it contains the following four series:

Relevant packages

Installation

# install.package("remotes")
remotes::install_github("jjchern/laus@v0.0.4")

Usage

List all series

data(package = "laus")$results[,3]
#> [1] "county_month_nsa" "county_year"      "state_month_nsa" 
#> [4] "state_month_sa"   "state_year"

List all variable names and variable labels for state_year

names(laus::state_year)
#>  [1] "fips"      "state"     "year"      "pop"       "clf"      
#>  [6] "pc_clf"    "emp"       "pc_emp"    "unem"      "unem_rate"

# devtools::install_github("larmarange/labelled")
labelled::var_label(laus::state_year)
#> $fips
#> [1] "FIPS code"
#> 
#> $state
#> [1] "State or area"
#> 
#> $year
#> [1] "Year"
#> 
#> $pop
#> [1] "Civilian non-institutional population"
#> 
#> $clf
#> [1] "Total number of people in civilian labor force"
#> 
#> $pc_clf
#> [1] "Labor force participation rate (= labor force / population; Age: 16 years and over)"
#> 
#> $emp
#> [1] "Total number of people employed"
#> 
#> $pc_emp
#> [1] "Employment-population ratio (= employment / population; Age: 16 years and over)"
#> 
#> $unem
#> [1] "Total number of people unemployed"
#> 
#> $unem_rate
#> [1] "Unemployment rate (= unemployment / labor force; Age: 16 years and over)"

Show the data frame

library(tidyverse)
laus::state_year
#> # A tibble: 2,091 x 10
#>    fips  state   year     pop    clf pc_clf    emp pc_emp   unem unem_rate
#>    <chr> <chr>   <chr>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>     <dbl>
#>  1 01    Alabama 1976  2.63e6 1.50e6   57.0 1.40e6   53.1 1.02e5      6.80
#>  2 02    Alaska  1976  2.40e5 1.64e5   68.2 1.51e5   63.0 1.24e4      7.60
#>  3 04    Arizona 1976  1.65e6 9.87e5   59.8 8.91e5   54.0 9.61e4      9.70
#>  4 05    Arkans… 1976  1.55e6 8.92e5   57.7 8.29e5   53.6 6.22e4      7.00
#>  5 06    Califo… 1976  1.58e7 9.90e6   62.6 8.99e6   56.8 9.05e5      9.10
#>  6 08    Colora… 1976  1.86e6 1.24e6   66.8 1.17e6   62.9 7.24e4      5.80
#>  7 09    Connec… 1976  2.26e6 1.46e6   64.4 1.32e6   58.4 1.35e5      9.30
#>  8 10    Delawa… 1976  4.21e5 2.65e5   62.9 2.42e5   57.4 2.32e4      8.80
#>  9 11    Distri… 1976  5.17e5 3.35e5   64.8 3.05e5   59.0 3.02e4      9.00
#> 10 12    Florida 1976  6.51e6 3.60e6   55.3 3.27e6   50.3 3.30e5      9.20
#> # ... with 2,081 more rows
laus::county_year
#> # A tibble: 86,869 x 11
#>    laus_code  fips  state_fips county_fips county  state year  labor_force
#>    <chr>      <chr> <chr>      <chr>       <chr>   <chr> <chr>       <dbl>
#>  1 CN0100100… 01001 01         001         Autaug… AL    1990       16908.
#>  2 CN0100300… 01003 01         003         Baldwi… AL    1990       46824.
#>  3 CN0100500… 01005 01         005         Barbou… AL    1990       11490.
#>  4 CN0100700… 01007 01         007         Bibb C… AL    1990        7434.
#>  5 CN0100900… 01009 01         009         Blount… AL    1990       19168.
#>  6 CN0101100… 01011 01         011         Bulloc… AL    1990        4407.
#>  7 CN0101300… 01013 01         013         Butler… AL    1990        8838.
#>  8 CN0101500… 01015 01         015         Calhou… AL    1990       51519.
#>  9 CN0101700… 01017 01         017         Chambe… AL    1990       17705.
#> 10 CN0101900… 01019 01         019         Cherok… AL    1990        9644.
#> # ... with 86,859 more rows, and 3 more variables: employed <dbl>,
#> #   unemployed <dbl>, unemployment_rate <dbl>

Plot thematic maps with the unemployment data

state-map

county-map

Plot selected Series



jjchern/laus documentation built on May 19, 2019, 11:38 a.m.