使用ggplotly转换规模后的不同工具提示

时间:2018-03-31 15:09:38

标签: r ggplot2 ggplotly

我正在尝试使用ggplot和ggplotly组合条形图+点图表。我正在使用条形的缩放,以便原点从100开始。我成功了,但条形和点的工具提示值不同:条形图移位了值,而点保留了原始值。我想有同样的正确的' (两个工具提示的非移位值)。这可能吗?

library(ggplot2)
library(dplyr)
library(ggthemes)
library(plotly)

set.seed(369)
values <- round(100 + rnorm(6) * 10, 2)
df <- data.frame(Year = rep(2014:2019, 2), 
                  value = rep(values, 2),
                  Indicator = "Indicator1",
                  Type = rep(c("Bar", "Point"), each = 6))

p <- ggplot(df, aes(value))

bars <- df  %>%
  filter(Type == "Bar")

points <- df  %>%
  filter(Type == "Point")

t_shift <- scales::trans_new("shift",
                             transform = function(x) {x - 100},
                             inverse = function(x) {x + 100})

pl <- p +
  geom_bar(data = bars,
           aes(fill = Indicator, group = Indicator,x = Year, y = value), stat = "identity", position = "dodge") +
  geom_point(data = points,  aes(x = Year, y = value, group = Indicator)) +
  scale_fill_manual(values=c("#00A6CE", "#A83D72"))+
  theme_tufte() +
  theme(legend.title = element_blank()) +
  scale_y_continuous(limits = c(80, 120), trans = t_shift) 

ggplotly(pl, tooltip = c("value"))

Different tooltip values

1 个答案:

答案 0 :(得分:1)

我认为最简单的方法是为两个数据集复制value并将其包含在ggplot图表的另一个变量中。

此代码适用于我的电脑:

bars$Value <- bars$value
points$Value <- points$value


pl <- p +
  geom_bar(data = bars,
           aes(fill = Indicator, group = Indicator,x = Year, y = value,z=Value), stat = "identity", position = "dodge") +
  geom_point(data = points,  aes(x = Year, y = value, group = Indicator,z=Value)) +
  scale_fill_manual(values=c("#00A6CE", "#A83D72"))+
  theme_tufte() +
  theme(legend.title = element_blank()) +
  scale_y_continuous(limits = c(80, 120), trans = t_shift) 

ggplotly(pl, tooltip = c("Year","Value"))