-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
87 lines (68 loc) · 3.35 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
library(shiny)
library(shinyjs)
library(shinyWidgets)
library(shinydashboard)
#library(shinydashboardPlus)
library(shinythemes)
library(leaflet)
library(tidyverse)
library(rpivotTable)
shinyUI(navbarPage(
title = "Proyectos RG",
tabPanel('Mapa',
shinyUI(fluidPage(
fluidRow(
# bootstrapPage( title = NULL,
tags$style(type = "text/css", "#mymap1 {height: calc(90vh) !important;}"),
leafletOutput('mymap1', width = "100%", height = "95%"),
absolutePanel(
top = 90,
right = 30,
draggable = T,
width = "13%",
selectizeGroupUI(
id = "my_filters",
params = list(
genero = list(inputId = "genero", title = "Genero:"),
proyecto = list(inputId = "proyecto", title = "Proyecto:"),
estatus_ecologico = list(inputId = "estatus_ecologico", title = "Estatus ecológico:"),
estado = list(inputId = "estado", title = "Estado:")
# Estado = list(inputId = "Estado", title = "Estado:")
),
inline = FALSE,
# btn_label = "Reiniciar la visualización"
),
awesomeRadio(
inputId = "color_dot",
label = "Colores",
choices = c("Proyecto", "Género"),
selected = "Proyecto",
inline = TRUE,
status = "danger"
),
),
#)
)
))
),
tabPanel('Tabla Dinámica',
# Define UI for slider demo application
shinyUI(
fluidPage(
#Application title
titlePanel("Información General"),
h4("En la",tags$a(href = "https://es.wikipedia.org/wiki/Tabla_din%C3%A1mica", "Tabla dinámica") , "selecciona y arrastra el elemento que deseas ver en columna y en renglón"),
h4("Selecciona tabla o gráfica para ver y analizar tus datos"),
mainPanel(
rpivotTableOutput("Ceratti3")
#fluidRow(
# column(9,
# h4("Observaciones"),
# rpivotTableOutput("Ceratti3")
#
# ))
, width = 8)
)
)
)
))