[R] correction.....

2024-07-27 Thread akshay kulkarni
dear members, I want to mention that I am using the neural network model in caret. I forgot to mention it in the previous mail to you people THanking you, Yours sincerely, AKSHAY M KULKARNI [[alternative HTML version deleted]]

[R] Correction: Regression Modeling Strategies 4-Day Short Course March 2015

2015-01-21 Thread Frank Harrell
*RMS Short Course 2015* Frank E. Harrell, Jr., Ph.D., Professor and Chair Department of Biostatistics, Vanderbilt University School of Medicine *March 3, 4, 5 6, 2015* With Optional R Workshop March 2 9:00am - 4:00pm Student Life Center Board of Trust Room Vanderbilt University Nashville

Re: [R] correction needed in codes

2012-12-23 Thread Rui Barradas
Hello, Can't you simply lapply(b, lines, lwd = 2) ? Hope this helps, Rui Barradas Em 23-12-2012 02:19, eliza botto escreveu: Dear useRs,while trying to plot the yearly curves of 1000 stations and overlapping each set of curves with mean curve and then saving it automatically in a pdf file,

Re: [R] correction needed in codes

2012-12-23 Thread Rui Barradas
), function(i) (matplot(res[[i]][,-1], type=l,col=grey))) lapply(b, lines, lwd = 2,col=black) } dev.off() thanks in advance eliza Date: Sun, 23 Dec 2012 14:14:08 + From: ruipbarra...@sapo.pt To: eliza_bo...@hotmail.com CC: r-help@r-project.org Subject: Re: [R] correction needed in codes

Re: [R] correction needed in codes

2012-12-23 Thread Rui Barradas
Merry christmas. Rui Barradas Em 23-12-2012 16:41, eliza botto escreveu: Dear Rui,thankyou very much. it was spot on. :D eliza Date: Sun, 23 Dec 2012 16:36:46 + From: ruipbarra...@sapo.pt To: eliza_bo...@hotmail.com CC: r-help@r-project.org Subject: Re: [R] correction needed in codes

Re: [R] correction needed in codes

2012-12-23 Thread eliza botto
,col=black) } dev.off() thanks in advance eliza Date: Sun, 23 Dec 2012 14:14:08 + From: ruipbarra...@sapo.pt To: eliza_bo...@hotmail.com CC: r-help@r-project.org Subject: Re: [R] correction needed in codes Hello, Can't you simply lapply(b, lines, lwd = 2) ? Hope this helps, Rui

Re: [R] correction needed in codes

2012-12-23 Thread eliza botto
Dear Rui,thankyou very much. it was spot on. :D eliza Date: Sun, 23 Dec 2012 16:36:46 + From: ruipbarra...@sapo.pt To: eliza_bo...@hotmail.com CC: r-help@r-project.org Subject: Re: [R] correction needed in codes Hello, How about fun - function(i){ matplot(res[[i

Re: [R] correction needed in codes

2012-12-23 Thread eliza botto
same to u. :D eliza Date: Sun, 23 Dec 2012 16:42:03 + From: ruipbarra...@sapo.pt To: eliza_bo...@hotmail.com CC: r-help@r-project.org Subject: Re: [R] correction needed in codes Merry christmas. Rui Barradas Em 23-12-2012 16:41, eliza botto escreveu: Dear Rui,thankyou very

[R] correction needed in codes

2012-12-22 Thread eliza botto
Dear useRs,while trying to plot the yearly curves of 1000 stations and overlapping each set of curves with mean curve and then saving it automatically in a pdf file, i tried the following commands Path = C:\\R\\003.pdfpdf(file=Path) for (i in seq(1:1000) a-lapply(seq_along(tcp),

[R] Correction in error

2011-11-07 Thread Gyanendra Pokharel
Hello R community, following is my code and it shows error, can some one fix this error and explain why this occurs? gibbs -function(m,n, theta = 0, lambda = 1){ alpha - 1.5 beta - 1.5 gamma - 1.5 x- array(0,c(m+1, 3)) x[1,1] - theta x[1,2] - lambda x[1,3]- n for(t

Re: [R] Correction in error

2011-11-07 Thread Sarah Goslee
Hi, I see two problems right off: On Mon, Nov 7, 2011 at 3:10 PM, Gyanendra Pokharel gyanendra.pokha...@gmail.com wrote: Hello R community, following is my code and it shows error, can some one fix this error and explain why this occurs? gibbs -function(m,n, theta = 0, lambda = 1){    alpha

Re: [R] Correction in error

2011-11-07 Thread R. Michael Weylandt
The first argument to rbinom() is how many random samples you want to draw, not whatever you seem to think it is. It's not matching the size of what you mean to assign it to: in particular note that x[t-1, 3] is zero for t=3 which is where you initialize it. (I.e., you are also probably getting

Re: [R] Correction in error

2011-11-07 Thread William Dunlap
: Monday, November 07, 2011 12:26 PM To: Gyanendra Pokharel Cc: R-help@r-project.org Subject: Re: [R] Correction in error Hi, I see two problems right off: On Mon, Nov 7, 2011 at 3:10 PM, Gyanendra Pokharel gyanendra.pokha...@gmail.com wrote: Hello R community, following is my code

Re: [R] Correction in error

2011-11-07 Thread Dennis Murphy
Hi: In your function call, x[1, 1] = theta = 0. In the first line of the loop, your rbinom() call works out to be x[2, 1] - rbinom(x[1, 3], 1, x[1, 1]) = rbinom(10, 1, 0) That likely accounts for the error message: Error in x[t, 1] - rbinom(x[t - 1, 3], 1, x[t - 1, 1]) : replacement

[R] Correction on last post

2010-11-14 Thread Chris Carleton
Hi again List, By 'discrete' variable in the last email, I meant 'categorical'. Also, the data I sent is one of the samples of the main data frame, which I mentioned in a round-about way, but I thought that it might be confusing after reading the email again. Thanks again for any help, Chris

[R] CORRECTION - Storing results in a loop

2010-02-15 Thread Madhavi Bhave
Dear R Helpers (There is a small correction in my earlier mail. In the 'instrument.csv' file, I had mentioned only three columns. Actually there are 7 columns. I regret the error. Rest contents remains the same. Thanks) I have an 'instrument.csv' file with 7 instrument names and 5 rates each

Re: [R] CORRECTION - Storing results in a loop

2010-02-15 Thread Benilton Carvalho
maybe you just want Y = ONS^2 ? b On Mon, Feb 15, 2010 at 12:22 PM, Madhavi Bhave madhavi_bh...@yahoo.com wrote: Dear R Helpers (There is a small correction in my earlier mail. In the 'instrument.csv' file, I had mentioned only three columns. Actually there are 7 columns. I regret the

Re: [R] CORRECTION - Storing results in a loop

2010-02-15 Thread Benilton Carvalho
sorry, meant to type: B = ONS^2 cheers, benilton On Mon, Feb 15, 2010 at 12:28 PM, Benilton Carvalho beniltoncarva...@gmail.com wrote: maybe you just want Y = ONS^2 ? b On Mon, Feb 15, 2010 at 12:22 PM, Madhavi Bhave madhavi_bh...@yahoo.com wrote: Dear R Helpers (There is a small

Re: [R] CORRECTION - Storing results in a loop

2010-02-15 Thread Madhavi Bhave
beniltoncarva...@gmail.com Subject: Re: [R] CORRECTION - Storing results in a loop To: Madhavi Bhave madhavi_bh...@yahoo.com Cc: r-help@r-project.org Date: Monday, 15 February, 2010, 4:29 AM sorry, meant to type: B = ONS^2 cheers, benilton On Mon, Feb 15, 2010 at 12:28 PM, Benilton Carvalho

Re: [R] CORRECTION - Storing results in a loop

2010-02-15 Thread jim holtman
Carvalho beniltoncarva...@gmail.com wrote: From: Benilton Carvalho beniltoncarva...@gmail.com Subject: Re: [R] CORRECTION - Storing results in a loop To: Madhavi Bhave madhavi_bh...@yahoo.com Cc: r-help@r-project.org Date: Monday, 15 February, 2010, 4:29 AM sorry, meant to type: B = ONS

Re: [R] CORRECTION - Storing results in a loop

2010-02-15 Thread Benilton Carvalho
Carvalho beniltoncarva...@gmail.com wrote: From: Benilton Carvalho beniltoncarva...@gmail.com Subject: Re: [R] CORRECTION - Storing results in a loop To: Madhavi Bhave madhavi_bh...@yahoo.com Cc: r-help@r-project.org Date: Monday, 15 February, 2010, 4:29 AM sorry, meant to type: B = ONS^2

Re: [R] CORRECTION - Generation of Random numbers in a loop

2009-12-17 Thread Gray Calhoun
Hi Maithili, This is probably easiest if you think in terms of functions. Just apply 'runif' along the right vectors ## gives you one data frame with the min and max limits - read.table(textConnection(name min max A111.05 1.30 A121.30 1.60 A131.60 1.99), header = TRUE) d -

[R] CORRECTION - Generation of Random numbers in a loop

2009-12-16 Thread Maithili Shiva
Dear R helpers, please ignore my earlier mail. Here is the corrected mail. Please forgive me for the lapses on my part. Extremely sorry.   Here is the corrected mail.     Dear R helpers   I am having following data   Name   Numbers A11  12 A12  17  A13 

[R] (correction) snowfall+Rmpi: sfExport error

2009-09-22 Thread Mario Valle
Sorry for wasting your time with an incorrect diagnosis in my previous mail! I'm running my script using mpirun -mp 4 and using snowfall+Rmpi on Linux 64bits. I receive the following error, that terminates the run. Any idea? I'm able to reproduce the problem with a minimal script (below). If n

Re: [R] Correction.

2009-07-21 Thread Ted Harding
On 21-Jul-09 01:24:04, Rolf Turner wrote: It has been pointed out to me that I erred in an earlier post. ``Go stick your head in a pig.'' is not the motto of the (entire) Sirius Cybernetics Corporation. It is the motto if the Sirius Cybernetics Corporation ***Complaints Division***. My

[R] Correction.

2009-07-20 Thread Rolf Turner
It has been pointed out to me that I erred in an earlier post. ``Go stick your head in a pig.'' is not the motto of the (entire) Sirius Cybernetics Corporation. It is the motto if the Sirius Cybernetics Corporation ***Complaints Division***. My apologies for the misinformation.

Re: [R] [correction] Animal Morphology: Deriving Classification Equation with

2009-05-24 Thread Ted Harding
[Apologies -- I made an error (see at [***] near the end)] On 24-May-09 19:07:46, Ted Harding wrote: [Your data and output listings removed. For comments, see at end] On 24-May-09 13:01:26, cdm wrote: Fellow R Users: I'm not extremely familiar with lda or R programming, but a recent

Re: [R] [correction] Animal Morphology: Deriving Classification Equation with

2009-05-24 Thread cdm
Ted, I just ran everything using the log of all variables. Much better analysis and it doesn't violate the assumptions. I'm still in the dark concerning the classification equation- other than the fact that it now will contain log functions. Thank you for you help, Chase Ted.Harding-2

Re: [R] CORRECTION: Re: Multicollinearity with brglm?

2009-04-02 Thread woodbomb
Ioannis, Here's an illustrative example. Note that: glm also objects to X4; X1,..,X4 are defined as factors. I've looked (albeit in a crude way) at various examples using the perturb package and it seems to confirm that X4 is the source of multicollinearity. As I say, I think the constant

Re: [R] CORRECTION: Re: Multicollinearity with brglm?

2009-04-02 Thread Ioannis Kosmidis
Thanks for your mail. I guess that the constant row sum on X would create problems in a simulation framework because you might end up with linearly dependent columns or even with columns of zeros (which I believe do not make much sense). First of all, I think there is a problem with your

[R] CORRECTION: Re: Multicollinearity with brglm?

2009-04-01 Thread woodbomb
I'm running brglm to do binomial loguistic regression. The perhaps multicollinearity-related feature(s) are: (1) the k IVs are all binary categorical, coded as 0 or 1; (2) each row of the IVs contains exactly C ( k) 1's; (I think this is the source of the problem) (3) there are n * k unique

Re: [R] CORRECTION: Re: Multicollinearity with brglm?

2009-04-01 Thread Ioannis Kosmidis
Could you please include some code that demonstrates your problem? Best wishes, Ioannis On Wednesday 01 April 2009 15:26:33 woodbomb wrote: I'm running brglm to do binomial loguistic regression. The perhaps multicollinearity-related feature(s) are: (1) the k IVs are all binary categorical,

[R] correction for density plot question

2009-02-01 Thread gregor rolshausen
sorry! I ment to plot the probability vs. the values of course. not the probability vs. the density... cheers,gregor __ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide

Re: [R] correction for density plot question

2009-02-01 Thread Uwe Ligges
gregor rolshausen wrote: sorry! I ment to plot the probability vs. the values of course. not the probability vs. the density... You have plotted the histogram, i.e. the empirical version of the density. If you want to plot a (empirical?) probability function, you might want to look at

[R] Correction: RStat version 2.7.*1* now available

2008-07-18 Thread Gregory Warnes
Hello Everyone, I mis-typed the version number in the annoucement that just went out. Here is the corrected message: On Fri, Jul 18, 2008 at 6:50 AM, Gregory R. Warnes [EMAIL PROTECTED] wrote: Random Technologies LLC is pleased to announce immediate availability of RStat version 2.7.1.

[R] correction to small typo: How do I paste double quotes arround a character string?

2008-07-03 Thread Philip James Smith
Hi all: I made a few typos. Here are the corrections... unix.cmd-paste( cut -d, -f , col.pos , , fn , sep = '' )# comma (,) inserted Sorry... Best regards, Phil Philip James Smith wrote: He Ted: My command will look like: gnu.dat - read.csv( pipe( cut -d,

[R] Correction: Short Course: Statistical Learning and Data Mining

2008-02-08 Thread Trevor Hastie
Apologies, my last email announcing this course had the wrong dates. Here is the corrected header: Short course: Statistical Learning and Data Mining II: tools for tall and wide data Trevor Hastie and Robert Tibshirani, Stanford University Sheraton Hotel, Palo Alto, California,