如何获取figure()函数的所有参数?

时间:2015-12-03 23:06:13

标签: bokeh

如何获取图形函数的参数(http://bokeh.pydata.org/en/latest/docs/reference/plotting.html#bokeh.plotting.Figure

我查看了

的文档
  1. bokeh.models.plots.Plot(http://bokeh.pydata.org/en/latest/docs/reference/models/plots.html#bokeh.models.plots.Plot

  2. bokeh.models.widget.Widgets

  3. 和源代码https://github.com/bokeh/bokeh/tree/master/bokeh

  4. 在继承链

    中找不到图的完整参数列表

    例如,我如何找到参数

    x_axis_label='datetime' 
    

    来自源代码/文档

1 个答案:

答案 0 :(得分:2)

更新:

所有这些参数现已完整记录,请参阅:

http://bokeh.pydata.org/en/latest/docs/reference/plotting.html#options

从0.10开始,有一小撮" kwarg"我们尚未能够自动化文档的参数。没有好的方法可以通过编程方式找到它们,但是你可以在这里看到所有这些:

https://github.com/bokeh/bokeh/blob/master/bokeh/plotting.py#L41

其他任何内容都是标准属性,将显示在自动参考文档中。但是"额外"的列表参数归结为:

x_range
y_range

x_axis_type
y_axis_type

x_minor_ticks
y_minor_ticks

x_axis_location
y_axis_location

x_axis_label
y_axis_label

如果您可以针对这些参数提出GitHub问题以请求更好的文档自动化,那么我们将不胜感激。