gss16: Data from the 2016 General Social Survey (GSS)

gss16R Documentation

Data from the 2016 General Social Survey (GSS)

Description

The GSS gathers data on contemporary American society in order to monitor and explain trends and constants in attitudes, behaviors, and attributes. Hundreds of trends have been tracked since 1972. In addition, since the GSS adopted questions from earlier surveys, trends can be followed for up to 70 years. The GSS contains a standard core of demographic, behavioral, and attitudinal questions, plus topics of special interest. Among the topics covered are civil liberties, crime and violence, inter-group tolerance, morality, national spending priorities, psychological well-being, social mobility, and stress and traumatic events.

Usage

gss16

Format

An object of class tbl_df (inherits from tbl, data.frame) with 2867 rows and 9 columns.

harass5

Response to the questions "Over the past five years, have you been harassed by your superiors or co-workers at your job, for example, have you experienced any bullying, physical or psychological abuse?" Possible answers are Yes, No and Does not apply.

emailmin

Number of minutes spent on email weekly; extra to the hours in emailhrs (e.g. emailmin = 30 for 2.5 hours on email).

emailhr

Number of hours spent on email weekly.

educ

Number of years in education.

polviews

Political views. Possible answers are Extremely liberal, Liberal, Slightly liberal, Moderate, Slightly conservative, Conservative, Extremely conservative.

advfront

Response to the question "Even if it brings no immediate benefits, scientific research that advances the frontiers of knowledge is necessary and should be supported by the federal government." Possible answers are Strongly agree, Agree, Dont know, Disagree and Strongly Disagree.

snapchat

Whether respondant uses Snapchat or not.

instagram

Whether respondant uses Instagram or not.

wrkstat

Work status.

Details

The data come from the NORC at the University of Chicago

The data has been modified to better serve the goals of introductory data science education. Only 9 of the original 935 variables have been selected for this dataset.

Source

https://gss.norc.org/Get-The-Data

Examples


library(ggplot2)
library(dplyr)

gss16 |>
  mutate(email = (emailhr * 60) + emailmin) |>
  ggplot(aes(x = email)) +
  geom_histogram(binwidth = 60) +
  labs(x = "Time spent on email (in minutes)")


rstudio-education/dsbox documentation built on Oct. 22, 2023, 12:20 a.m.