Nothing
#' Interactive GUI for Working with Sociocentric Networks (\code{ideanetViz})
#'
#' @description \code{ideanetViz} is a Shiny app that presents the output of \code{ideanet}'s workflow for sociocentric data (i.e. \code{\link{netwrite}}) in a clear and accessible GUI. This GUI is convenient for users with limited R experience and is useful for classrooms, workshops, and other educational spaces. It is also useful for experienced users interested in quick exploration of network data. Moreover, \code{ideanetViz} streamlines customization of network visualizations and provides quick access into \code{ideanet}'s more advanced analytic tools for sociocentric networks.
#'
#' \code{ideanetViz}'s design is centered around a series of tabs lining the top of the app, which are ordered according to a typical workflow for acquiring, processing, exploring, and modeling data.
#'
#' @return Launches an external window in which users can interact with the \code{ideanetViz} GUI. At different points in working with the GUI, users have the option to export generated data as CSV files and visualizations as image files.
#'
#' @export
ideanetViz <- function() {
rlang::check_installed(c("gridGraphics",
"shinythemes",
"DT",
"shinycssloaders",
"shinyWidgets",
"visNetwork"),
version = c("0.5-1",
"1.2.0",
"0.28",
"1.0.0",
"0.7.6",
"2.1.2"),
compare = c(">=",
">=",
">=",
">=",
">=",
">="))
name = "ideanetViz"
appDir <- system.file(paste0("apps/", name), package = "ideanet")
if (appDir == "") stop("The shiny app ", name, " does not exist")
shiny::runApp(appDir#,
#display.mode = 'showcase',
#...
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.