Nothing
.checkBalanced<-function(v,...)
{
freqs = table(v)
# Check to make sure they are all identical, and not equal to 1.
if( !all(freqs==1) & all(freqs[1] == freqs))
{
return(TRUE)
}else{
return(FALSE)
}
}
check.temp <- function(assignments) {
if (assignments[["dv"]] == "")
return(FALSE)
if (length(assignments[["categorical"]]) < 1)
return(FALSE)
return(TRUE)
}
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.