Nothing
new_sgl_cta_identity <- function() {
new_sgl_cta(class = "sgl_cta_identity")
}
#' @export
valid_cta.sgl_cta_identity <- function(cta, col_expr, df) {
if (col_expr$column == "*") {
stop("Error: '*' can only be used inside an aggregation function")
}
}
#' @export
is_aggregation.sgl_cta_identity <- function(cta) {
FALSE
}
#' @export
is_transformation.sgl_cta_identity <- function(cta) {
FALSE
}
#' @export
expr_text.sgl_cta_identity <- function(cta, col_expr) {
col_expr$column
}
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.