Tagged Questions
1
vote
0answers
33 views
Figure title (suptitle()) disappears if you specify figure size in Matplotlib
Take, for instance, this code sample:
import numpy as np
import matplotlib.pyplot as plt
f = np.random.random(100)
g = np.random.random(100)
fig = plt.figure(figsize=(15,15))
fig.suptitle('Long ...
0
votes
1answer
72 views
Axis overlapping line in matplotlib
I'm currently trying to draw a series of arbitrary lines on a matplotlib graph. Here is the code I'm using:
import matplotlib.pyplot as pyplot
def center_origin(axis):
'''Center the axis in the ...
0
votes
0answers
28 views
How Python plot time-varying time 3-D data extracted from internal clock in the same frame [closed]
I wrote a small code in Python that generates a flight path using internal clock. I need to plot this flight as data is generated. I have no clue what I should write from here on. I appreciate any ...
0
votes
1answer
148 views
wxPython - graphing data
I have an issue with graphing data within wxPython - this code below works but it's not exactly right: For now I plot random numbers which are multiples of an entry box, this is done every 100ms.
My ...
2
votes
1answer
120 views
Attempting to draw hyperbola in matplotlib produces line along vertical asymptote? [duplicate]
I'm attempting to draw a hyperbola using pyplot and matplotlib. This is my code:
from __future__ import division
import numpy
import matplotlib.pyplot as pyplot
x = numpy.arange(0, 1000, 0.01)
y = ...
1
vote
2answers
112 views
Plots made with rpy sent to X11 suddenly close?
I'm using RPy2 to make some plots. The plot shows up but the X11 window immediately disappears.
All I'm typing is the following, where CCFS is a data matrix
import rpy2.robjects as robjects
r = ...
0
votes
2answers
424 views
How to add titles, axis label, and legend in sagemath?
I'm currently making some graphs using the online workbook hosted by sagemath.
This is an example of some code I'm making to try and generate a graph:
myplot = list_plot(zip(range(20), range(20)), ...
0
votes
1answer
97 views
In Python, how do I make it so only one item of the list is printed out?
This is using the Taylor series to find the value of the sine of an angle between -1 and +1, but what I'm trying to do is get the value of every degree, print it, go to the next degree, then print, ...
0
votes
2answers
392 views
Update Lines in matplotlib
I have a graph with multiple data sets on it. I need to continually redraw these lines, each separately, as the data is updated. How can I delete and reestablish it repeatedly, preferably without ...
1
vote
1answer
50 views
datacursormode for networkx
I have plotted a large graph with networkx and want to see the names of each vertex, unfortunately there are too many to read easily. Looking around I have found implementations of datacursormode in ...
0
votes
0answers
308 views
Change Qwt SpectrogramData look?
I've been given a chart (below) and asked if I could change the look of it. The data behind this chart only has X values of 1,3,4,5 - whole numbers only. However, from the chart it looks like it ...
0
votes
0answers
116 views
How can I make a three dimensional histogram with matplotlib?
In one of the entries in the matplotlib gallery, at http://matplotlib.sourceforge.net/examples/mplot3d/hist3d_demo.html, initially at least it does not disturb the impression that one can have ...
0
votes
2answers
433 views
Python graphing of time series
I have a project that will requiring graphing data (with Python). rrdtool seems to be almost exactly what I need- except it only supports 1 second resolution and my data points are much closer ...
5
votes
1answer
5k views
matplotlib set yaxis label size
How can I change the size of only the yaxis label?
Right now, I change the size of all labels using
pylab.rc('font', family='serif', size=40)
but in my case, I would like to make the y-axis label ...
2
votes
2answers
1k views
Color and Line writing using MatPlotLib
I am trying to graph families of curves using Matplotlib. I am graphing the data directly using scatter() and then plotting a fit line (least squares from scipy) using plot(). I do not know how many ...
5
votes
2answers
574 views
Change matplotlib line style mid-graph
I'm graphing some data (two lines) and I'd like to change the line style for the portions of the lines where the difference between them is statistically significant. So, in the below image (now a ...
3
votes
4answers
793 views
python: (x,y) plot alternative to matplotlib
I've been trying for several hours to download/build/install/use matplotlib and am at my wit's end. I finally got it to build and it runs but doesn't display anything despite calling plt.show().
Is ...
3
votes
2answers
471 views
Exporting plot with full data or saving as a script
I'm using python with matplotlib to create plots out of data, an I'd like to save this plots on a pdf file (but I could use also a more specific format).
I'm using basically this instructions:
...
0
votes
0answers
301 views
bizarre matplotlib.pyplot.plot() with normalized data [closed]
I'm plotting some data with matplotlib that are of different scales. for instance:
x = [ 0.001, 0.005, 0.011 ]
y1 = [ 200000, 700000, 900000 ]
y2 = [ 20, 15, 5 ]
I'm normalizing and plotting the ...
1
vote
1answer
1k views
Pyplot - Label Plots
I am having a nightmare of a time trying to label data with pyplot.
I am currently plotting all of my data like this: plt.plot(data).
data is an array that has a column of total costs, and then ...
6
votes
2answers
2k views
Polar contour plot in Matplotlib
I have a set of data that I want to use to produce a contour plot in polar co-ordinates using Matplotlib.
My data is the following:
theta - 1D array of angle values
radius - 1D array of radius ...
5
votes
1answer
3k views
Matplotlib - Move X-Axis label downwards, but not X-Axis Ticks
Nb: You may need to open the PNGs below directly - Right Click on the image, then View Image (in FF), or Open image in new tab (Chrome). The image resize done by SO has rendered them nigh ...
16
votes
1answer
7k views
Matplotlib - label each bin
I'm currently using Matplotlib to create a histogram:
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as pyplot
...
fig = pyplot.figure()
ax = fig.add_subplot(1,1,1,)
n, bins, ...
0
votes
1answer
2k views
Matplotlib Xticklabels not working
1. X-ticklabels not working
I'm using Matplotlib to generate a histogram from some measurements:
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as pyplot
...
fig = pyplot.figure()
...
5
votes
2answers
950 views
Reading and graphing data read from huge files
We have pretty large files, the order of 1-1.5 GB combined (mostly log files) with raw data that is easily parseable to a csv, which is subsequently supposed to be graphed to generate a set of graph ...
2
votes
1answer
2k views
Python: mplot3d, graphing a solid
I'm trying to graph a wireframe solid of revolution. I'm following the example for a sphere here but I'm a bit at a loss. I've simplified everything down, but am now stuck on an error. I'm also ...
1
vote
1answer
3k views
Graphing in Python [duplicate]
Possible Duplicate:
What is the best plotting library for Python?
Is there any form of module in Python that will allow me to take mathematical equations for lines, arcs, and such, and ...
1
vote
2answers
3k views
problem plotting on logscale in matplotlib in python
I am trying to plot the following numbers on a log scale as a scatter plot in matplotlib. Both the quantities on the x and y axes have very different scales, and one of the variables has a huge ...
5
votes
2answers
2k views
Putting newline in matplotlib label with TeX in Python?
How can I add a newline to a plot's label (e.g. xlabel or ylabel) in Matplotlib? For example,
plt.bar([1, 2], [4, 5])
plt.xlabel("My x label")
plt.ylabel(r"My long label with $\Sigma_{C}$ math \n ...
2
votes
1answer
2k views
Setting `axes.linewidth` without changing the `rcParams` global dict
So, it seems one cannot do the following (it raises an error, since axes does not have a set_linewidth method):
axes_style = {'linewidth':5}
axes_rect = [0.1, 0.1, 0.9, 0.9]
axes(axes_rect, ...
2
votes
3answers
951 views
Generating a graph with multiple (sets of multiple sets of multiple) X-axis data sets
I am looking for a way to generate a graph with multiple sets of data on the X-axis, each of which is divided into multiple sets of multiple sets. I basically want to take this graph and place ...
36
votes
5answers
13k views
gnuplot vs Matplotlib
I've started on a project graphing Tomcat logs using gnuplot-py, specifically correlating particular requests with memory allocation and garbage collection. What is the
collective wisdom on ...
1
vote
6answers
2k views
Quick and dirty stripchart in python?
I have some python code that receives a message every so often containing a timestamp and an edge transition, either low-to-high, or high-to-low. I'd like to graph each transition on a stripchart for ...
3
votes
5answers
1k views
Are there any graph/plotting/anything-like-that libraries for Python 3.0?
As per the title. I am trying to create a simple scater plot, but haven't found any Python 3.0 libraries that can do it. Note, this isn't for a website, so the web ones are a bit useless.