[1] 3
A storage place for information; stored in the “Environment”
‘Attributes’ describes the structure or information of the object
‘does stuff’; creates or manipulates objects
‘Arguments’ are the types of things a function is asking for; the inputs
object = function(argument = input1, argument = input2)
object = function(input1, input2)
Values
Objects
[1] 4 5 6
The value 4 is in element/index/position 1 of the vector
The value 6 is in element/index/position 3 of the vector
:::
E.g., a row for each observation and a column for each variable (can be different types).