Quiz Tutorial 4: Data Analysis with dplyr
This quiz complements Tutorial 4: Data Analysis with dplyr. It is only for your own self-assessment so you are free to submit as many times as you want.

Link to tutorial: https://www.kaggle.com/christyqu/tutorial-4-data-analysis-with-dplyr
Sign in to Google to save your progress. Learn more
Q1: What package does the function nhanes() belong to? *
1 point
Q2: Which code below is the correct one to print the last 10 rows of a dataframe called temp? *
1 point
Q3: Suppose a cell contains NA. What is the output after perform is.na() on it? *
1 point
Q4: Given the following code: select(dataset,A,B) What is the purpose of the code? *
1 point
Q5: Which code below is the correct one to rename column A to B in a dataframe called dataset? *
1 point
Q6: Fill in the blank to answer the first question in 'Try it yourself': filter(finaldemo, gender `__`) *
1 point
Q7: Fill in the blank to answer the second question in 'Try it yourself':filter(finaldemo, gender == 'Male' `__` age > 50) *
1 point
Q8: Fill in the blank to answer the third question in 'Try it yourself':filter(finaldemo, `__`) *
1 point
Q9: Fill in the blank to answer the question in 'Try it yourself': `___` (finalbpx,`__`) *
1 point
Q10: Fill in the blank to answer both parts of the 'Try it yourself' sections. ___(final_bpx,rescale_pulse = pulse/2,rescale_bpt_sec = bpt_sec/60) *
1 point
Q11: Fill in the blanks to answer the question in 'Try it yourself': by_edu <- groupby(`__`) summarize(___, averageage = `__`(age, na.rm = TRUE)) *
1 point
Q12: Fill in the blanks to answer the first question in 'Try it yourself': by_gender <-group_by(final_demo,gender)  filter(byedu,`__`) *
1 point
Q13: Fill in the blanks to answer the second question in 'Try it yourself':by_edu <-group_by(final_demo,edu) mutate(byedu, `__`) *
1 point
Q14: Fill in the blanks to answer the question in 'Try it yourself':___ %>% filter(___,systolic > 120) %>% mutate(___,bpt_min = bpt_sec/60) *
1 point
Submit
Clear form
This content is neither created nor endorsed by Google. Report Abuse - Terms of Service - Privacy Policy