1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ggvis.R
\name{show_spec}
\alias{show_spec}
\title{Print out the vega plot specification}
\usage{
show_spec(vis, pieces = NULL)
}
\arguments{
\item{vis}{Visualisation to print}
\item{pieces}{Optional, a character or numeric vector used to
pull out selected pieces of the spec}
}
\description{
Print out the vega plot specification
}
\examples{
base <- mtcars \%>\% ggvis(~mpg, ~wt) \%>\% layer_points()
base \%>\% show_spec()
base \%>\% show_spec("scales")
}
|