gpt4 book ai didi

python - Chaco 中的自动填充?

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

是否可以使chaco图自动显示完整输出而不隐藏刻度线和标签部分?例如。这是标准示例的输出:

from chaco.api import ArrayPlotData, Plot
from enable.component_editor import ComponentEditor

from traits.api import HasTraits, Instance
from traitsui.api import View, Item


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

def __init__(self, x, y, *args, **kw):
super(MyPlot, self).__init__(*args, **kw)
plotdata = ArrayPlotData(x=x,y=y)
plot = Plot(plotdata)
plot.plot(("x","y"), type = "line", color = "blue")
self.plot = plot


import numpy as np
x = np.linspace(-300,300,10000)
y = np.sin(x)*x**3
lineplot = MyPlot(x,y)
lineplot.configure_traits()

enter image description here

正如您所看到的,刻度标签的部分被隐藏了..我唯一能做的就是手动调整绘图的左侧填充。但是,当您在应用程序中绘制不同的数据和不同的比例或字体时,这变得非常不方便。是否有可能以某种方式自动调整填充以包含所有相关信息?

UPD.:我找到了轴的ensure_labels_bounded属性,但似乎没有效果。

最佳答案

Chaco 不支持此类高级布局功能。如果您使用 Chaco,您应该使用它的速度,而不是漂亮的图表或功能。话虽这么说,这是我能得到的最接近的版本。它要求您至少使用鼠标重新调整窗口大小一次才能进行填充校正。也许您可以找到一种方法来刷新窗口而无需手动调整其大小,我对此没有任何运气。无论如何,希望这能让您走上正轨。

from chaco.api import ArrayPlotData, Plot
from enable.component_editor import ComponentEditor

from traits.api import HasTraits, Instance
from traitsui.api import View, Item

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

def __init__(self, x, y, *args, **kw):
super(MyPlot, self).__init__(*args, **kw)
plotdata = ArrayPlotData(x=x,y=y)
plot = Plot(plotdata, padding=25)
plot.plot(("x","y"), type = "line", color = "blue", name='abc')
self.plot = plot
# watch for changes to the bounding boxes of the tick labels
self.plot.underlays[2].on_trait_change(self._update_size, '_tick_label_bounding_boxes')
self.plot.underlays[3].on_trait_change(self._update_size, '_tick_label_bounding_boxes')
def _update_size(self):
if len(self.plot.underlays[2]._tick_label_bounding_boxes) > 0:
self.plot.padding_bottom = int(np.amax(np.array(self.plot.underlays[2]._tick_label_bounding_boxes),0)[1]+8+4)
if len(self.plot.underlays[3]._tick_label_bounding_boxes) > 0:
self.plot.padding_left = int(np.amax(np.array(self.plot.underlays[3]._tick_label_bounding_boxes),0)[0]+8+4)

import numpy as np
x = np.linspace(-300,300,10000)
y = np.sin(x)*x**3
lineplot = MyPlot(x,y)
lineplot.configure_traits()

enter image description here

关于python - Chaco 中的自动填充?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34746604/

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