Nothing
#' Average
#'
#' The `avg` function returns the average of a column
#' within each group.
#'
#' @section Function Name:
#' - `avg`
#'
#' @section Arguments:
#' - The name of a numerical column to average (required).
#'
#' @examples
#' library(duckdb)
#' con <- dbConnect(duckdb())
#' dbWriteTable(con, "cars", cars)
#'
#' dbGetPlot(con, "
#' visualize
#' origin as x,
#' avg(horsepower) as y
#' from cars
#' group by
#' origin
#' using bars
#' ")
#'
#' @name avg
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.