如何根据Bokeh中的y填充不同颜色的区域

2024-06-11 19:48:51 发布

您现在位置:Python中文网/ 问答频道 /正文

y>;时填充颜色应为绿色=y<;时为0和红色=0您可以在Matplotlib中使用fill_between中的'when'变量执行此操作。博克有类似的功能吗

from bokeh.plotting import figure, output_file, show
import numpy as np

strike1 = 20 #Long Call
premium1 = 0.5
price = np.arange(15,25,0.01)
contracts = 1

def long_call(price, strike1, premium1, contracts):
    P = []
    for i in price:
        P.append((max(i - strike1, 0) - premium1) * (contracts * 100))
    return np.array(P)


# output to static HTML file
output_file("lines.html")

# create a new plot with a title and axis labels
p = figure(title="Option Payoff", x_axis_label='Underlying Price ($)', y_axis_label='Profit/Loss ($)')

# add a line renderer with legend and line thickness
p.line(x, y, line_width=2)
p.varea(x=x, y1=y, fill_alpha=1, fill_color='#3cb371')

# show the results
show(p)

Tags: importoutputtitleshowwithnplinefill
1条回答
网友
1楼 · 发布于 2024-06-11 19:48:51

VArea图示符是连续的,但通过将y1y2与变换相同,只需将一些区域折叠为0区域块,就可以使其看起来像是独立的块

import math

from bokeh.models import ColumnDataSource, CustomJSTransform
from bokeh.plotting import figure, show
from bokeh.transform import transform

N = 100
ds = ColumnDataSource(dict(x=[i / 10 for i in range(N)],
                           y=[math.sin(i / 10) for i in range(N)]))
p = figure()
p.line('x', 'y', source=ds, line_width=3)
p.varea(x='x', y1=transform('y', CustomJSTransform(v_func="return xs.map(x => x > 0 ? x : 0)")),
        y2=0, source=ds, color='green', fill_alpha=0.5)
p.varea(x='x', y1=transform('y', CustomJSTransform(v_func="return xs.map(x => x < 0 ? x : 0)")),
        y2=0, source=ds, color='red', fill_alpha=0.5)

show(p)

相关问题 更多 >