1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/profvis.R
\name{profvisOutput}
\alias{profvisOutput}
\alias{renderProfvis}
\title{Widget output and renders functions for use in Shiny}
\usage{
profvisOutput(outputId, width = "100\%", height = "600px")
renderProfvis(expr, env = parent.frame(), quoted = FALSE)
}
\arguments{
\item{outputId}{Output variable for profile visualization.}
\item{width}{Width of the htmlwidget.}
\item{height}{Height of the htmlwidget}
\item{expr}{An expression that returns a profvis object.}
\item{env}{The environment in which to evaluate \code{expr}.}
\item{quoted}{Is \code{expr} a quoted expression (with \code{\link[=quote]{quote()}})?}
}
\description{
Widget output and renders functions for use in Shiny
}
|