我正在尝试将工具提示叠加到美国地图上,但是无论我将鼠标悬停在哪里……它都会显示相同的数据。另外,数据有误。我在想它是通过因子值而不是字符值。我尝试从电影浏览器示例中获取提示 - http://shiny.rstudio.com/gallery/movie-explorer.html - 但是,它没有像我希望的那样工作。我应该调查的任何提示或线索?
更新:我已经确定您只能传递被调用到ggvis
函数中的参数。因此,如果我的工具提示功能包括region
, long
, & lat
,它们都会出现在工具提示中。由于Population
andIncome
没有出现在函数的任何地方,因此它没有传递它们。我仍然不知道如何进行,但任何想法都会很棒!:)
library(ggplot2)
library(shiny)
library(ggvis)
library(dplyr)
shinyApp(
ui = fluidPage(
#numericInput("n", "n", 1),
ggvisOutput("map")
),
server = function(input, output) {
statesData <- reactive({
states <- data.frame(state.x77)
states$region <- row.names(state.x77) %>% tolower
row.names(states) <- NULL
all_states <- map_data("state") %>%
mutate(region = tolower(region)) %>%
left_join(states)
all_states_unique <- all_states %>%
select(region, Population, Income, Illiteracy, Life.Exp, Murder, HS.Grad, Frost, Area) %>%
unique
states_tooltip <- function(x) {
if (is.null(x)) return(NULL)
if (is.null(x$region)) return(NULL)
# Pick out the movie with this ID
allStates <- isolate(all_states_unique)
state <- allStates[allStates$region == x$region, ]
paste0("<b>", state$region, "</b><br>",
state$Population, "<br>",
state$Income
)
}
all_states %>%
arrange(group, order) %>%
ggvis(x = ~long, y = ~lat) %>%
layer_paths(fill = ~region, stroke := .2) %>%
add_tooltip(states_tooltip, "hover")
})
statesData %>% bind_shiny('map')
}
)