The R package tidyr makes it easy to "tidy" your data.
Which function opens a connection to a file compressed with gzip?
The ________ is used for the main title in a graph.
The _____ argument denotes if the file has a header line.
What is the corresponding R function for the Probability Mass Function (PMF)?
Which level of plotting commands generate figures?
Axes, axis labels, and titles all appear in the ________ of the figure.
What is the output of the following R code?
> f <- function(a, b) {
+ print(a)
+ print(b)
+ }
> f(45)
What will be the output of the following R code?
y <- 3
switch(y, 2+2, mean(1:10), rnorm(5))