Level 3
Level 5
11 words 0 ignored
Ready to learn
Ready to review
Ignore words
Check the boxes below to ignore/unignore words, then click save at the bottom. Ignored words will never appear in any learning session.
Ignore?
source(Filename)
run the commands in Filename
read.table(Filename)
reads file Filename (in table format) and creates a data frame from it
read.csv(Filename)
reads file Filename and creates a data frame from it (uses "," as separator and "." as decimal)
read.csv2(Filename)
reads file Filename and creates a data frame from it (uses ";" as separator and "," as decimal)
read.delim(Filename)
reads file Filename and creates a data frame from it (uses tab as separator and "." as decimal)
data.entry()
open spreadsheet-like editor for entering or editing data
scan(Filename)
read data into a vector or list from the console or file Filename(primitive function)
download.file(Url, Filename)
download a file from the internet address Url and save it to file Filename
write.table(Df, Filename)
writes table Df to file Filename
write.csv(Df, Filename)
writes table Df to file Filename (uses "," as separator and "." as decimal)
write.csv2(Df, Filename)
writes table Df to file Filename (uses ";" as separator and "," as decimal)