head() #Print the first 6 lines of a dataframe
tail() #Print the last 6 lines of a dataframe
seq(from=1, to=10, by=2) #Create a sequence from 1 to 10 with steps of 2
as.numeric(c("1","2","3","4")) #Turn string into numbers
sort(c(3,4,2,5,1)) #Sort numbers or letters numerically or alphabetically
max(c(111,333,444,55,6,777,999)) #Determine the maximum value of a vector
rnorm(10) #Sample 10 values from a r(andom) norm(al) distribution between 0 and 1