Opens an interactive Shiny application for exploring PageRank results. Upload CSV files for edge lists, redirects, and PageRank scores, then visualize the graph interactively, inspect distributions, audit redirects, and export in multiple formats.
Arguments
- ...
Additional arguments passed to
shiny::runApp(e.g.,port,host,launch.browser).
Details
The app requires the shiny and DT packages. For interactive
network visualization, visNetwork is recommended (the app falls back
to a static igraph plot if visNetwork is not installed).
Install optional dependencies with:
install.packages(c("shiny", "DT", "visNetwork"))Examples
if (interactive()) {
launch_pagerank_explorer()
}