Bokeh文档与PyCharm集成

时间:2018-01-23 12:18:55

标签: python pycharm bokeh

一些python模块在PyCharm(numpy,pandas等)的右侧显示文档:

enter image description here

Bokeh没有,我想知道如何指向可读的生成文档(pycharm指南在这里https://www.jetbrains.com/help/pycharm/python-external-documentation.html)。

更新

我发现这个方法适用于某些方法:

https://bokeh.pydata.org/en/latest/docs/reference/{}generated/{module.name}.{element.name}.html

但它不适用于像.line这样的方法,我只获取元信息,链接返回404:

enter image description here

2 个答案:

答案 0 :(得分:1)

line之类的字形方法实际上是(大写F)Figure类的方法。由于历史原因,此时无法更改,更常用(小写f)figure函数只返回一个Figure对象。因此,您在上面的URL方案将不适用于此实例。

作为一个具体示例,您可以为PyCharm配置的参考文档中line方法的位置在此处:

https://bokeh.pydata.org/en/latest/docs/reference/plotting.html#bokeh.plotting.figure.Figure.line

答案 1 :(得分:0)

以下是在Pycharm CE中如何运行“ Hello Bokeh”的示例:

(菜单)运行>编辑配置

名称 hello_bokeh

脚本路径 G:\ Users \ frederic \ Anaconda3 \ Scripts \ bokeh-script.py

参数服务-显示C:\ data \ design \ machine_learning \ first_project \ vae_july_2018 \ bokeh \ hello_bokeh.py

然后通过确定

进行验证

(菜单)运行>运行'hello_bokeh'