本文整理汇总了Python中bokeh.plotting.output_file方法的典型用法代码示例。如果您正苦于以下问题:Python plotting.output_file方法的具体用法?Python plotting.output_file怎么用?Python plotting.output_file使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类bokeh.plotting
的用法示例。
在下文中一共展示了plotting.output_file方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: output_file
# 需要导入模块: from bokeh import plotting [as 别名]
# 或者: from bokeh.plotting import output_file [as 别名]
def output_file(*args, **kwargs):
"""Wrap bokeh.plotting.output_file."""
import bokeh.plotting as bkp
return bkp.output_file(*args, **kwargs)
示例2: _do_plot_candle_html
# 需要导入模块: from bokeh import plotting [as 别名]
# 或者: from bokeh.plotting import output_file [as 别名]
def _do_plot_candle_html(date, p_open, high, low, close, symbol, save):
"""
bk绘制可交互的k线图
:param date: 融时间序列交易日时间,pd.DataFrame.index对象
:param p_open: 金融时间序列开盘价格序列,np.array对象
:param high: 金融时间序列最高价格序列,np.array对象
:param low: 金融时间序列最低价格序列,np.array对象
:param close: 金融时间序列收盘价格序列,np.array对象
:param symbol: symbol str对象
:param save: 是否保存可视化结果在本地
"""
mids = (p_open + close) / 2
spans = abs(close - p_open)
inc = close > p_open
dec = p_open > close
w = 24 * 60 * 60 * 1000
t_o_o_l_s = "pan,wheel_zoom,box_zoom,reset,save"
p = bp.figure(x_axis_type="datetime", tools=t_o_o_l_s, plot_width=1280, title=symbol)
p.xaxis.major_label_orientation = pi / 4
p.grid.grid_line_alpha = 0.3
p.segment(date.to_datetime(), high, date.to_datetime(), low, color="black")
# noinspection PyUnresolvedReferences
p.rect(date.to_datetime()[inc], mids[inc], w, spans[inc], fill_color=__colorup__, line_color=__colorup__)
# noinspection PyUnresolvedReferences
p.rect(date.to_datetime()[dec], mids[dec], w, spans[dec], fill_color=__colordown__, line_color=__colordown__)
bp.show(p)
if save:
save_dir = os.path.join(K_SAVE_CACHE_HTML_ROOT, ABuDateUtil.current_str_date())
html_name = os.path.join(save_dir, symbol + ".html")
ABuFileUtil.ensure_dir(html_name)
bp.output_file(html_name, title=symbol)