0
Problem beim Hinzufügen einer Regressionslinie zu einem Plotly-Streudiagramm. Ich habe den folgenden Code getan:plotly Regressionslinie 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
Siehe [this thread] (http://stackoverflow.com/questions/37218319/plotly-not-creating-linear-trend-line) –