【发布时间】:2022-01-06 09:42:33
【问题描述】:
我在下面有情节,虽然我选择了lines+markers 作为mode,但我只得到lines。为什么会这样?
sumscope2<-structure(list(Year = c(1962, 1976, 1988, 1989, 1991, 1997, 2002,
2008), Country = c("Algeria", "Algeria", "Algeria", "Algeria",
"Algeria", "Algeria", "Algeria", "Algeria"), Scope = c(2, 9,
3, 2, 15, 3, 23, 4)), class = c("grouped_df", "tbl_df", "tbl",
"data.frame"), row.names = c(NA, -8L), groups = structure(list(
Year = c(1962, 1976, 1988, 1989, 1991, 1997, 2002, 2008),
.rows = structure(list(1L, 2L, 3L, 4L, 5L, 6L, 7L, 8L), ptype = integer(0), class = c("vctrs_list_of",
"vctrs_vctr", "list"))), class = c("tbl_df", "tbl", "data.frame"
), row.names = c(NA, -8L), .drop = TRUE))
library(plotly)
fig <- plot_ly(data = sumscope2, x = ~Year, y = ~Scope,mode = 'lines+markers',
marker = list(size = 10,
color = 'rgba(255, 182, 193, .9)',
line = list(color = 'rgba(152, 0, 0, .8)',
width = 2)),
text=paste("Year :", sumscope2$Year,
"<br> Count of Scopes :", sumscope2$Scope),
hoverinfo="text"
)%>%
layout(title="Count of Scope per country and year",
xaxis=list(tickvals=~Year,ticktext=~Year,dtick = 5),
yaxis=list(tickvals=~Scope,ticktext=~Scope,dtick = 5)
)
fig
【问题讨论】: