Intermediate
R
Q56 / 100
What is the difference between a "data.frame" and a "tibble" (from the tibble/dplyr package)?
Correct! Well done.
Incorrect.
The correct answer is B) Tibbles are a modern reimagining of data frames with stricter printing, no automatic partial matching of names, and consistent subsetting behavior
B
Correct Answer
Tibbles are a modern reimagining of data frames with stricter printing, no automatic partial matching of names, and consistent subsetting behavior
Explanation
Tibbles extend data frames with more predictable behaviors: they print more concisely, never use row names, and subsetting with "[" always returns a tibble.
Progress
56/100