1
vote
0answers
30 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
68 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 ...
1
vote
0answers
73 views

Selective patterns with Matplotlib imshow without using patches

Is there a way to place patterns into selected areas on an imshow graph? To be precise, I need to make it so that, in addition to the numerical-data-carrying colored squares, I also have different ...
1
vote
1answer
163 views

Selective patterns with Matplotlib imshow

Is there a way to place custom patterns into selected areas on an imshow graph? To be precise, I need to make it so that, in addition to the numerical-data-carrying colored squares, I also have ...
2
votes
1answer
117 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 = ...
0
votes
2answers
389 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
115 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 ...
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
570 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
2answers
470 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() ...
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 ...
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
950 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 ...