Chaco is a Python plotting application toolkit that facilitates writing plotting applications at all levels of complexity
0
votes
0answers
18 views
How to make PanTool and ZoomTool behave if plot origin is 'top left'?
I'm trying to use PanTool and ZoomTool in a Chaco plot whose origin is set to 'top left' but the behavior of these tools is not as expected. Panning moves in the opposite direction and box zooming ...
0
votes
0answers
34 views
chaco traits editor like in the good old days?
Page 15 of http://ftp.ntua.gr/mirror/python/pycon/papers/chaco.pdf is exactly what I have been looking for for my chaco plots: an editor that allows one to change the properties of the different ...
1
vote
2answers
45 views
How to plot multiple (x,y) series on same axes with chaco?
I have several sets of (x,y) data that I'd like to plot as line plots on the same figure. I have no trouble with matplotlib doing this, but I cannot get the same results with chaco. Code and output ...
0
votes
0answers
14 views
Python chaco plot duplicate in a container
I am new to chaco library of Python.
I want to create a duplicate copy of Plot in added to another container.
copy and deepcopy didn't work fine for me.
Is there any particular way to create a ...
0
votes
0answers
34 views
Drag on scatterplot and coordinates retrieval in chaco / traits
I have taken the file:
https://github.com/enthought/chaco/tree/master/examples/demo/edit_line.py
and attempted to modify it so that only one point is kept on the graph and
that its coordinates get ...
1
vote
1answer
81 views
Error in py2exe python app using Chaco in pyside
I've a program that uses Enthought's Chaco plots embedded in a pyside (Qt4) GUI. It also uses numpy, but nevermind that. The program runs fine on multiple platforms directly from Python but when I ...
1
vote
1answer
50 views
How to use ScatterInspector and ScatterInspectorOverlay?
I would like to use the chaco tools ScatterInspector and/or ScatterInspectorOverlay with enaml. I've set up a very simple controller and view (source below) but cannot determine how to proceed. I have ...
0
votes
1answer
58 views
react on events generated by chaco tools: how to get values out of a chaco tool when an event is fired ?
actually this should be a pretty simple question, but I am experiencing the quite steep learning curve of chaco and traits...
I am currently writing an application to plot a medical image using chaco ...
0
votes
2answers
52 views
referencing two objects in python how to convert array.x to self.array.self.x?
I have and array which is made up of a bunch of variables I can call.
So normally I would call x using array.x after I import it. Now I've set them up as two objects which can be set by the user in a ...
0
votes
0answers
66 views
Dynamic update x-axis with date and time ticks in Chaco
I show a plot with chaco and traits. In the y-axis I show the data from a file and in the x-axis I show the index. I use a timer to update the data and I increment the index but I would like to show ...
1
vote
1answer
63 views
How to use BaseMap with chaco plots
I had developed scatter and lasso selection plots with Chaco. Now, I need to embed a BaseMap [with few markers on a map] onto the plot area side by side.
I created a BaseMap and tried to add to the ...
4
votes
2answers
234 views
pip install enable fails
Currently trying to install Chaco with the use of pip in my 2.7.3 environment. When I run pip install chaco it fails with this error:
error: Command "llvm-gcc-4.2 -fno-strict-aliasing -fno-common ...
1
vote
1answer
327 views
Chaco: Get Index and Value out of a chaco plot
I'm working on a program that has two plots next to each other. The first plot has a ZoomTool, a PanTool and a RangeSelection tool. The second plot should be modified according to the changes ...
2
votes
3answers
462 views
Interactive visualization of connections between cells in a matrix
I have plotted a matrix using matplotlib. I am wondering if it is possible to yield some interactivity to this plot using some toolkit/module.
Based on our analysis we know a priori which cell of ...
14
votes
1answer
492 views
Dealing with timeseries gaps in Chaco
I have a standard financial timeseries of data which has gaps for when the market is closed.
The problem is Chaco displays these gaps, I could use a formatter in matplotlib as follows and apply to ...
12
votes
1answer
1k views
Dynamically create plots in Chaco
The Chaco plotting toolkit for Python includes examples that show how to dynamically update existing plots. However, my application requires that I dynamically create and destroy plots depending on ...
2
votes
1answer
295 views
Interactive 2D plotting in python
I'm trying to write a program that creates a 2D grid in which the user chooses some edges between the points in the grid. Then the program dynamically manipulate those edges(eg. flip them, connect ...
3
votes
1answer
153 views
Embedding chaco in GTK
Embedding Chaco into Qt and Wx seems to be no problem. Does anyone have an example or an idea how to embed Chaco into GTK?
0
votes
1answer
135 views
Chaco marker properties
I am looking for a way to use empty circles as markers in Chaco (something like using markeredgecolor in matplotlib). Unfortunately, I haven't been able to find a list of properties that can be ...
2
votes
2answers
1k views
Region-of-interest drawing tool for image analysis (in python)
In an effort to move away from IDL and Matlab, I'm exploring what kind of tools I need to implement in python/scipy et al. One common feature is to display medical images and outline regions of ...
1
vote
1answer
359 views
Profiling Python - Streaming Audio and spectrum
I'm trying to modify this example: https://svn.enthought.com/enthought/browser/Chaco/trunk/examples/advanced/spectrum.py. Unfortunately I have not been able to get it to scale. If I double the ...
4
votes
1answer
481 views
python chaco axis labels time formatting
In Enthought's Chaco, the TimeFormatter class is used to format the time string of the tick
labels. is there a way to specify the time format (something like time.strftime()).
the source code now ...
6
votes
4answers
2k views
Python: Embed Chaco in PyQt4 Mystery
How do i go about adding Chaco to an existing PyQt4 application?
Hours of searches yielded little (search for yourself). So far i've figured i need the following lines:
import os
...