Skills Lab 5- Survey Data Flashcards

1
Q

What is qualtrics

A

Online survey software

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are some considerations before sending out a survey

A
  • Question wording
  • IP addresses
  • Coding of responses
  • Informed consent
  • Debrief
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Once the survey is filled out by participants what should it be exported as

A

.csv

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What R function is used to import data into R

A

readr::read_csv()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What functions can be used to get rid of unimportant variables

A
  • slice()
  • filter()
  • select()
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What function should be used for recoding numeric data

A

dplyr::mutate(., col_name = dplyr::recode(col_name, ‘1’ =5))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What function should be used for recoding character data

A

dplyr::mutate(., col_name = dplyr::recode(col_name, “stduent” = “student”))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What function should be used for changing character data to numeric

A

dplyr::mutate(col_name = as.numeric(col_name))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What function should be used for changing specific numeric values to NAs

A

dplyr::mutate(col_name = replace(col_name, col_name > 10, NA))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly