Re: [R] s language version and complie languages

2006-09-24 Thread Prof Brian Ripley
On Sun, 24 Sep 2006, Taka Matzmoto wrote: Hi R users Which version of S does the current R version use? Venables and Ripley's book (2000) says R is version 3 of S language. Is there any change since 2000 ? Yes, the 'methods' package implements much of the changes in S version 4, and there

Re: [R] Fitdistr() versus nls()

2006-09-24 Thread Prof Brian Ripley
On Sat, 23 Sep 2006, Luca Telloli wrote: Hello R-Users, I'm new to R so I apologize in advance for any big mistake I might be doing. I'm trying to fit a set of samples with some probabilistic curve, and I have an important question to ask; in particular I have some data, from which I

Re: [R] problem with summary of data

2006-09-24 Thread Nel N.
Looks like I've missed out the 'as.is' argument, I put it in and everything was alright! Thank you so much! In addition,there're a few .rda files that I've got that I would like to view as file perse. How do I open it because when I tried opening it with Notepad, it came out as unrecognised

Re: [R] Power analysis for repeated measures ANCOVA

2006-09-24 Thread Spencer Graves
I haven't seen a reply to this post, and you may have moved beyond this question by now, but I will nevertheless offer one brief question: Have you looked at 'simulate.lme'? This might simplify coding your power analysis. Hope this helps. Spencer Graves Steve Su wrote:

[R] plotCI

2006-09-24 Thread Bernardo Rangel tura
Hi R masters! I need a Help with plot confidence intervals for one equation. I use library gplots and plotCI command in this script: require(gplots) ano -1980:2002 rf-exp(91.37162-0.04720281*ano) ciw.f-sqrt(1.766073e-08) plotCI(ano,rf,uiw=ciw.f) But in the graph not shown the errors

Re: [R] plotCI

2006-09-24 Thread David Barron
As the warnings (not errors) suggest, the error bars are just too small to plot. On 24/09/06, Bernardo Rangel tura [EMAIL PROTECTED] wrote: Hi R masters! I need a Help with plot confidence intervals for one equation. I use library gplots and plotCI command in this script: require(gplots)

Re: [R] Data frames questions

2006-09-24 Thread BXC (Bendix Carstensen)
-Original Message- From: X.H Chen [mailto:[EMAIL PROTECTED] Sent: Sunday, September 24, 2006 12:16 AM To: [EMAIL PROTECTED]; r-help@stat.math.ethz.ch Subject: Re: [R] Data frames questions 1) Is there a way to build an empty data frame, containing nothing but the data frame

Re: [R] plotCI

2006-09-24 Thread Jim Lemon
Bernardo Rangel tura wrote: Hi R masters! I need a Help with plot confidence intervals for one equation. I use library gplots and plotCI command in this script: require(gplots) ano -1980:2002 rf-exp(91.37162-0.04720281*ano) ciw.f-sqrt(1.766073e-08) plotCI(ano,rf,uiw=ciw.f)

[R] Complex survey analysis help

2006-09-24 Thread justin bem
Hi dear all, I have a complex survey data to analyse. I have a stratified survey with three stages level. The first stage is a PPS, but all other are SRSWOR. The solution propose in survey package is to considere PPS as SRS with repetion. I have try this

[R] R contractor Needed - Atlanta GA

2006-09-24 Thread zubin
Hello, need an R contractor to help on a project, project requires a strong econometrics background, especially package MSBVAR, LME, and the ASSIST packages. We need to estimate some models and produce a user interface to enable simulation of these models. Please email me if your interested

Re: [R] Statitics Textbook - any recommendation?

2006-09-24 Thread Ritwik Sinha
How about this book by Julian Faraway. http://www.stat.lsa.umich.edu/~faraway/book/ It covers only regression and anova, but I really like the book. It gives a good overview of the important topics in linear regression and anova. Also it is on the web and hence free. Ritwik On 9/22/06,

Re: [R] Data frames questions

2006-09-24 Thread Douglas Bates
On 9/23/06, X.H Chen [EMAIL PROTECTED] wrote: 1) Is there a way to build an empty data frame, containing nothing but the data frame variable names? Yes, you can do it one way as followings: df1-as.data.frame(matrix(nrow=2,ncol=2),row.names=c(R1,R2)) 2) Is there a way to reorder the

Re: [R] how to delete some columns from a matrix based on some other indicator variable

2006-09-24 Thread Ritwik Sinha
Hi, The problem might be mode of the vector r. Try this D[,as.character(r)==1] But I am not sure that is the problem. Sometimes factors tend to complicate things. Look for factor in the R FAQ page. Ritwik. On 9/20/06, David Barron [EMAIL PROTECTED] wrote: You don't need a loop. You could

[R] R gui console problem

2006-09-24 Thread T Mu
Hi all, My R GUI got a weird perk. It loads only first page of scripts, about 28 rows. I didn't change any configuration or installed anything special. I use R 2.3.1, windows. Help please. Thank you. [[alternative HTML version deleted]] __

[R] Print and supressing printing in function

2006-09-24 Thread Jonathan Greenberg
Another newbie question for you all: In a function, say I have: countme - function() { for(i in 1:10) { i } } How do I get R to print i as it runs (e.g. By calling countme) -- right now it seems to supress most output. On a related note, my program uses remove.vars, which always prints its

Re: [R] Print and supressing printing in function

2006-09-24 Thread Marc Schwartz
On Sun, 2006-09-24 at 11:31 -0700, Jonathan Greenberg wrote: Another newbie question for you all: In a function, say I have: countme - function() { for(i in 1:10) { i } } How do I get R to print i as it runs (e.g. By calling countme) -- right now it seems to supress most output. On

Re: [R] Print and supressing printing in function

2006-09-24 Thread Sundar Dorai-Raj
Marc Schwartz said the following on 9/24/2006 1:56 PM: On Sun, 2006-09-24 at 11:31 -0700, Jonathan Greenberg wrote: Another newbie question for you all: In a function, say I have: countme - function() { for(i in 1:10) { i } } How do I get R to print i as it runs (e.g. By calling

Re: [R] Print and supressing printing in function

2006-09-24 Thread Marc Schwartz
On Sun, 2006-09-24 at 14:14 -0500, Sundar Dorai-Raj wrote: Marc Schwartz said the following on 9/24/2006 1:56 PM: On Sun, 2006-09-24 at 11:31 -0700, Jonathan Greenberg wrote: Another newbie question for you all: In a function, say I have: countme - function() { for(i in 1:10) {

Re: [R] Complex survey analysis help

2006-09-24 Thread Thomas Lumley
On Sun, 24 Sep 2006, justin bem wrote: Hi dear all, I have a complex survey data to analyse. I have a stratified survey with three stages level. The first stage is a PPS, but all other are SRSWOR. The solution propose in survey package is to considere PPS as SRS with repetion. No, the

Re: [R] R gui console problem

2006-09-24 Thread Duncan Murdoch
On 9/24/2006 1:41 PM, T Mu wrote: Hi all, My R GUI got a weird perk. It loads only first page of scripts, about 28 rows. I didn't change any configuration or installed anything special. I use R 2.3.1, windows. Help please. There's no way someone could help you based on the description you