13.6 曲线图
plot_ly(
x = c(1, 2.2, 3), y = c(5.3, 6, 7),
type = "scatter", color = I("gray40"),
mode = "markers+lines", line = list(shape = "spline")
) %>%
add_annotations(
x = 2, y = 6, size = I(100),
text = TeX("x_i \\sim N(\\mu, \\sigma)")
) %>%
layout(
xaxis = list(showgrid = F, title = TeX("\\mu")),
yaxis = list(showgrid = F, title = TeX("\\alpha"))
) %>%
config(mathjax = 'cdn')图 13.6: 平滑曲线图