crunch (version 1.27.7)

newSlide: Append a new slide to a Crunch Deck

Description

Append a new slide to a Crunch Deck

Usage

newSlide(
  deck,
  query = NULL,
  display_settings = list(),
  title = "",
  subtitle = "",
  ...
)

Arguments

deck

A Crunch Deck

query

A formula definition of a query to be used by the slide. This is similar to CrunchCube query

display_settings

(optional) A list of display settings. If omitted, slide will be a table of column percentages with hypothesis test highlighting enabled. The most common setting used is vizType, which can be: table, groupedBarPlot, stackedBarPlot, horizontalBarPlot, horizontalStackedBarPlot, donut, and (if the second variable in the query formula is a wave variable) timeplot. In addition, showValueLabels (logical) controls whether the web app and exports show labels on bars or arcs of donuts.

title

The slide's title

subtitle

The slide's subtitle

...

Further options to be passed on to the API

Value

CrunchSlide object

Examples

Run this code
# NOT RUN {
newSlide(
    main_deck,
    ~ cyl + wt,
    title = "Cyl and Weight",
    subtitle = "2017 Data"
)

# Grouped bar plot
newSlide(
    main_deck,
    ~ approval + age4,
    title = "Approval by age group",
    display_settings = list(
        vizType = "groupedBarPlot",
        showValueLabels = TRUE
    ),
    subtitle = "2017 Data"
)

# Horizontal stacked bars
newSlide(
    main_deck,
    ~ approval + age4,
    title = "Approval by age group",
    display_settings = list(
        vizType = "horizontalStackedBarPlot"
    ),
    subtitle = "2017 Data"
)

# A donut is only suitable for a single variable
newSlide(
    main_deck,
    ~ approval,
    title = "Approval of new feature",
    display_settings = list(
        vizType = "donut",
        showValueLabels = FALSE
    ),
    subtitle = "2017 Data"
)

# Can specify advanced options by specifying `analyses` directly
# `formulaToSlideQuery()` and `slideQueryEnv()` help describe the API
newSlide(
    main_deck,
    title = "custom slide",
    analyses = list(list(
        query = formulaToSlideQuery(~categories(fav_array)+subvariables(fav_array), ds),
        query_environment = slideQueryEnv(filter = filters(ds)[[1]]),
        display_settings = list(viz_type = list(value = "table")),
        viz_specs =  list(
            default = list(
                format = list(
                    decimal_places = list(percentages = 0L, other = 2L),
                    show_empty = FALSE
                )
             ),
             table = list(
             measures = c("col_percent", "pairwise_t_test"),
             page_layout = list(
                 rows = list(
                     top = list(),
                     bottom = c("base_unweighted", "scale_mean", "significant_columns")
                 ),
                 measure_layout = "long"
             ),
             pairwise_comparison = list(sig_threshold = c(0.05, 0.01)),
             format = list(pval_colors = FALSE)
            )
        )
    ))
)
# }

Run the code above in your browser using DataLab