Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cocoVisR
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stephanie Wegscheidl
cocoVisR
Commits
84a7572e
Commit
84a7572e
authored
Jul 20, 2018
by
Stephanie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
raw upload done, style and controlls updated
parent
043f6b13
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
87 additions
and
32 deletions
+87
-32
cocoVisR.Rproj
cocoVisR.Rproj
+13
-0
dashboard/server.R
dashboard/server.R
+17
-0
dashboard/ui.R
dashboard/ui.R
+46
-32
dashboard/www/custom.css
dashboard/www/custom.css
+5
-0
www/custom.css
www/custom.css
+6
-0
No files found.
cocoVisR.Rproj
0 → 100644
View file @
84a7572e
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX
dashboard/server.R
View file @
84a7572e
...
...
@@ -11,4 +11,21 @@ library(shiny)
server
<-
function
(
input
,
output
)
{
set.seed
(
122
)
#histdata <- rnorm(500)
#output$plot1 <- renderPlot({
#data <- histdata[seq_len(input$slider)]
#hist(data)
#})
##MAP
#m <- leaflet()
#m <- addTiles(m)
#x=1
#for(x in 1:2019){
#m <- addMarkers(m,lng=longitude[x], lat=latitude[x]) #addPolylines does not work
#x=x+1}
#m
#}
}
dashboard/ui.R
View file @
84a7572e
...
...
@@ -4,6 +4,8 @@ library(shinydashboard)
library
(
leaflet
)
ui
<-
dashboardPage
(
skin
=
"purple"
,
dashboardHeader
(
title
=
"CoCoVisR"
),
dashboardSidebar
(
sidebarMenu
(
...
...
@@ -14,43 +16,76 @@ ui <- dashboardPage(
)
),
dashboardBody
(
#tags$head(
# tags$link(rel = "stylesheet", type = "text/css", href = "custom.css")
#),
tabItems
(
# Upload tab content
tabItem
(
tabName
=
"upload"
,
h2
(
"Upload here"
)
h2
(
"Upload here:"
),
fileInput
(
"file1"
,
"Select CoConUT Data (*.json):"
,
multiple
=
FALSE
,
accept
=
c
(
"text/json"
,
"text/comma-separated-values,text/plain"
,
".json"
)),
fileInput
(
"file2"
,
"Select CoCoQuest Data (*.json):"
,
multiple
=
FALSE
,
accept
=
c
(
"text/json"
,
"text/comma-separated-values,text/plain"
,
".json"
))
),
# Controlls tab content
tabItem
(
tabName
=
"controlls"
,
h2
(
"Controlls here"
)
h2
(
"Controlls here:"
),
checkboxInput
(
"histogram"
,
"Histogram"
,
FALSE
),
#selectInput('in6', 'Data', data.name, multiple=TRUE, selectize=TRUE),
checkboxInput
(
"timeline"
,
"Timeline"
,
FALSE
),
#selectInput('in6', 'Data', data.name, multiple=TRUE, selectize=TRUE),
checkboxInput
(
"map"
,
"Map"
,
FALSE
),
#selectInput('in6', 'Data', data.name, multiple=TRUE, selectize=TRUE),
checkboxInput
(
"lingegraph"
,
"Linegraph"
,
FALSE
)
#selectInput('in6', 'Data', data.name, multiple=TRUE, selectize=TRUE)
),
# Dashboard tab content
tabItem
(
tabName
=
"dashboard"
,
h2
(
"This is the Dashboard"
),
fluidRow
(
#tabBox(
#title = "First tabBox",
# The id lets us use input$tabset1 on the server to find the current tab
#id = "tabset1", height = "250px",
#tabPanel("Tab1", "First tab content"),
#tabPanel("Tab2", "Tab content 2")
#),
#if(menuitem$controls$histogram ==TRUE){
box
(
title
=
"Histogram"
,
status
=
"primary
"
,
status
=
"warning
"
,
solidHeader
=
TRUE
,
collapsible
=
TRUE
,
plotOutput
(
"plot1"
,
height
=
250
)),
#},
box
(
title
=
"Map"
,
status
=
"
primary
"
,
status
=
"
warning
"
,
solidHeader
=
TRUE
,
collapsible
=
TRUE
,
plotOutput
(
"plot1"
,
height
=
250
)),
box
(
title
=
"Timeline"
,
status
=
"
primary
"
,
status
=
"
warning
"
,
solidHeader
=
TRUE
,
collapsible
=
TRUE
,
plotOutput
(
"plot3"
,
height
=
250
)),
box
(
title
=
"Linechart"
,
status
=
"
primary
"
,
status
=
"
warning
"
,
solidHeader
=
TRUE
,
collapsible
=
TRUE
,
plotOutput
(
"plot4"
,
height
=
250
))
#box(
# title = "Controls",
#sliderInput("slider", "Number of observations:", 1, 100, 50)
#)
)
),
...
...
@@ -61,25 +96,4 @@ ui <- dashboardPage(
))
)
#server <- function(input, output) {
# set.seed(122)
#histdata <- rnorm(500)
#output$plot1 <- renderPlot({
#data <- histdata[seq_len(input$slider)]
#hist(data)
#})
##MAP
#m <- leaflet()
#m <- addTiles(m)
#x=1
#for(x in 1:2019){
#m <- addMarkers(m,lng=longitude[x], lat=latitude[x]) #addPolylines does not work
#x=x+1}
#m
#}
#shinyApp(ui, server)
)
\ No newline at end of file
dashboard/www/custom.css
0 → 100644
View file @
84a7572e
.main-header
.logo
{
font-family
:
"Georgia"
,
Times
,
"Times New Roman"
,
serif
;
font-weight
:
bold
;
font-size
:
32px
;
}
\ No newline at end of file
www/custom.css
0 → 100644
View file @
84a7572e
/*.main-header .logo {
font-family: "Georgia", Times, "Times New Roman", serif;
font-weight: bold;
font-size: 32px;
}
*/
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment