0. The Basics of R: Practical 0
Exploring the gapminder data
Execute the following commands in R:
library(gapminder)
G <- data.frame(gapminder)
If everything went well, an object G should have appeared in the upper-right pane of RStudio (in the Environment Tab).
How many cases (=observations) and variables does G contain?
The data frame G contains observations and variables.
Unlock full access