Nothing
pvalmat<-function(lst,regressors) {
pvalm<-matrix(NA,length(lst),length(regressors))
colnames(pvalm)<-regressors
for (i in 1:length(lst)) {
coef<-summary(lst[[i]])$coef
logind<-rownames(coef) %in% regressors
pvalm[i,rownames(coef)[logind]]<-coef[logind,4]
}
colnames(pvalm)<-paste('pvalue',regressors,sep='.')
return(pvalm)
}
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.