具有动画的GUI的Python绘图实用程序

我试图在VB中创建一个GUI界面来跟踪……哦,没关系.

基本上,我想在python中创建一个GUI来显示数据,但我发现mathplotlib不适合我的需求.我希望能够突出显示某些数据点,在绘制到屏幕的文本中拥有更多自由度,拥有数据移动动画,并具有数据点的下拉菜单.从我所看到的,我不相信mathplotlib可以做这些事情.我可以用什么工具来更好地满足我的需求?

最佳答案 我自己没有使用它,但
Chaco似乎符合你的一些需求.它比matplotlib更具交互性,可用于制作相当交互的应用程序.

Chaco is a Python plotting application toolkit that facilitates writing plotting applications at all levels of complexity, from simple scripts with hard-coded data to large plotting programs with complex data interrelationships and a multitude of interactive tools. While Chaco generates attractive static plots for publication and presentation, it also works well for interactive data visualization and exploration.

http://code.enthought.com/projects/chaco/docs/html/_images/vanderwaals.png

点赞