Nothing
#' list all characters
#' @return as a list
#' @importFrom elves elves
#' @export
lotr <- function() {
list(
hobbits = hobbits(),
elves = elves(),
dwarves = dwarves(),
humans = humans(),
ainur = ainur()
)
}
#' @importFrom gimli gimli
dwarves <- function() {
list(gimli = gimli())
}
#' @importFrom aragorn aragorn
humans <- function() {
list(aragorn = aragorn())
}
#' @importFrom gandalf gandalf
ainur <- function() {
list(gandalf = gandalf())
}
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.