Nothing
.LabelSym <- function(p,
label) {
chars <- seq_len(p)
outer(
X = chars,
Y = chars,
FUN = function(x, y) {
ifelse(
test = x <= y,
yes = paste0(
label,
"_",
y,
"_",
x
),
no = paste0(
label,
"_",
x,
"_",
y
)
)
}
)
}
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.