worry.csv

In May 2021, Gallup conducted a poll to understand how American’s worries have evolved since 2019-20 (the years of the pandemic and the police killing of George Floyd). They surveyed a random sample of 1,010 U.S. adults about how much they worry about different things (e.g., the economy, racial relations). The worry.csv data include information on the results of this poll for the question related to worrying about hunger and homelessness


The attributes included in the data are:


Preview

# Load library
library(tidyverse)

# Import data
worry <- read_csv(file = "https://raw.githubusercontent.com/zief0002/epsy-5261/main/data/worry.csv")

# View data
worry
# A tibble: 1,010 × 2
      id worried
   <dbl> <chr>  
 1     1 Yes    
 2     2 Yes    
 3     3 Yes    
 4     4 Yes    
 5     5 Yes    
 6     6 Yes    
 7     7 Yes    
 8     8 Yes    
 9     9 Yes    
10    10 Yes    
# ℹ 1,000 more rows