Skip to content

Instantly share code, notes, and snippets.

@geofferyzh
Created April 16, 2012 18:13
Show Gist options
  • Save geofferyzh/2400448 to your computer and use it in GitHub Desktop.
Save geofferyzh/2400448 to your computer and use it in GitHub Desktop.
RinAction - R Importing Data - Text
#################################################
# Import data from delimited text file #
#################################################
help(read.table)
mydataframe <- read.table("C:/RinAction/data/data", header=TRUE, sep="\t",row.names="X")
mydataframe
str(mydataframe)
mydataframe[1,]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment