Nothing
print.BLB_archetypal=function(x,...){
#
# Check class
#
if(!inherits(x,"BLB_archetypal")){stop("Error, input must be an object of class 'BLB_archetypal'")} #RE SET!
#
arches = x$arches
pop_compos = x$pop_compos
lower_ci = x$lower_ci
upper_ci = x$upper_ci
ci_sigma = x$ci_sigma
N = x$N
#
cat("The Grid Archetypal is:","\n")
cat("\n")
print(arches)
cat("\n")
#
cat("Population estimates of compositions (by group or without grouping): ","\n")
cat("A i pm: Archetype i composition mean value","\n")
print(pop_compos)
cat("\n")
#
cat(paste0("Lower confidence interval at ",ci_sigma," sigma: "),"\n")
cat("A i l: Archetype i composition lower CI value","\n")
print(lower_ci)
cat("\n")
#
cat(paste0("Upper confidence interval at ",ci_sigma," sigma: "),"\n")
cat("A i u: Archetype i composition upper CI value","\n")
print(lower_ci)
cat("\n")
#
return(invisible(NULL))
}
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.