Useful R functions/cmds

String split:
testvar <- "Hello Word"
chars <- strsplit(testvar, split = "")[[1]]

Paste:
print(paste("Hello", world))
Posted in: