Skip to content
Practice
# Start coding here...
Current Type: Bar
Current X-axis: None
Current Y-axis: None
Current Color: None
current estimation
x <- c(1, 2, 3)
x
x[2] = 5
x
x <- matrix(c(1,1,8,12),nrow=2)
x
x[1,2] <- 4
x
numbers <- list(
x = c(1, 2, 3),
y = c('one', 'two', 'three'),
z = c('uno', 'dos', 'tres')
)
names(numbers)
sample_n(1, replace = TRUE)