Nothing
var.selection<-function(cluster_fun,cluster,k,x,p.adjust,alpha,clusterFirst=FALSE){
selected_features=list()
for (j in 2:k){
if (clusterFirst==TRUE){cluster <- cluster_fun(x, j)$cluster}
pvals<-apply(x,2,function(x) summary(stats::aov(x~cluster))[[1]][1,5])
selected_features[[j]]=which(p.adjust(pvals,p.adjust)<alpha)
}
return(selected_features)}
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.