0
votes
1answer
31 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
17 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
48 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
25 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
62 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
79 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
56 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
62 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
29 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
61 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
27 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
37 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 ...
0
votes
1answer
50 views

solved Changing values on x and y axis on a histogram

Update 2013/04/23 13:52 solved with pylab.bar() 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 ...
0
votes
1answer
33 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
70 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
37 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
161 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
74 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
43 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
160 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
56 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
135 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
159 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
224 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
167 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
107 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 ...
0
votes
0answers
61 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 on the x axis the day month year time and on the y axis the value, always ...
1
vote
1answer
58 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
106 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
122 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. ...
0
votes
1answer
101 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
160 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
37 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
80 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
666 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
117 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, ...
1
vote
0answers
97 views

Matplotlib legend error under Ubuntu (but not on windows vista)

I have a python program using matplotlib which runs nicely under windows vista but under Ubuntu I get the following error: Traceback (most recent call last): File "Main.py", line 175, in my_measure ...
0
votes
1answer
75 views

how to import .txt contents into a line of code in python 2.7

I'm a Python newb, I tried searching if there were other similar questions but it doesn't seem that there are. I'm really hoping my question isn't ridiculous, and why I didn't find others. I have ...
1
vote
2answers
347 views

plot trajectories on an map using basemap

import numpy as np data = np.loadtxt('path-tracks.csv',dtype=np.str,delimiter=',',skiprows=1) print data [['19.70' '-95.20' '2/5/04 6:45 AM' '1' '-38' 'CCM'] ['19.70' '-94.70' '2/5/04 7:45 AM' '1' ...
1
vote
1answer
63 views

python plot doesn't display a window on ubuntu [duplicate]

When I run this simple code: import matplotlib.pyplot as plt plt.plot([1,2,3,4]) plt.ylabel('some numbers') plt.show() I don't get any window. I tried to save it into file and it works, but I want ...
1
vote
0answers
126 views

Riemann Sum Optimization [closed]

At the moment, I am taking a calculus course at my high school (we are starting to learn about integrals) and thought of an interesting problem while learning about Riemann Sums. One of the challenges ...
2
votes
1answer
35 views

highlight single contour line

I'm making a simple contour plot and I want to highlight the zero line by making it thicker and changing the color. cs = ax1.contour(x,y,obscc) ax1.clabel(cs,inline=1,fontsize=8,fmt='%3.1f') How do ...
1
vote
0answers
104 views

Saving the matplotlib 3d rotating plots

Hi does anyone know if there is a way of saving the matplotlib 3d rotating plots in a format which allows them to be still rotated? Perhaps a particular program? Code is: from numpy import * import ...
-2
votes
1answer
134 views

Better Ideas for a plot [closed]

I'm using matplotlib to plot a graph of the temprature in the past 30 minuts, reading the temperature and time stored in a sqlite database in the format: time 1305 temp 26, and I'm using the code ...
2
votes
2answers
2k views

How / Where to download Pylab for Python 2.7 on Win32?

I have googled all over, and don't see where to get pylab. What am I missing? Thanks!
5
votes
1answer
840 views

Why do I get “UserWarning: Module dap was already imported from None …”

I have python-matplotlib and python-mpltoolkits.basemap installed from Ubuntu packages. Installing python-mpltoolkits.basemap also installs python-dap as a dependency. When I import basemap, I get ...
1
vote
1answer
46 views

Django: UnboundLocalError while making database query

I am trying to do a matplotlib bar chart on django. The data that will be used, will be queried from my database. I came across this error when I run my code: UnboundLocalError at /graph.png ...
1
vote
0answers
128 views

Scipy - Cookbook - Plotting Images with Special Values - Won't work

I am trying to run an example from the Scipy Cook Book and cannot get it to run. I am using python 2.7 (Numpy version 1.6.2, Matplotlib 1.1.1) The code is located at ...
0
votes
1answer
267 views

matplotlib plots in Cylindrical and Spherical coordinate systems

For example, if I wanted to create polar coordinates plot I could use this code: self.axes = self.figure.add_subplot(111, projection='polar') But I did not find any 'Cylindrical' or 'Spherical' ...

1 2