Nothing
# store pta in attributes of partable
lav_partable_set_cache <- function(partable, pta = NULL, force = FALSE) {
if (!force &&
!is.null(attr(partable, "vnames")) &&
!is.null(attr(partable, "nvar"))) {
return(partable) # cache already OK
}
if (is.null(pta)) {
if (force) attr(partable, "vnames") <- NULL
pta <- lav_partable_attributes(partable)
}
for (n in names(pta)) {
attr(partable, n) <- pta[[n]]
}
partable
}
lav_partable_remove_cache <- function(partable) {
attributelist <- names(attributes(partable))
for (n in attributelist) {
if (n != "ovda" && n != "names") attr(partable, n) <- NULL
}
partable
}
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.