Skip to main content\(\require{cancel}
\newcommand{\lt}{<}
\newcommand{\gt}{>}
\newcommand{\amp}{&}
\definecolor{fillinmathshade}{gray}{0.9}
\newcommand{\fillinmath}[1]{\mathchoice{\colorbox{fillinmathshade}{$\displaystyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\textstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptstyle \phantom{\,#1\,}$}}{\colorbox{fillinmathshade}{$\scriptscriptstyle\phantom{\,#1\,}$}}}
\)
Section 1.11 Checklist: Before Moving On
Before continuing to the next chapter, can you confidently say that you have:
-
Opened RStudio and can identify the
Source,
Console,
Environment, and
Files/Plots panes?
-
Run basic arithmetic directly in R and interpreted the output?
-
Created objects using
<- and reused them later in your code?
-
Created
numeric,
character, and
logical vectors using
c()?
-
Indexed values from a vector using brackets
[]?
-
Combined multiple vectors into a
data frame?
-
Accessed and created data frame columns using
$?
-
Used at least one function (e.g.,
mean(),
summary(),
str()) and understood its structure?
-
Installed and loaded a package using
install.packages() and
library()?
-
Used
?function_name to look up help when unsure?