gpt4 book ai didi

python - Chaco 文本中的 latex ?

转载 作者:太空宇宙 更新时间:2023-11-03 17:58:04 24 4
gpt4 key购买 nike

是否可以使用 latex 文本创建查科图?例如,如果我们想要 this exampe 标题中的 latex 符号:

from traits.api import HasTraits, Instance
from traitsui.api import View, Item
from chaco.api import Plot, ArrayPlotData
from enable.component_editor import ComponentEditor
from numpy import linspace, sin

class LinePlot(HasTraits):
plot = Instance(Plot)
traits_view = View(
Item('plot',editor=ComponentEditor(), show_label=False),
width=500, height=500, resizable=True, title="Chaco Plot")

def __init__(self):
super(LinePlot, self).__init__()
x = linspace(-14, 14, 100)
y = sin(x) * x**3
plotdata = ArrayPlotData(x=x, y=y)
plot = Plot(plotdata)
plot.plot(("x", "y"), type="line", color="blue")
plot.title = "sin(x) * x^3"
self.plot = plot

if __name__ == "__main__":
LinePlot().configure_traits()

我尝试用 $sin(x)^3$ 替换标题,但没有成功,想知道这是否可能?截图如下:

enter image description here

最佳答案

不,不是(它是 matplotlib 的一个功能)。但对于简单的情况,您可以尝试使用 unicode 符号。

关于python - Chaco 文本中的 latex ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28204537/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com