Learn R Programming

pixiedust (version 0.5.0)

medley: Sprinkle Medleys

Description

pixiedust can get to be pretty verbose if you are doing a great deal of customization. Sprinkle medleys can take out some of that code by bundling much of the formatting sprinkling into a single function. pixiedust comes with a couple very basic medleys that are mostly for illustration of how to write medleys. Once you get the hang of sprinkling, you need only bundle your most common sprinkles into a medley function of your own and cut down on some of the time coding your most basic formatting.

Usage

medley_bw(x)

medley_model(x, round = 2)

Arguments

x
a dust object.
round
A numerical value passed to the round sprinkle.

Examples

Run this code
fit <- lm(mpg ~ qsec + factor(am) + wt * factor(gear), data = mtcars)

dust(fit) %>%
  medley_bw() %>%
  sprinkle_print_method("html")

dust(fit, glance_foot = TRUE) %>%
  medley_model() %>%
  sprinkle_print_method("html")

Run the code above in your browser using DataLab