0
將回歸線添加到'plotly'散點圖的問題。 我已經做了下面的代碼:plottric regression line R
require(plotly)
data(airquality)
## Scatter plot ##
c <- plot_ly(data = airquality,
x = Wind,
y = Ozone,
type = "scatter",
mode = "markers"
)
c
## Adding regression line (HERE IS THE PROBLEM) ##
g <- add_trace(c,
x = Wind,
y = fitted(lm(Ozone ~ Wind, airquality)),
mode = "lines"
)
g
請參閱[此主題](http://stackoverflow.com/questions/37218319/plotly-not-creating-linear-trend-line) –