search for: col3_range

Displaying 16 results from an estimated 16 matches for "col3_range".

2016 Apr 19
5
Interquartile Range
...'t work Jim! Thanks anyway On Mon, Apr 18, 2016 at 9:02 PM, Jim Lemon <drjimlemon at gmail.com> wrote: > Hi Michael, > At a guess, try this: > > iqr<-function(x) { > return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") > } > > .col3_Range=iqr(datat$tenure) > > Jim > > > > On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz <michaeleartz at gmail.com> > wrote: > > Hi, > > I am trying to show an interquartile range while grouping values using > > the function ddply(). So my function call now...
2016 Apr 19
2
Interquartile Range
...le grouping values using the function ddply(). So my function call now is like groupedAll <- ddply(data ,~groupColumn ,summarise ,col1_mean=mean(col1) ,col2_mode=Mode(col2) #Function I wrote for getting the mode shown below ,col3_Range=paste(as.character(round(quantile(datat$tenure,c(.25)))), as.character(round(quantile(data$tenure,c(.75)))), sep = "-") ) #custom Mode function Mode <- function(x) { ux <- unique(x) ux[which.max(tabulate(match(x, ux)))] } I am not sre what is going wrong on my...
2016 Apr 19
0
Interquartile Range
Hi Michael, At a guess, try this: iqr<-function(x) { return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") } .col3_Range=iqr(datat$tenure) Jim On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz <michaeleartz at gmail.com> wrote: > Hi, > I am trying to show an interquartile range while grouping values using > the function ddply(). So my function call now is like > > groupedAll <- ddply(data...
2016 Apr 19
0
Interquartile Range
Hi, Here is what I am doing notGroupedAll <- ddply(data ,~groupColumn ,summarise ,col1_mean=mean(col1) ,col2_mode=Mode(col2) #Function I wrote for getting the mode shown below ,col3_Range=myIqr(col3) ) groupedAll <- ddply(data ,~groupColumn ,summarise ,col1_mean=mean(col1) ,col2_mode=Mode(col2) #Function I wrote for getting the mode shown below ,col3_Range=Mode(col3)...
2016 Apr 19
2
Interquartile Range
...>> >>>> > iqr<-function(x) { >> >>>> > >> >>>> >> return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") >> >>>> > } >> >>>> > >> >>>> > .col3_Range=iqr(datat$tenure) >> >>>> > >> >>>> > Jim >> >>>> > >> >>>> > >> >>>> > >> >>>> > On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz < >> michaeleartz at gmail.com>...
2016 Apr 20
2
Interquartile Range
...ere is what I am doing > > notGroupedAll <- ddply(data > ,~groupColumn > ,summarise > ,col1_mean=mean(col1) > ,col2_mode=Mode(col2) #Function I wrote for getting the > mode shown below > ,col3_Range=myIqr(col3) > ) > > groupedAll <- ddply(data > ,~groupColumn > ,summarise > ,col1_mean=mean(col1) > ,col2_mode=Mode(col2) #Function I wrote for getting the > mode shown below >...
2016 Apr 19
0
Interquartile Range
...2016 at 9:02 PM, Jim Lemon <drjimlemon at gmail.com> wrote: > > > Hi Michael, > > At a guess, try this: > > > > iqr<-function(x) { > > > return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") > > } > > > > .col3_Range=iqr(datat$tenure) > > > > Jim > > > > > > > > On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz <michaeleartz at gmail.com> > > wrote: > > > Hi, > > > I am trying to show an interquartile range while grouping values > using > &g...
2016 Apr 19
0
Interquartile Range
...Mon, Apr 18, 2016 at 9:02 PM, Jim Lemon <drjimlemon at gmail.com> wrote: > >> Hi Michael, >> At a guess, try this: >> >> iqr<-function(x) { >> return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") >> } >> >> .col3_Range=iqr(datat$tenure) >> >> Jim >> >> >> >> On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz <michaeleartz at gmail.com> >> wrote: >> > Hi, >> > I am trying to show an interquartile range while grouping values using >> > the fun...
2016 Apr 20
0
Interquartile Range
...gt; >> notGroupedAll <- ddply(data >> ,~groupColumn >> ,summarise >> ,col1_mean=mean(col1) >> ,col2_mode=Mode(col2) #Function I wrote for getting the >> mode shown below >> ,col3_Range=myIqr(col3) >> ) >> >> groupedAll <- ddply(data >> ,~groupColumn >> ,summarise >> ,col1_mean=mean(col1) >> ,col2_mode=Mode(col2) #Function I wrote for getting the >> m...
2016 Apr 20
2
Interquartile Range
...t;- ddply(data > >> ,~groupColumn > >> ,summarise > >> ,col1_mean=mean(col1) > >> ,col2_mode=Mode(col2) #Function I wrote for getting the > >> mode shown below > >> ,col3_Range=myIqr(col3) > >> ) > >> > >> groupedAll <- ddply(data > >> ,~groupColumn > >> ,summarise > >> ,col1_mean=mean(col1) > >> ,col2_mode=Mode(col2) #Function...
2016 Apr 19
1
Interquartile Range
...on at gmail.com> wrote: >> >> > Hi Michael, >> > At a guess, try this: >> > >> > iqr<-function(x) { >> > >> return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") >> > } >> > >> > .col3_Range=iqr(datat$tenure) >> > >> > Jim >> > >> > >> > >> > On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz <michaeleartz at gmail.com> >> > wrote: >> > > Hi, >> > > I am trying to show an interquartile range whil...
2016 Apr 19
2
Interquartile Range
...on at gmail.com> wrote: >> >> > Hi Michael, >> > At a guess, try this: >> > >> > iqr<-function(x) { >> > >> return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") >> > } >> > >> > .col3_Range=iqr(datat$tenure) >> > >> > Jim >> > >> > >> > >> > On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz <michaeleartz at gmail.com> >> > wrote: >> > > Hi, >> > > I am trying to show an interquartile range whil...
2016 Apr 20
0
Interquartile Range
...>> ,~groupColumn >> >> ,summarise >> >> ,col1_mean=mean(col1) >> >> ,col2_mode=Mode(col2) #Function I wrote for getting the >> >> mode shown below >> >> ,col3_Range=myIqr(col3) >> >> ) >> >> >> >> groupedAll <- ddply(data >> >> ,~groupColumn >> >> ,summarise >> >> ,col1_mean=mean(col1) >> >> ,col...
2016 Apr 19
2
Interquartile Range
...t;>>> > At a guess, try this: >>>> > >>>> > iqr<-function(x) { >>>> > >>>> return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") >>>> > } >>>> > >>>> > .col3_Range=iqr(datat$tenure) >>>> > >>>> > Jim >>>> > >>>> > >>>> > >>>> > On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz <michaeleartz at gmail.com> >>>> > wrote: >>>> > > Hi, >...
2016 Apr 19
0
Interquartile Range
...>>> > Hi Michael, >>> > At a guess, try this: >>> > >>> > iqr<-function(x) { >>> > >>> return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") >>> > } >>> > >>> > .col3_Range=iqr(datat$tenure) >>> > >>> > Jim >>> > >>> > >>> > >>> > On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz <michaeleartz at gmail.com> >>> > wrote: >>> > > Hi, >>> > > I am trying...
2016 Apr 19
0
Interquartile Range
...: > >>>> > > >>>> > iqr<-function(x) { > >>>> > > >>>> > return(paste(round(quantile(x,0.25),0),round(quantile(x,0.75),0),sep="-") > >>>> > } > >>>> > > >>>> > .col3_Range=iqr(datat$tenure) > >>>> > > >>>> > Jim > >>>> > > >>>> > > >>>> > > >>>> > On Tue, Apr 19, 2016 at 11:15 AM, Michael Artz < > michaeleartz at gmail.com> > >>>> > w...