forked from smallworlnd/LNnodeInsight
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.R
More file actions
31 lines (28 loc) · 612 Bytes
/
app.R
File metadata and controls
31 lines (28 loc) · 612 Bytes
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
28
29
30
31
library(tidyverse)
library(tidygraph)
library(jsonlite)
library(igraph)
library(sna)
library(lubridate)
library(intergraph)
library(networkD3)
library(shiny)
library(shinyWidgets)
library(shinythemes)
library(shinydashboard)
library(shinycssloaders)
library(shinyjs)
library(htmlwidgets)
library(htmltools)
library(bsplus)
library(plotly)
library(DT)
# load data and functions for applications
#source('inst/data.R')
load('graph.Rdata')
source('inst/functions.R', local=TRUE)
# load in shiny parts
source('inst/server.R', local=TRUE)
source('inst/ui.R', local=TRUE)
# put it all together
shinyApp(ui, server)