--- Jasim Al-AJmi <[EMAIL PROTECTED]> wrote: > Dear Rhelp > > I am first time user of R and I have the following > questions: > > 1. How I can load my data (it is a matrix 10x1618) > with the titles of the variables in the first row?
You probably should give us some more infromation about the problem. How is the data stored: text file, spreadsheet, database? help("read.table") or ?read.table for a start. However with a csv file try something like cat, dog, bird 3, 4, 3 2, 7, 5 mydata <- read.table("junk.csv", header=TRUE, sep=",") should work. ____________________________________________________________________________________ > > the tools to get online. > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help@r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, > reproducible code. > ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.