R Terminology (Structure and Function of R) Flashcards
object
a thing – like a number, a dataset, a summary statistic like a mean or standard deviation, or a statistical test. Objects come in many different shapes and sizes in R. There are simple objects like which represent single numbers, vectors (like our tattoos object above) which represent several numbers, more complex objects like dataframes which represent tables of data, and even more complex objects like hypothesis tests or regression which contain all sorts of statistical information.
comment
type “#”
then freely type within your script any information that will be helpful to you in navigating that script when you need to review it later.
VERY HELPFUL
function
a procedure that typically takes one or more objects as arguments (aka, inputs), does something with those objects, then returns a new object
object
scalar
a single value like a number or a name
Examples of numeric scalars
a <- 100
b <- 3 / 100
c <- (a + b) / b
can be either character or numeric
object
vector
a combination of several scalars stored as a single object. For example, the numbers from one to ten could be a vector of length 10, and the characters in the English alphabet could be a vector of length 26. Like scalars, vectors can be either numeric or character (but not both!).
types of objects
numeric objects use numbers only:
a <- 100
b <- 3 / 100
c <- (a + b) / b
character objects use text only:
d <- “ship”
e <- “cannon”
f <- “Do any modern armies still use cannons?”
script
project
console
environment
object
matrix
object
data frame