layout |
---|
reference |
to be added...
- Assignment operator
<-
: Alt + - (PC); ⌘ + - (Mac) - Run line of code: Ctrl + Enter
- Pipe
%>%
: Ctrl + Shift + M
{:auto_ids} Arguments (functions) : ...
Assignment operator
: the assignment operator in R is <-
Comment
: Comments are preceded by #
symbol and are used to add information to your code.
Your comments could describe the objective of a particular piece of code.
Data frame : This is the basic type of object in R that stores tabular data. A tibble is a variant of this type of object.
Function : ...
Object : ...
Vector
: One of the basic types of object in R. The word vector refers to atomic vectors, which
are one-dimensional collections of values. They are created with the c()
function.
R projects : ...
Working directory : ...
{% include links.md %}