Я создал график, используя ggplot, где я добавил цвета фона в определенных областях графика:
p.ggplot +
geom_rect(aes(xmin= -Inf, xmax= Inf, ymin= -5, ymax= 0.2),alpha=0.3, fill="#b71e3f") +
geom_rect(aes(xmin= -Inf, xmax= Inf, ymin= 0.8, ymax= 1),alpha=0.3, fill="#1f59b7") +
geom_rect(aes(xmin= -Inf, xmax= Inf, ymin= 0.2, ymax= 0.8),alpha=0.3, fill="#514e4f")
К сожалению, фоновые фигурыне сохраняются при превращении объекта ggplot в объект заговора через ggplotly:
p.plotly <- ggplotly(p.ggplot)
Следуя инструкциям на https://plot.ly/r/shapes/,Я добавил следующие строки к объекту plotly, но вывод остался прежним.Кто-нибудь знает, что мне не хватает?
Спасибо.
p.plotly <- layout(p.plotly,
shapes = list(
list(type = "rect",
fillcolor = "#b71e3f", line = list(color = "#b71e3f"), opacity = 0.3,
x0 = 0, x1 = 2, xref = "x",
y0 = -5, y1 = 0.2, yref = "y"),
list(type = "rect",
fillcolor = "#1f59b7", line = list(color = "#1f59b7"), opacity = 0.3,
x0 = 0, x1 = 2, xref = "x",
y0 = 0.2, y1 = 0.8, yref = "y"),
list(type = "rect",
fillcolor = "#514e4f", line = list(color = "#514e4f"), opacity = 0.3,
x0 = 0, x1 = 2, xref = "x",
y0 = 0.8, y1 = 1, yref = "y")))
htmlwidgets::saveWidget(as_widget(p.plotly), "sexCheckPlot.html")