Боке строят линии регрессии на диаграмме рассеяния - PullRequest
0 голосов
/ 09 февраля 2019

Я сгенерировал два графика рассеяния на одном графике, используя Python и Bokeh, и добавил флажки, чтобы разрешить отдельный просмотр графика рассеяния.

Как добавить линии регрессии для двух графиков рассеяния (с уравнениями), используя Bokeh?

output_file("Scatterplot.html")

#scatter plot
S0 = f.circle(A_area, A_price,
         fill_alpha=0.3, size=3, color='green')
S1 = f.circle(B_area, B_price,
         fill_alpha=0.3, size=3, color='blue')

#widget-checkbox
checkboxes = CheckboxGroup(labels=["A", "B"], active=[0, 1])
callback = CustomJS(code="""S0.visible = false; // same S0 passed in from args
                            S1.visible = false;
                            // cb_obj injected in by the callback
                            if (cb_obj.active.includes(0)){S0.visible = true;} // 0 index box is S0
                            if (cb_obj.active.includes(1)){S1.visible = true;}""",
                    args={'S0': S0, 'S1': S1})

checkboxes.js_on_click(callback)

Ответы [ 2 ]

0 голосов
/ 23 августа 2019

Bokeh также имеет класс Slope в своей документации для построения такой линии регрессии.Все, что вам нужно, это перехват и наклон, чтобы сделать это.Кроме того, я использую LinearRegression () из scikit-learn, но np.polyfit в ответе Joris, очевидно, тоже будет работать.

import numpy as np
from sklearn.linear_model import LinearRegression
from bokeh.models import Slope
from bokeh.plotting import figure, show
from bokeh.io import output_notebook
output_notebook()

# Data
x=np.array([0,1,2,3,4,5,6,7,8])
y=np.array([1,2,3,5,4,6,8,7,9])

# Make and fit a linear regression model
model = LinearRegression().fit(x.reshape(-1, 1), y)
# x values need to be in a two-dimensional array, so use .reshape(-1, 1)

# Find the slope and intercept from the model
slope = model.coef_[0] # Takes the first element of the array
intercept = model.intercept_

# Make the regression line
regression_line = Slope(gradient=slope, y_intercept=intercept, line_color="red")

# Plot the data and regression line
fig=figure()
fig.circle(x, y)
fig.add_layout(regression_line)
show(fig)
0 голосов
/ 09 февраля 2019

Вы рассчитываете подгонку линии с помощью numpy, а затем строите ее в боке:

import numpy as np
from bokeh.plotting import figure
from bokeh.io import show

#the data
x=np.array([0,1,2,3,4,5,6,7,8])
y=np.array([1,2,3,5,4,6,8,7,9])

# determine best fit line
par = np.polyfit(x, y, 1, full=True)
slope=par[0][0]
intercept=par[0][1]
y_predicted = [slope*i + intercept  for i in x]

# plot it
fig=figure()
fig.circle(x,y)
fig.line(x,y_predicted,color='red',legend='y='+str(round(slope,2))+'x+'+str(round(intercept,2)))
show(fig)

enter image description here

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...