web-dev-qa-db-ja.com

Bokehで「set_xlim」または「set_ylim」を実現するにはどうすればよいですか?

関数内に図を作成します。

import numpy
from bokeh.plotting import figure, show, output_notebook
output_notebook()

def make_fig():
    rows = cols = 16
    img = numpy.ones((rows, cols), dtype=numpy.uint32)
    view = img.view(dtype=numpy.uint8).reshape((rows, cols, 4))
    view[:, :, 0] = numpy.arange(256)
    view[:, :, 1] = 265 - numpy.arange(256)
    fig = figure(x_range=[0, c], y_range=[0, rows])
    fig.image_rgba(image=[img], x=[0], y=[0], dw=[cols], dh=[rows])
    return fig

後で図を拡大したい:

fig = make_fig()
# <- zoom in on plot, like `set_xlim` from matplotlib
show(fig)

ボケでプログラムによるズームを行うにはどうすればよいですか?

32
Brian

1つの方法は、Figureを作成するときに単純なTupleでできることです。

figure(..., x_range=(left, right), y_range=(bottom, top))

ただし、x_rangeおよびy_range作成されたFigureのプロパティ。 (私はset_xlimまたはset_ylim matplotlibから。)

from bokeh.models import Range1d

fig = make_fig()
left, right, bottom, top = 3, 9, 4, 10
fig.x_range=Range1d(left, right)
fig.y_range=Range1d(bottom, top)
show(fig)
43
Brian

おそらく素朴な解決策ですが、関数の引数としてlim軸を渡さないのはなぜですか?

import numpy
from bokeh.plotting import figure, show, output_notebook
output_notebook()

def make_fig(rows=16, cols=16,x_range=[0, 16], y_range=[0, 16], plot_width=500, plot_height=500):
    img = numpy.ones((rows, cols), dtype=numpy.uint32)
    view = img.view(dtype=numpy.uint8).reshape((rows, cols, 4))
    view[:, :, 0] = numpy.arange(256)
    view[:, :, 1] = 265 - numpy.arange(256)
    fig = figure(x_range=x_range, y_range=y_range, plot_width=plot_width, plot_height=plot_height)
    fig.image_rgba(image=[img], x=[0], y=[0], dw=[cols], dh=[rows])
    return fig
3
SeF

直接使用することもできます

p = Histogram(wind , xlabel= 'meters/sec', ylabel = 'Density',bins=12,x_range=Range1d(2, 16)) show(p)

0
sushmit