Skills Lab 5- Survey Data Flashcards
What is qualtrics
Online survey software
What are some considerations before sending out a survey
- Question wording
- IP addresses
- Coding of responses
- Informed consent
- Debrief
Once the survey is filled out by participants what should it be exported as
.csv
What R function is used to import data into R
readr::read_csv()
What functions can be used to get rid of unimportant variables
- slice()
- filter()
- select()
What function should be used for recoding numeric data
dplyr::mutate(., col_name = dplyr::recode(col_name, ‘1’ =5))
What function should be used for recoding character data
dplyr::mutate(., col_name = dplyr::recode(col_name, “stduent” = “student”))
What function should be used for changing character data to numeric
dplyr::mutate(col_name = as.numeric(col_name))
What function should be used for changing specific numeric values to NAs
dplyr::mutate(col_name = replace(col_name, col_name > 10, NA))