Hi, I have 334 records, with two columns: Column (1): Resolution Column (2): Number of images with a specific resolution How can I make a scatter plot in R with this data? Is there a way to *import * the records, since it will be time consuming to enter 334 records? Thanks. [[alternative HTML version deleted]]
This is a really basic question that is answered in many R tutorials. Why dont you just google: "R import csv" And the first hit will tell you straight away what to do? Jannis P.S. I just guessed from your not very specific post that you may want to import from csv ... On 08/05/2011 12:45 PM, Abder-Rahman Ali wrote:> Hi, > > I have 334 records, with two columns: > > Column (1): Resolution Column (2): Number of images with a specific > resolution > > How can I make a scatter plot in R with this data? Is there a way to *import > * the records, since it will be time consuming to enter 334 records? > > Thanks. > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at 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. >
Hi> > Hi, > > I have 334 records, with two columns: > > Column (1): Resolution Column (2): Number of images with a specific > resolution > > How can I make a scatter plot in R with this data? Is there a way to*import If you have your data in two column data frame you can just plot(your.data.frame)> * the records, since it will be time consuming to enter 334 records?Where do you have those 334 records. If on paper I can not see any other way then manually enter the records into computer. If they are aready in some kind of file you can use read.table or its relatives see ?read.table But without being more specific you can get only vague answers. Regards Petr> > Thanks. > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guidehttp://www.R-project.org/posting-guide.html> and provide commented, minimal, self-contained, reproducible code.