Re: [R] Add column to the output of summary(glht).

2016-06-24 Thread Ista Zahn
This won't make you an R aficionado, but depending on your needs library(broom) tidy(SumTukey) might be useful. This converts the output to a familiar data.frame, making it much easier to work with. Best, Ista On Jun 24, 2016 9:48 AM, "John Sorkin" wrote: > > I am trying to make the leap from

[R] Add column to the output of summary(glht).

2016-06-24 Thread John Sorkin
I am trying to make the leap from an R users to an R aficionado . . . I am trying to understand how add a column to the output of summary (and to understand how summary() works). I have run a glmer fit0 <- glmer(Fall ~ Group+(1|PID),family=poisson(link="log"),data=data[data[,"Group"]!=0,])

Re: [R] Add column to the output of summary(glht).

2016-06-24 Thread Marc Schwartz
> On Jun 24, 2016, at 8:45 AM, John Sorkin wrote: > > > I am trying to make the leap from an R users to an R aficionado . . . > > I am trying to understand how add a column to the output of summary (and to > understand how summary() works). > > I have run a glmer > fit0 <- glmer(Fall ~ > Gr

Re: [R] Add column to the output of summary(glht).

2016-06-24 Thread PIKAL Petr
> -Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of John > Sorkin > Sent: Friday, June 24, 2016 3:46 PM > To: r-help@r-project.org > Subject: [R] Add column to the output of summary(glht). > > > I am trying to make the leap from an

[R] Add column to the output of summary(glht).

2016-06-24 Thread John Sorkin
I am trying to make the leap from an R users to an R aficionado . . . I am trying to understand how add a column to the output of summary (and to understand how summary() works). I have run a glmer fit0 <- glmer(Fall ~ Group+(1|PID),family=poisson(link="log"),data=data[data[,"Group"]!=0,])