Nothing
#' @title Create, modify, and delete columns
#'
#' @description This is a method for the [dplyr::transmute()] generic.
#' See "Fallbacks" section for differences in implementation.
#' `transmute()` creates a new data frame containing only the specified computations.
#' It's superseded because you can perform the same job with `mutate(.keep = "none")`.
#'
#' @inheritParams dplyr::transmute
#' @examples
#' library(duckplyr)
#' transmute(mtcars, mpg2 = mpg*2)
#' @seealso [dplyr::transmute()]
#' @rdname transmute.duckplyr_df
#' @name transmute.duckplyr_df
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.