0
votes
1answer
54 views

interactively work with xy point plot clusters - group manipulation in r

I have a large number of pair of X and Y variables along with their cluster membership column. Cluster membership (group) may not be always right (limitation in perfection of clustering algorithm), I ...
1
vote
1answer
64 views

MATLAB - Pan a plot independently of other plots in the same axes

If I have multiple plots (A, B, C) on the same axes, is it possible to pan A without panning B and C as well? If not, is there another way I can accomplish the same goal?
2
votes
1answer
122 views

Creating interactive animations of physical systems in Python [closed]

I am currently diving into Python, coming from Mathematica/Matlab/C. I want to learn how to create interactive plots (or better animations) in Python's matplotlib library and possibly integrate them ...
2
votes
1answer
121 views

matlab interactive contour plot

I have a set of data, or spectra, for various x-y coordinates. Looks something like this: x y spectrum x spectrum y -14 -18 35.0286000000000 330.643000000000 -14 -18 ...
5
votes
3answers
577 views

Plotting a sine wave while traversing the unit circle using Javascript

I want to plot a sine wave while traversing the unit circle. I want to use it for educational purposes. The plot I want to have is similar to the one below: Besides, I want x axis' tick labels to ...
2
votes
0answers
54 views

What javascript library for this interactive function explorer?

I want to create an interactive web page were users can see how the plot of a particular multi-parameter function is affected as one varies its various parameters. The function I want to illustrate ...
2
votes
1answer
478 views

Python Matplotlib interactive plotting - freezes after a few frames

I am having a problem getting matplotlib to work well with interactive plotting... what I see is that after displaying a few frames of my simulated data matplotlib hangs-and doesn't display any more. ...
2
votes
1answer
272 views

How to create a GUI via R?

Now I have several parameters for my plotting. So I want to create a GUI, with some sliders for controlling continuous parameters, some check boxes/option buttons for controlling logical parameters ...
4
votes
1answer
2k views

Interactive(?) plotting in Spyder with matplotlib

I am trying to migrate over to Python from Matlab and can't figure out how to get interactive(?) plotting working within the Spyder IDE. My test code is shown below. With the .ion() nothing happens, ...
1
vote
1answer
683 views

Make clicking MATLAB plot markers plot subgraph

In Matlab 2011b, I have a multidimensional matrix which is to be initially presented as a 2D plot of 2 of its dimensions. I wish to make the markers clickable with the left mouse button. Clicking on a ...
2
votes
1answer
186 views

What technology and framework for dynamic web application with interactive plots

I will appreciate some suggestions to identify the best options for choosing a technology and framework to create and maintain a dynamic web application presenting scientific numerical material as ...
7
votes
4answers
936 views

Interactive plotting in Python?

Matlab and Mathematica both have features that allow the user to manipulate the contents of a plot using, say, a slider. For example, if you have a set of 3D data, it is easy to make a small program ...
4
votes
2answers
605 views

Is there an interactive output device to view 3D graphs in R?

I'm currently generating 3D graphs in R using the persp-command. To change the viewpoint one has to set the parameters theta and phi. To evaluate (a good viewpoint on) the graph, one has to try lots ...
2
votes
2answers
397 views

How to combine Cmd and Matplotlib in python

I'd like to combine interactive plotting in Matplotlib and the Command line interface Cmd in python. How can I do this? Can I use threading? I tried the following: from cmd import Cmd import ...