
Bokeh
Claroja
这个作者很懒,什么都没留下…
展开
-
Bokeh库快速入门
http://bokeh.pydata.org/en/latest/docs/user_guide/quickstart.html#userguide-quickstart安装可以使用conda或者pip安装conda install boken # 自动安装依赖库和例子 pip install bokeh # 需要自己手动安装依赖库,没有例子开始例1 基本过程from bokeh.plotting翻译 2017-07-11 10:25:26 · 4272 阅读 · 2 评论 -
bokeh.plotting API
http://bokeh.pydata.org/en/latest/docs/reference/plotting.html figure(**kwargs) 返回一个画板对象(Figure) 参数 类型 描述 active_drag Either ( Auto , String , Instance ( Drag ) ) 默认激活某个drag工具翻译 2017-07-13 14:13:01 · 1099 阅读 · 0 评论 -
bokeh.model API
http://bokeh.pydata.org/en/latest/docs/reference/model.html#bokeh.model.Modelclass Model(**kwargs) 属性 类型 描述 js_event_callbacks Dict ( String , List ( Instance ( CustomJS ) ) ) A mapping of e翻译 2017-07-13 11:51:08 · 639 阅读 · 0 评论 -
Bokeh.models.tools API
http://bokeh.pydata.org/en/latest/docs/reference/models/tools.html Pan/Drag class Drag(**kwargs) Click/Tap class Tap(**kwargs) Scroll/Pinch class Scroll(**kwargs)[source] Actions class Act翻译 2017-07-13 10:11:06 · 750 阅读 · 0 评论 -
Bokeh 命令
http://bokeh.pydata.org/en/latest/docs/user_guide/cli.html Bokeh可以生成各种各样的结果 Standalone HTML bokeh html app_script.py bokeh html app_notebook.ipynb Serialized JSON bokeh json app_script.py Bokeh翻译 2017-07-13 10:09:30 · 782 阅读 · 0 评论 -
bokeh 设置做图工具
Bokeh包含了很多的交互工具,总共有三大类:Gestures,Actions,Inspectors Positioning the Toolbar(设置工具栏位置) 在figure()函数中传入toolbar_location参数 Specifying Tools(指定工具) 两种添加工具的方法 tools = [BoxZoomTool(), ResetTool()] # 可以翻译 2017-07-12 09:00:30 · 2481 阅读 · 0 评论 -
Bokeh 增加交互方式
Linking Plots(联机图) Linked Panning(链接移动镜头) 使用共同的range对象链接不同图像,在figure()中传入x_range或y_range参数 Linked Brushing(链接选择) 使用共同的ColumnDataSource对象链接不同图像的选择 Interactive Legends Hiding Glyphs 隐藏Gly翻译 2017-07-12 09:02:26 · 1417 阅读 · 0 评论 -
Bokeh 布局图像和工具
三个核心的布局对象Row,Column和WidgetBox,建议使用 row(), column(), 和widgetbox()函数 Columns 纵向排列 Rows 横向排列 Widgets 排列工具箱 Grids Layout for Plots The gridplot() function can be used to arrange Bokeh Plots in g翻译 2017-07-12 09:01:33 · 835 阅读 · 0 评论 -
Bokeh 风格属性设置
http://bokeh.pydata.org/en/latest/docs/user_guide/styling.html# 使用Palettes Palettes储存了一系列RGBA值来设置颜色地图。 >>> from bokeh.palettes import Spectral6 >>> Spectral6 ['#3288bd', '#99d594', '#e6f598', '#f翻译 2017-07-12 08:58:53 · 1707 阅读 · 0 评论 -
Bokeh 添加注释
http://bokeh.pydata.org/en/latest/docs/user_guide/annotations.htmlTitles(标题)添加标题from bokeh.plotting import figure, show, output_filep = figure(title="Basic Title", plot_width=300, plot_height=300) p.ci翻译 2017-07-12 08:57:40 · 1713 阅读 · 0 评论 -
Bokeh 借力其他库
JavaScriptDatashaderHoloViews翻译 2017-07-11 11:40:04 · 551 阅读 · 0 评论 -
Bokeh 使用Basic Glyphs做图
http://bokeh.pydata.org/en/latest/docs/user_guide/plotting.html创建画板scatter图from bokeh.plotting import figure, output_file, show # 输出静态html图 output_file("line.html") p = figure(plot_width=400, plot_heig翻译 2017-07-11 11:33:48 · 927 阅读 · 0 评论 -
Bokeh 关键概念
术语 术语 解释 Application 在浏览器展示的Bokeh文档 BokehJS JavaScript客户端库,控制渲染 Documents 组织好的Application数据机构 Embedding 各种各样的方法 Glyphs Bokeh做图基础视图 Models The lowest-level objects that compri翻译 2017-07-11 10:45:43 · 1027 阅读 · 0 评论 -
Bokeh库
Bokeh 快速入门原创 2017-07-11 10:27:57 · 1513 阅读 · 0 评论