Re: [R] How to remove second row if above row contain ?

2016-03-20 Thread Bert Gunter
?complete.cases hence, using ?which and basic indexing operations: dat1 <- dat[ -(which(! complete.cases(dat))+1), ] (It's a nice example of what you can do with indexing in R) Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things

Re: [R] HELP! Mann whitney in r

2016-03-20 Thread Bert Gunter
Jim has graciously replied but: 1. Please do not double post -- that's spam; 2. This is a plain text list, so avoid html -- it can get mangled (though here it didn't). 3. Spend some time with an R tutorial or two. They typically cover basic topics such as this, and there are many good ones on the

Re: [R] HELP! Mann whitney in r

2016-03-20 Thread Jim Lemon
Hi santib2002, If you only have the XLS file, you could install the "xlsx" package and read that into R. install.packages("xlsx") read.xls(table1.xls) If you can load it into Excel and export it as CSV format, you can read it with the read.csv function: read.csv("table1.csv") Jim On Sun, Mar

Re: [R] [FORGED] Re: degree sign

2016-03-20 Thread Rolf Turner
On 21/03/16 15:02, David Winsemius wrote: It's a bit puzzling that neither of my replies to [Cathy Lee Gierke's] postings have > appeared on the R help list Archive. I normally reply-all to questions and despite the fact that you are sending in a formatted style, I have my client configured to r

Re: [R] degree sign

2016-03-20 Thread David Winsemius
It's a bit puzzling that neither of my replies to your postings have appeared on the R help list Archive. I normally reply-all to questions and despite the fact that you are sending in a formatted style, I have my client configured to reply in plain text. My client "Sent folder" has copies and

Re: [R] Problem in selecting rows in R

2016-03-20 Thread Kristi Glover
Dear Bert, Boris and Michael, Thanks for your help. I noticed the example data was not compatible with my specification. The messy example embarrassed me. I tested the codes you sent me both codes worked perfectly fine. Please accept my sincere thanks. KG _

Re: [R] Problem in selecting rows in R

2016-03-20 Thread Boris Steipe
Don't post in HTML, but thanks for providing dput() outout. This code tries to follow your specifications, assuming by "time period" you mean days. The result doesn't look like your desired example though, because that is not compatible with your specs and I can't guess what you want to do diff

Re: [R] Problem in selecting rows in R

2016-03-20 Thread Bert Gunter
Your example is wrong: What happened to Sp2 on 1/29? You have also apparently mixed up lower and upper case: "Sp1", "SP3" . This will likely cause you great grief, so try to avoid or fix this in your work. Anyway, there are tons of ways to do this. dplyR is particularly good at this sort of thin

[R] Problem in selecting rows in R

2016-03-20 Thread Kristi Glover
Hi R Users, Some individuals recorded multiple within a time period. But, I want to select the row of last site within each time period for each individual. I spent a substantial time, but no luck in selecting the rows. Would you give me a hint for this one? I have a very large data set, but thi

Re: [R] Problem in selecting rows in R

2016-03-20 Thread Michael Dewey
Dear Kristi You do not say what you have tried but I would have thought the key to a solution was to split your problem up by site and write a function to select the last observation within each site. I am not quite clear whether this is the last in time or the last occurring row so I just gi

[R] ERROR in make.link(link)

2016-03-20 Thread CHIRIBOGA Xavier
Dear all, I am using R version 3.1.3. I want to run this model: m1<-glmer(hours~soil*volatile+(1|replicate), data=data,family=Gamma(link = "inv")) But I got this: Erreur within make.link(link) : 'inv' link not recognised What to do in this case? THANK YOU for help! Xavier PhD can

Re: [R] Trouble plotting interaction with brkdn.plot from plotrix package

2016-03-20 Thread Miksza, Peter John
Thank you very much! Pete > On Mar 16, 2016, at 2:16 AM, PIKAL Petr wrote: > > Hi > > Thanks for providing working example. > > See in line > >> -Original Message- >> From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Miksza, >> Peter John >> Sent: Wednesday, March 16, 2

Re: [R] Error in if (x[j, g] == x[i, g]) { : missing value where TRUE/FALSE needed

2016-03-20 Thread David Winsemius
> On Mar 17, 2016, at 8:22 AM, Chattopadhyay, Somsubhra > wrote: > > I am using the "hydroTSM" package and "trend" package to convert my daily > time series into monthly and then analyze the seasonal trend. My code is > > y <-read.csv("P-GHCNDUSW00093820.csv",as.is=TRUE) > y$DATE <- as.Date(as

[R] 8 statistics courses in Australia

2016-03-20 Thread Highland Statistics Ltd
We would like to announce a series of 8 statistics courses in Australia in June/July/August 2016. For details and registration: http://highstat.com/statscourse.htm Kind regards, Alain Zuur Course 1: Introduction to Linear Mixed Effects Models and GLMM with R. Frequentist and Bayesian appro

Re: [R] sample within a loop

2016-03-20 Thread DIGHE, NILESH [AG/2362]
Tanvir & Don: Thanks a lot for your solutions. Both solutions work great. I really appreciate your help. Regards, Nilesh -Original Message- From: Mohammad Tanvir Ahamed [mailto:mashra...@yahoo.com] Sent: Thursday, March 17, 2016 1:24 PM To: DIGHE, NILESH [AG/2362]; r-help@r-project.or