Nothing
#* Echo the parameter that was sent in
#*
#* @get /echo/<msg>
#*
#* @param msg:string The message to echo back.
#*
function(msg) {
list(
msg = paste0("The message is: '", msg, "'")
)
}
#* Plot out data from the palmer penguins dataset
#*
#* @get /plot
#*
#* @query spec:string If provided, filter the data to only this species
#* (e.g. 'Adelie')
#*
#* @serializer png
#*
function(query) {
myData <- penguins
title <- "All Species"
# Filter if the species was specified
if (!is.null(query$spec)){
title <- paste0("Only the '", query$spec, "' Species")
myData <- subset(myData, species == query$spec)
}
plot(
myData$flipper_len,
myData$bill_len,
main=title,
xlab="Flipper Length (mm)",
ylab="Bill Length (mm)"
)
}
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.