Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
massimoaria committed Oct 16, 2018
1 parent 7308f73 commit 8af89f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion inst/biblioshiny/server.R
Original file line number Diff line number Diff line change
Expand Up @@ -1003,7 +1003,7 @@ server <- function(input, output, session) {
CO$Tab=gsub("UNITED KINGDOM","UK",CO$Tab)
CO$Tab=gsub("KOREA","SOUTH KOREA",CO$Tab)

map.world <- ggplot2::map_data("world")
map.world <- map_data("world")
map.world$region=toupper(map.world$region)

dplyr::anti_join(CO, map.world, by = c('Tab' = 'region'))
Expand Down
1 change: 1 addition & 0 deletions inst/biblioshiny/ui.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ if (!(require(shinythemes))){install.packages("shinythemes")}
if (!(require(wordcloud2))){install.packages("wordcloud2")}
if (!require(colourpicker)){install.packages("colourpicker")}
if (!require(treemap)){install.packages("treemap")}
if (!require(ggmap)){install.packages("ggmap"); require(ggmap, quietly=TRUE)}


# Main NavBar ----
Expand Down

0 comments on commit 8af89f2

Please sign in to comment.