Nothing
`rlmmain` <- function(df,per=NULL){
if(!"weight"%in%colnames(df))
stop("please add weight column in df to indicate which data points to include in the analysis. See function 'weightDf' for more info")
if(!is.null(per)){
df = split(df,df[,per])
res = lapply(df,rlmpart)
} else res = rlmpart(df)
res
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.