Re: [R] Data Set

2007-07-23 Thread Gavin Simpson
On Sun, 2007-07-22 at 21:51 -0700, Stephen Tucker wrote: It turns out that - and (space) are not valid variable names. They are valid names, the problem is that they aren't very convenient to use, as the OP discovered, because they need to be quoted. Note that if using something like

Re: [R] Data Set

2007-07-23 Thread Stephen Tucker
My bad... corrections (semantic and otherwise) always appreciated. I'm still learning too. I also forgot the alternative of using make.names() instead of manually assigning 'more convenient' names. input - Mydata,S-sharif,A site 1,45,34 2,66,45 3,79,56 dat -

[R] Data Set

2007-07-22 Thread amna khan
Hi Sir I have made a data set having 23 stations of rainfall. when I use the attach function to approach indevidual stations then following error occurr. *attach(data)* *S.Sharif#S.Sharif is the station name which has 50 data values* *Error: object S.Sharif not found* Now how to solve this

Re: [R] Data Set

2007-07-22 Thread Gavin Simpson
On Sun, 2007-07-22 at 03:25 -0700, amna khan wrote: Hi Sir I have made a data set having 23 stations of rainfall. when I use the attach function to approach indevidual stations then following error occurr. *attach(data)* *S.Sharif#S.Sharif is the station name which has 50 data values*

Re: [R] Data Set

2007-07-22 Thread amna khan
Sir the station name S.Sharif exists in the data but still the error is ocurring of being not found. Please help in this regard. On 7/22/07, Gavin Simpson [EMAIL PROTECTED] wrote: On Sun, 2007-07-22 at 03:25 -0700, amna khan wrote: Hi Sir I have made a data set having 23 stations of

Re: [R] Data Set

2007-07-22 Thread Stephen Tucker
Could you post the output from str(data) ? Perhaps that will give us a clue. --- amna khan [EMAIL PROTECTED] wrote: Sir the station name S.Sharif exists in the data but still the error is ocurring of being not found. Please help in this regard. On 7/22/07, Gavin Simpson [EMAIL

Re: [R] Data Set

2007-07-22 Thread Gavin Simpson
On Sun, 2007-07-22 at 12:09 -0700, amna khan wrote: Sir the station name S.Sharif exists in the data but still the error is ocurring of being not found. Please help in this regard. If you take the time to do what I asked and actually post the results of typing the following into your R

Re: [R] Data Set

2007-07-22 Thread Stephen Tucker
It turns out that - and (space) are not valid variable names. You can get around that in two ways: == names(Monsoon)[2] - S.Sharif names(Monsoon)[8] - Islamabad.AP attach(Monsoon) S.Sharif Islamabad.AP detach(Monsoon) and do the same for other variable names that contain - or

[R] R data set size limit

2007-06-26 Thread Roy, Abhijit
Hi - What is the limit (rows and columns) on the size of a data set that R will process? Thanks. Abhijit Dr. Abhijit Roy Citi - Global Consumer Group - Business Analytics and Methods O: 91 80 4041 6398 Fax: 91 80 2211 0827 [[alternative HTML version deleted]]

Re: [R] R data set size limit

2007-06-26 Thread Prof Brian Ripley
On Tue, 26 Jun 2007, Roy, Abhijit wrote: Hi - What is the limit (rows and columns) on the size of a data set that R will process? 2^31-1 for each (in a data frame, that number of elements for a matrix). See ?Memory-limits Most likely your computer imposes lower limits. Thanks. Abhijit

[R] Re : R data set size limit

2007-06-26 Thread justin bem
] R data set size limit Hi - What is the limit (rows and columns) on the size of a data set that R will process? Thanks. Abhijit Dr. Abhijit Roy Citi - Global Consumer Group - Business Analytics and Methods O: 91 80 4041 6398 Fax: 91 80 2211 0827 [[alternative HTML version deleted

Re: [R] data set size question

2006-06-14 Thread Greg Snow
. Statistical Data Center Intermountain Healthcare [EMAIL PROTECTED] (801) 408-8111 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carl Hauser Sent: Tuesday, June 13, 2006 9:22 PM To: r-help@stat.math.ethz.ch Subject: [R] data set size question Hi there, I'm

[R] data set size question

2006-06-13 Thread Carl Hauser
Hi there, I'm very new to R and am only in the beginning stages of investigating it for possible use. A document by John Maindonald at the r-project website entitled Using R for Data Analysis and Graphics: Introduction, Code and Commentary contains the following paragraph, The R system may

Re: [R] data set size question

2006-06-13 Thread Gabor Grothendieck
The restriction is that objects are kept in memory so if you have sufficient memory and your OS lets you access it then you should be ok. S-Plus is a commercial package similar to R but stores its objects in files and can handle larger data sets if you run into trouble. Given that R is free and

[R] Data set for loglinear analysis

2005-04-04 Thread Warfield Jr., Joseph D.
Dear users I need to perform a loglinear analysis of a real data set for a course project. I need a real data set with contingency tables in at least 3 dimensional, each with more than 2 levels. Thanks Joe Warfield [[alternative HTML version deleted]]

Re: [R] Data set for loglinear analysis

2005-04-04 Thread Kjetil Brinchmann Halvorsen
Warfield Jr., Joseph D. wrote: Dear users I need to perform a loglinear analysis of a real data set for a course project. I need a real data set with contingency tables in at least 3 dimensional, each with more than 2 levels. Thanks Joe Warfield [[alternative HTML version deleted]]

Re: [R] Data Set

2005-01-11 Thread Anne
PROTECTED] To: r-help@stat.math.ethz.ch Sent: Tuesday, January 11, 2005 12:08 AM Subject: [R] Data Set Hi everybody, I'm studying descriptive statistics using R and I have to make an important work about that. I need some help to choose a good data set to apply those statistics. Does anybody

[R] Data Set

2005-01-10 Thread Talita Leite
Hi everybody, I'm studying descriptive statistics using R and I have to make an important work about that. I need some help to choose a good data set to apply those statistics. Does anybody know a good data set I could work with? Thanx, Talita Perciano Costa Leite Graduanda em Ciência da

Re: [R] Data Set

2005-01-10 Thread Spencer Graves
Much of the documentation including manuals, help files and other contributed descriptions include same data sets. What kinds of applications and techniques most interest you? That with the posting guide (http://www.R-project.org/posting-guide.html, especially the search at

[R] Data Set

2005-01-10 Thread Talita Leite
Hi, I'll try to be more specific asking my question. I want to apply some functions like mean(), median(), var(), sd(), mad(), quantile(), kurtosis(), skewness() and make some graphics like boxplot, barplot, histogram, stars... In order to do that I need a simple data set, simple but

RE: [R] Data Set

2005-01-10 Thread Liaw, Andy
There are a few packages on CRAN that are collections of data sets, some from intro textbooks. You might find some of them suitable. There are also datasets that come with R. Type data() at the R prompt to see a list. Andy From: Talita Leite Hi, I'll try to be more specific asking my