same-sex-marriage.csv

The data in same-sex-marriage.csv were collected from a poll taken by Pew Research Center in 2015. These particular data consist of 500 American’s responses. The attributes are:

Preview

# Import data
same_sex = readr::read_csv(file = "https://raw.githubusercontent.com/zief0002/benevolent-anteater/main/data/same-sex-marriage.csv")

# View data
same_sex
# A tibble: 500 × 8
   support friends education female   age attend ideology party      
     <dbl>   <dbl>     <dbl>  <dbl> <dbl>  <dbl>    <dbl> <chr>      
 1       1       2         0      0    30      2        3 Democrat   
 2       1       2         0      1    35      3        3 Independent
 3       0       1         0      0    78      4        2 Republican 
 4       0       1         0      0    60      4        2 Independent
 5       1       1         0      0    19      2        2 Republican 
 6       1       1         0      0    56      2        4 Independent
 7       0       3         0      0    99      2        2 Republican 
 8       1       3         0      0    50      2        2 Democrat   
 9       1       3         0      0    33      2        4 Independent
10       1       3         0      1    18      2        3 Independent
# ℹ 490 more rows