-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
117 lines (83 loc) · 3.83 KB
/
ui.R
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
library(shiny)
library(dplyr)
library(tidyverse)
library(ggplot2)
library(reshape2)
library(stringr)
library(data.table)
library(network)
library(igraph)
#--------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------
#----------------------------------------------module----------------------------------------
NumberUI <- function(id){
ns <- NS(id)
textInput(ns("obs"), "NODE_entry:")
}
Number <- function(input, output, session){}
#--------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------
#--------------------------------------------------------------------------------------------
#----------------------------------------------UI--------------------------------------------
# Define UI for random distribution app ----
ui <- fluidPage(
# App title ----
titlePanel("Topological Relationships of Spaces"),
# Sidebar layout with input and output definitions ----
sidebarLayout(
# Sidebar panel for inputs -------------------------------------------------------------------
sidebarPanel(
downloadButton("downloadData", "Download Sample"),
br(""),
# Input: Select a file ---- (1)
fileInput("file1", "Upload Edgelist CSV File",
multiple = FALSE,
accept = c("text/csv",
"text/comma-separated-values,text/plain",
".csv")),
#-------------------------------------------------------------
# Input Layout
radioButtons("lay", "Layout",
c("Tree" = "tree",
"Radial Tree" = "rtree",
"Kamada Kawaii" = "kk",
"Fruchterman-Reingold" = "fr")),
#Input Root Node
textInput("root", "Root Node: "),
# Input Centrality
radioButtons("cent", "Centrality Measure:",
c("None" = "none",
"Betweenness" = "btw",
"Closeness" = "cls",
"Degree" = "deg",
"Eigenvector" = "eig")),
# Input Vertex Size
numericInput('nodesize', 'Node Size (%)', 100, min = 5, max = 2000),
# Input label Size
numericInput('labelsize', 'Label Size (%)', 100, min = 1, max = 200),
#-------------------------------------------------------------
br(),
#Input Colour Nodes
numericInput("numInputs", "No. of Node Categories: ", 1 , min = 1 , max = 6),
uiOutput("inputGroup"),
br(),
#Input Colour Edges
textInput("edgeblock", "EDGE_entry (non-zero columns): ", "Staircase"),
#-------------------------------------------------------------
),
# Main panel for displaying outputs -----------------------------------------------------------------
mainPanel(
# Output: Tabset w/ plot, summary, and table ----
tabsetPanel(type = "tabs",
tabPanel("JGraph Plot", plotOutput("plot")),
tabPanel("NodeList", tableOutput("node")),
tabPanel("EdgeList", tableOutput("edge"))
)
)
)
)