#' <Add Title>
#'
#' <Add Description>
#'
#' @import htmlwidgets
#'
#' @export
easygraph <- function(igraph, aaa = TRUE, width = NULL, height = NULL, elementId = NULL) {
# read the gexf file
graph_json <- jsonlite::toJSON(list(
nodes = igraph::as_data_frame(igraph, "vertices")
,links = igraph::as_data_frame(igraph, "edges")))
vertices <- igraph::as_data_frame(network, "vertices")
edges <- igraph::as_data_frame(network, "edges")
# create a list that contains the settings
settings <- list(
aaa = aaa
)
# pass the data and settings using 'x'
x <- list(
graph_json = graph_json,
settings = settings
)
# create widget
htmlwidgets::createWidget(
name = 'easygraph',
x,
width = width,
height = height,
package = 'easygraph',
elementId = elementId
)
}
#' Shiny bindings for easygraph
#'
#' Output and render functions for using easygraph within Shiny
#' applications and interactive Rmd documents.
#'
#' @param outputId output variable to read from
#' @param width,height Must be a valid CSS unit (like \code{'100\%'},
#' \code{'400px'}, \code{'auto'}) or a number, which will be coerced to a
#' string and have \code{'px'} appended.
#' @param expr An expression that generates a easygraph
#' @param env The environment in which to evaluate \code{expr}.
#' @param quoted Is \code{expr} a quoted expression (with \code{quote()})? This
#' is useful if you want to save an expression in a variable.
#'
#' @name easygraph-shiny
#'
#' @export
easygraphOutput <- function(outputId, width = '100%', height = '400px'){
htmlwidgets::shinyWidgetOutput(outputId, 'easygraph', width, height, package = 'easygraph')
}
#' @rdname easygraph-shiny
#' @export
renderEasygraph <- function(expr, env = parent.frame(), quoted = FALSE) {
if (!quoted) { expr <- substitute(expr) } # force quoted
htmlwidgets::shinyRenderWidget(expr, easygraphOutput, env, quoted = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.