(i.e., working or looking for work)

get_labor_force_participation_rate(by = NULL)

Arguments

by
NULL or character string with any combination of g (Gender), r (Race), a (Age), e (Education). i.e. if you want to retrieve unemployment data by gender, race and education, you would set this parameter to "gre".

Value

tbl_df with data filtered by the selected criteria.

References

http://www.epi.org/data/

Examples

## Not run: ------------------------------------ # get_labor_force_participation_rate() # # get_labor_force_participation_rate("r") # # get_labor_force_participation_rate("grae") ## ---------------------------------------------