R/Summaryordered0.R

Summaryordered0<-
function (x, maxsum = 7, pourcent=1) 
{
    Table <- summary(na.omit(x), maxsum = maxsum)
    if(pourcent==0){
return(Table)}
else{
Table<-round(100*Table/sum(Table))
return(Table)
}
}

Try the RcmdrPlugin.pointG package in your browser

Any scripts or data that you put into this service are public.

RcmdrPlugin.pointG documentation built on May 2, 2019, 3:26 p.m.