Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

r create a list

# Basic syntax:
list(11, 23, 42) # List of numerics
list(TRUE, FALSE, TRUE) # List of booleans/logicals
list("aa", "bb", "cc") # List of strings

# Note, in R, list and vectors (aka atomic vectors) are both 
#	one-dimensional objects, but lists can contain mixed type data 
#	whereas vectors can only contain one type of data
# Note, to make a vector, use: c(11, 23, 42)
Source by adv-r.had.co.nz #
 
PREVIOUS NEXT
Tagged: #create #list
ADD COMMENT
Topic
Name
5+6 =