server.R 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. library(shiny)
  2. library(tidyverse)
  3. # Load precomputed data
  4. sct_data <- readRDS(file = "data/rds/proj.rds")
  5. sct_data_b <- readRDS(file = "data/rds/categories.rds")
  6. choropleth_data <- readRDS(file = "data/rds/choropleth_data.rds")
  7. parallelcoordinates_data <- readRDS(file = "data/rds/parallelcoordinates_data.rds")
  8. bar_data <- readRDS(file = "data/rds/bar_data.rds")
  9. radar_data <- readRDS(file = "data/rds/radar_data.rds")
  10. treemap_data <- readRDS(file = "data/rds/treemap_data.rds")
  11. tree_data <- readRDS(file = "data/rds/tree_data.rds")
  12. heatmap_2012_data <- readRDS(file = "data/rds/heatmap_2012_data.rds")
  13. heatmap_2013_data <- readRDS(file = "data/rds/heatmap_2013_data.rds")
  14. heatmap_2014_data <- readRDS(file = "data/rds/heatmap_2014_data.rds")
  15. heatmap_2015_data <- readRDS(file = "data/rds/heatmap_2015_data.rds")
  16. heatmap_2016_data <- readRDS(file = "data/rds/heatmap_2016_data.rds")
  17. heatmap_2017_data <- readRDS(file = "data/rds/heatmap_2017_data.rds")
  18. choropleth_UF2012_data <- readRDS(file = "data/rds/percentage_UF2012.rds")
  19. choropleth_UF2013_data <- readRDS(file = "data/rds/percentage_UF2013.rds")
  20. choropleth_UF2014_data <- readRDS(file = "data/rds/percentage_UF2014.rds")
  21. choropleth_UF2015_data <- readRDS(file = "data/rds/percentage_UF2015.rds")
  22. choropleth_UF2016_data <- readRDS(file = "data/rds/percentage_UF2016.rds")
  23. choropleth_UF2017_data <- readRDS(file = "data/rds/percentage_UF2017.rds")
  24. choropleth_meso2012_data <- readRDS(file = "data/rds/percentage_meso2012.rds")
  25. choropleth_meso2013_data <- readRDS(file = "data/rds/percentage_meso2013.rds")
  26. choropleth_meso2014_data <- readRDS(file = "data/rds/percentage_meso2014.rds")
  27. choropleth_meso2015_data <- readRDS(file = "data/rds/percentage_meso2015.rds")
  28. choropleth_meso2016_data <- readRDS(file = "data/rds/percentage_meso2016.rds")
  29. choropleth_meso2017_data <- readRDS(file = "data/rds/percentage_meso2017.rds")
  30. server <- function(input, output, session) {
  31. observe({
  32. session$sendCustomMessage(type="scatterplot_values", message = list(sct_data, sct_data_b))
  33. })
  34. observe({
  35. session$sendCustomMessage(type="dendrogram_values",
  36. message = list(tree_data,
  37. bar_data,
  38. radar_data))
  39. })
  40. observe({
  41. session$sendCustomMessage(type="treemap2_values", message = treemap_data)
  42. })
  43. observe({
  44. session$sendCustomMessage(type="choropleth_values", message = list(
  45. list(choropleth_UF2012_data,
  46. choropleth_UF2013_data,
  47. choropleth_UF2014_data,
  48. choropleth_UF2015_data,
  49. choropleth_UF2016_data,
  50. choropleth_UF2017_data),
  51. list(heatmap_2012_data,
  52. heatmap_2013_data,
  53. heatmap_2014_data,
  54. heatmap_2015_data,
  55. heatmap_2016_data,
  56. heatmap_2017_data),
  57. list(choropleth_meso2012_data,
  58. choropleth_meso2013_data,
  59. choropleth_meso2014_data,
  60. choropleth_meso2015_data,
  61. choropleth_meso2016_data,
  62. choropleth_meso2017_data)
  63. )
  64. )
  65. })
  66. observe({
  67. session$sendCustomMessage(type="parallelcoordinates_values", message = parallelcoordinates_data)
  68. })
  69. }