Solved

Given That a Data Frame Called "Survey" Is Loaded and Has

Question 1

Multiple Choice

Given that a data frame called "survey" is loaded and has a column labeled "marital", what is wrong with this command?: table(marital)


A) The table command requires two variables, not just one.
B) Should be TABLE(survey$marital)
C) Should be table:survey$marital
D) Should be table(survey$marital)

Correct Answer:

verifed

Verified

Related Questions