Tagged Questions
0
votes
1answer
21 views
How can I save my graph by using host_subplots with a different size?
I saw lots of examples explaining how to save plots in a different size, but none of them was using host_subplots. I would like to save the graph as it looks like when I maximize the window which the ...
0
votes
0answers
20 views
NLP with Python chap 1 .dispersion_plot returns nothing
I'm in the first chapter of Natural Language Processing with Python and am trying to run the example .dispersion_plot. I am using Python 2.7.4 (Anaconda) on Mac OSX 10.8.
When I load all of the ...
0
votes
0answers
39 views
Code Works in Canopy, but not in IDLE. Why?
I have Canopy installed with many packages for the python installation. When I run the code in Canopy it works fine, but when I open up my python downloaded separately from Canopy and run the code, it ...
0
votes
2answers
31 views
change figure size and figure format in matplotlib
I want to obtain fig1 exactly of 4 by 3 inch sized, and in tiff format correcting the program below:
import matplotlib.pyplot as plt
list1 = [3,4,5,6,9,12]
list2 = [8,12,14,15,17,20]
plt.plot(list1, ...
1
vote
1answer
32 views
Matplotlib - creating a filled 2d contour plot
I've calculated some values representing a potential as a function of x,y using relaxation method. And I want to display a contour plot with colors (not lines) but, the examples at matplotlib are all ...
0
votes
0answers
36 views
Use ListBox to operate on a dataset with selectable IDs
Another academic question. I have scripts for many types of plots, and wanted a customizable listbox method that I can call up and use to pass a selected ID from a specified dataset into any plotting ...
3
votes
1answer
75 views
Plot timeseries of histograms in Python
I'm trying to plot a time-series of histograms in Python. There has been a similar question about this, but in R. So, basically, I need the same thing, but I'm really bad in R. There are usually 48 ...
2
votes
1answer
55 views
matplotlib - How do you keep the axes constant while adding new data?
I'm using matplotlib to display data that is constantly being updated (changes roughly 10 times per second). I'm using a 3D scatter plot, and I would like the axes to be fixed to a specific range, ...
2
votes
1answer
47 views
Matplotlib - Grid always in front of ax-h/v-lines
Minimal working example of my code:
import matplotlib.pyplot as plt
import matplotlib.gridspec as gridspec
import numpy as np
from scipy.ndimage.filters import gaussian_filter
import numpy.random as ...
2
votes
1answer
27 views
Changing matshow xticklabel position from top to bottom of the figure
I'm using matshow() in matplotlib and the figures generated has the xticklabels on top by default. Is there a way to put the xticklabels on the bottom instead?
Appreciate any help with this.
/M
1
vote
1answer
19 views
How to choose which figure on which to display an image with matplotlib
I have a python script with multiple figures that I would like to update during a loop. Some will be images, and others will be line/scatter plots. I am having trouble getting the image to display on ...
1
vote
2answers
25 views
Select range of rows from record ndarray
I obtained a NumPy record ndarray from a CSV file using
data = matplotlib.mlab.csv2rec('./data.csv', delimiter=b',')
The data set is structured as:
date,a0,a1,a2,a3, b0, b1, b2, b3,[...], b9
...
1
vote
1answer
52 views
Variable point size in matplotlib
This is my code:
import numpy as np
import matplotlib.pyplot as plt
from os import getcwd
from os.path import join, realpath, dirname
mypath = realpath(join(getcwd(), dirname(__file__)))
myfile = ...
0
votes
1answer
36 views
Extracting subplot coordinates in Python
I am new to Python and I am actually trying to plot a figure over a subplot.
The difficult thing is that I need the axes property which is a string I can obtain by simply printing the subplot ...
0
votes
0answers
29 views
Program crash on navigation tool bar click - matplotlib - python
I have created a user interface based on the integration of pyqt and matplotlib. I have create a standalone .exe using pyinstaller 2.0 (using the command line in accordance to the program ...
0
votes
2answers
71 views
Marking data labels on outliers in 3D scatter plot
I have a tab separated dataset that looks like this
Labels t1 t2 t3
gene1 0.000000E+00 0.000000E+00 1.138501E-01
gene2 0.000000E+00 0.000000E+00 9.550272E-02
gene3 0.000000E+00 ...
0
votes
0answers
28 views
How to remove a certain contour collection from the contour plot?
A certain collection of a contour region needs to be eliminated. Suggest me a way to accomplish this ? I tried to program for the collections path to check for presence of every point in image but ...
1
vote
1answer
84 views
Error for my plot and calculation of FWHM
I found and copied this code to get the FWHM from Finding the full width half maximum of a peak (2nd to the last answer). My code below uses my own data. The plot generated looks wrong as my data ...
1
vote
1answer
96 views
Histogram in Python Using matplotlib
I am struggling with this really badly. There is something that I'm just not getting. I have a function, which I want to plot a histogram of a dictionary with the keys on the x-axis and the values on ...
1
vote
0answers
82 views
Matplotlib won't plot: dbus issue?
I have a rather strange scenario. I'm running on a very old installation, so I've compiled most of the tools I use.
First, this is a server. It is exclusively used by SSH-ing into it. But whoever ...
-1
votes
1answer
83 views
Matplotlib Concentration plot can not show up [Python 2.7 (with Eclipse) ]
I would like to ask for help.
Please for help me with my code in Python 2.7. I want plotting concentration of gas release.
Two weeks ago I started with Python, I did not see it before, I have basic ...
0
votes
0answers
38 views
Suggestions/ideas for data collection (software packages, resources) from the Twitter API [closed]
I am working on a social science project with the goal of mining data from the Twitter API for a social network analysis. I'm interested in feedback/suggestions for software/programming language ...
1
vote
2answers
75 views
Double event registered on mouse-click if legend is outside axes
I have to plot several data sets in one plot. It is useful to be able to highlight one or more of the plots in order to compare them. For this, I toggle the line style of the plot between ":" ...
0
votes
1answer
32 views
How to change shapes/colours for 3d points with matplot3d
Python and MatPlot3D newbie. I have a plot with which I would like display co-ordinates using different shapes and colours depending on some attributes. The data looks like this.
col1 col2 col3 ...
0
votes
0answers
52 views
Python 3D Surface plots from DataFrame data.
I'm having issues with what I'm sure is a relatively simple task:
I have 10yrs closing price of the first 10 3m Eurodollar contracts. Data in a pandas dataframe where the index is the date, the ...
1
vote
1answer
73 views
Changing values on x and y axis on a histogram
I want to plot a histogram, how many scrabble words with 2, 3, 4, 5, 6 or 7 chars are found in a dictionary over x trials with a random hand.
The histogram should have the following values on the x ...
0
votes
1answer
34 views
Python >> matplotlib: Get the number of lines on a current plot?
Is there a way to get the number of lines currently on a matplotlib plot? I find myself setting colors in a colormap using a counter and multiplier to step through the color values--which seems rather ...
1
vote
1answer
92 views
Python Error: Threaded Matplotlib (Pyplot) Plotting - x and y do not have same first dimension
This is part of a multi-threaded python script (threading.thread) with data transfer via queues that has an error when trying to plot the data gathered using pyplot in matplotlib.
This entire script ...
3
votes
3answers
130 views
use of // in python
I am new in python programming. I have come to piece of program in which
if (pos.x//1,pos.y//1) not in self.cleaned:
self.cleaned.append((pos.x//1,pos.y//1))
is used. It might be silly of me. ...
1
vote
0answers
46 views
Change the text of the offset in a matplotlib plot
I want to change the text of the offset in matplotlib. I made a plot:
x = linspace(0, 11, 1000)
plot(x,2000*(1-exp(-x))+randn(1000))
axis((10.3, 11, 1996.9, 2002.9))
Than the offset is written in ...
0
votes
2answers
217 views
Drawing Arrow in (x,y) coordinate in Python
I have encountered some problem while I was drawing a direction of arrow. I have point (x,y) coordinates and angle of them. What I want to do is that to draw arrow according to the given angle (just ...
3
votes
1answer
85 views
In the saved pdf plots of matplotlib some characters are in lower position
If I save a figure with matplotlib, sometimes some of the characters, like endash, ű énd ő, are in a lower position than the others. Not just in the legend, but in labels and title as well. I tried it ...
0
votes
1answer
55 views
plot data points in python using pylab
I have data which I have to plot
X = [0,1,2,3,4,5]
Y = [6,7,8,9,10,11,12,13,14,15]
X belongs to class1, so I would want them to be plotted green in color and Y belongs to class2, so I would want ...
3
votes
2answers
203 views
Matplotlib fails to install on Mac OS 10.8.2 using Python 2.7.3
I've installed numpy and when I go to install Matplotlib it fails. Regardless of the method I use to install it. Below are the errors I receive.
gcc-4.2 -fno-strict-aliasing -fno-common -dynamic ...
2
votes
1answer
62 views
How do I adjust bottom of bar chart created with Pandas
I have created a bar chart using the
grouped.plot(kind='bar')
method in Pandas. However the vertical x labels get cut off. when I try to change the bottom variable by saying
...
0
votes
0answers
145 views
Python solution to transforming polar stereographic data to mercator projection
I've data in polar stereographic projection and the lat and lon values as well. But I cannot seem to find a simple way to transform this to a mercator (regular square lat and lon) projection in ...
1
vote
2answers
190 views
Conversion of unicode minus sign ( from matplotlib ticklabels )
I'm having a problem with the Text object that matplotlib use to represent the ticklabels.
For testing reason I need to check the value of the ticks labels that are created in a plot. If the label is ...
0
votes
2answers
369 views
Plot an IPython Notebook figure inline with fig.show()?
I'm calling the inline mode for IPython Notebook using;
%pylab inline
And the following code plots a figure immediately at the cell;
fig = plt.figure()
axes = fig.add_axes([0, 0, 1, 1])
However ...
2
votes
3answers
184 views
Functions in Python 2.7 vs 3.x
I'm new to Python. I've been trying to familiarize myself with Numpy, Scipy, and Matplotlib, as I have a background in the sciences, and hope to make myself a more competitive candidate for work in ...
1
vote
1answer
143 views
Matplotlib Slider Widget and changing colorbar threshold
I am currently trying to work on a program that will allow the user to display their dataset in the form of a colormap and through the use of sliders, it will also allow the user to adjust the ...
1
vote
1answer
90 views
Plot date and time (x axis) versus a value (y axis) using data from file
I have data in a file (.dat) in the format of
%dd %mm %yyyy %HH %MM %SS value
separated by spaces. I would like to plot the day, month, year and time on the x-axis, and the value on the y-axis. ...
1
vote
1answer
68 views
Annotating a Figure using String with Strange Symbols
This should be something very simple to do, but I can't seem to find an answer in the forum anywhere. Here's the basic problem:
I have a set of CSV files of the form:
"X,Temp °C\n1,25\n..."
Note ...
0
votes
0answers
109 views
matplotlib installation on Mac OS X 10.7.5 : ImportError: No module named _fileio
I've downloaded matplotlib-1.2.0 that should work with python 2.7. I got this python pre-installed with my OS X and by itself it works correctly. Unfortunately while importing matplotlib I'm getting ...
0
votes
1answer
150 views
Matplotlib bar chart in a wx Frame instead of a new window
I have a simple wxFrame and two panels in it. i want one of the panels to show a matplotlib bar chart. I learnt to use the chart, but the show() function that I use gives me the chart in a new window.
...
1
vote
1answer
109 views
Networkx: Overlapping edges when visualizing MultiGraph
The following multigraph plots correctly (i.e. parallel edges do not overlap) using graphviz neato to generate a png (as shown in this answer)
import networkx as nx
nx.MultiGraph ...
0
votes
0answers
171 views
Problems with Non-linear fit using SciPy curve_fit function
I am trying to fit data using scipy.optimize.curve_fit, but I keep getting a straight line (or nearly a straight line) for my fit. I am not sure if adding a guess would help (or how to go about doing ...
0
votes
1answer
40 views
Plotting from a created list
consider the code:
a = [1, 2, 3, 4]
for i in range(len(a)):
for j in range(i+1, len(a)):
dd21 = (a[i]-a[j])
j = j + 1
if i != j and dd21 !=0:
print i, j, dd21
...
1
vote
0answers
84 views
How to Increase Matplotlib Basemap Size?
How can I increase the size of the basemap? It is small compared to the size of the accompanying color bar. My basemap includes the geographic locations that I want, it is just physically too small. ...
0
votes
1answer
983 views
RuntimeWarning: invalid value encountered in divide
I have to make a program using Euler's method for the "ball in a spring" model
from pylab import*
from math import*
m=0.1
Lo=1
tt=30
k=200
t=20
g=9.81
dt=0.01
n=int((ceil(t/dt)))
km=k/m
...
1
vote
2answers
128 views
Calculating and Plotting the Average of every (X) items in a list of (Y) total
I have searched, and searched (for 4 days) before posting this. I apologize in advance if it is too elementary, and a waste of your time. I have successfully generated some basic plots using pyplot, ...


