diff --git a/NAMESPACE b/NAMESPACE index b17c6d6..c52ab51 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -4,6 +4,9 @@ export(bipartiteNetwork) export(bipartiteNetworkOutput) export(corGraph) export(renderBipartiteNetwork) +export(renderUnipartiteNetwork) +export(unipartiteNetwork) +export(unipartiteNetworkOutput) import(dplyr) import(ggplot2) import(htmlwidgets) diff --git a/man/renderUnipartiteNetwork.Rd b/man/renderUnipartiteNetwork.Rd new file mode 100644 index 0000000..b9d19bb --- /dev/null +++ b/man/renderUnipartiteNetwork.Rd @@ -0,0 +1,19 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/unipartiteNetwork.R +\name{renderUnipartiteNetwork} +\alias{renderUnipartiteNetwork} +\title{Shiny bindings for unipartiteNetwork} +\usage{ +renderUnipartiteNetwork(expr, env = parent.frame(), quoted = FALSE) +} +\arguments{ +\item{expr}{an expression that generates unipartiteNetwork} + +\item{env}{the environment in which to evaluate \code{expr}} + +\item{quoted}{Is \code{expr} a quoted expression (with \code{quote()})? This +is useful if you want to save an expression in a variable} +} +\description{ +Render function for using unipartiteNetwork within Shiny apps +} diff --git a/man/unipartiteNetwork.Rd b/man/unipartiteNetwork.Rd new file mode 100644 index 0000000..d30b969 --- /dev/null +++ b/man/unipartiteNetwork.Rd @@ -0,0 +1,20 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/unipartiteNetwork.R +\name{unipartiteNetwork} +\alias{unipartiteNetwork} +\title{unipartiteNetwork} +\usage{ +unipartiteNetwork(data, width = NULL, height = NULL, elementId = NULL) +} +\arguments{ +\item{data}{a data frame with source, target, and value columns} + +\item{width}{the width of the widget} + +\item{height}{the height of the widget} + +\item{elementId}{the ID of the widget} +} +\description{ +Create a unipartiteNetwork widget +} diff --git a/man/unipartiteNetworkOutput.Rd b/man/unipartiteNetworkOutput.Rd new file mode 100644 index 0000000..76d5cdd --- /dev/null +++ b/man/unipartiteNetworkOutput.Rd @@ -0,0 +1,16 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/unipartiteNetwork.R +\name{unipartiteNetworkOutput} +\alias{unipartiteNetworkOutput} +\title{Shiny bindings for unipartiteNetwork} +\usage{ +unipartiteNetworkOutput(outputId, width = "100\%", height = "400px") +} +\arguments{ +\item{outputId}{output variable to read from} + +\item{width, height}{Must be a valid CSS unit (like \code{'100\%'}, '400px', or 'auto')} +} +\description{ +Output function for using unipartiteNetwork within Shiny apps +}