Tagged Questions
1
vote
0answers
29 views
Ploting a spectrogram of a pure sinus with matplotlib
I'm trying to get a spectogram plot of a pure sine function. Together with that i want to show a plot of the fft of that whole signal. I'm expecting the peaks to be on the same frequency since were ...
6
votes
1answer
184 views
using arctan / arctan2 to plot a from 0 to 2π
I am trying to replicate a plot in Orbital Mechanics by Curtis but I just can't quite get it. However, I have made head way by switching to np.arctan2 from np.arctan.
Maybe I am implementing arctan2 ...
-1
votes
1answer
85 views
Match filtering in Python
I'm trying to do a simple match filtering operation on a data set in python (so I tried doing conjugation followed by convolution). However, an error message is showing in the convolution function ...
1
vote
1answer
82 views
plotting multiple plots but whith offset ranges python [closed]
I would like to plot a function of e and nu where e is the eccentricity and nu the true anomaly. I am only looking at elliptical orbits so 0<e<1. However, when I try to plot them against each ...
2
votes
1answer
41 views
How do I manipulate multiple x-axes to correspond to each other, while on different scales?
I am trying to make a color magnitude diagram similar to:
I have three arrays that contain the exact same number of values.
x1 = B-V (-.5 to 2)
x2 = Temperature. (30,000 to 3000) and needs to be ...
0
votes
1answer
26 views
OS X 10.7 + Python 3.3 + numpy + matplotlib
I have been trying to get Matplotlib running in 3.3 with no luck.
I downloaded the latest github repos for matplotlib, which depends on numpy.
For numpy I did 'python3 setup.py build ...
-1
votes
1answer
35 views
Install exe errors Scipy, MatPlotLib etc [closed]
I am trying to install some Python packages like matplotlib and scipy on my computer in Windows.
I installed Python 3.3 the default way.
It's located at C:/Python33
But some exe's say Python ...
0
votes
1answer
31 views
TypeError when using Matplotlib's strpdate2num with Python 3.2
In my current project I want to read some experimental data from a text file into Python using the following code:
import numpy as np
from matplotlib.dates import strpdate2num
data = ...
0
votes
1answer
41 views
Colorplot of 2D array matplotlib
So, I thought this was going to be really simple, but I've been having a lot of difficult finding exactly what I'm looking for in a comprehensible example.
Basically I want to make phase plots, so ...
1
vote
1answer
62 views
Plotting log-binned network degree distributions
I have often encountered and made long-tailed degree distributions/histograms from complex networks like the figures below. They make the heavy end of these tails, well, very heavy and crowded from ...
1
vote
1answer
49 views
pylab plot showing asymptotes
How can I remove the asymptote?
import numpy as np
e = 1.26
beta = .705 * np.pi
rph = 7000
re = 6378
def r(nuh):
return rph * (1 + e) / (1 + e * np.cos(nuh + beta))
theta = ...
0
votes
2answers
42 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 ...
1
vote
1answer
28 views
Offset a mask within a larger array
I've got two numpy arrays: data, and a mask. The mask and the data are not the same size, so I imagine them like a canvas and a stamp. How can I stamp my canvas at different locations?
import numpy ...
1
vote
1answer
55 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
2answers
33 views
How are non integer images represented?
Intro
To the computer, digital grayscale images are represented as integer matrices where the maximim number (which is dependent on the integer precision) represents black an 0 is white.
Here is a ...
2
votes
1answer
64 views
Plot numpy rec array with date
I read pickled numpy array with this structure:
>>> h.shape
(256,)
>>> h[:10]
rec.array([(datetime.date(2011, 1, 2), 1, -3, 1014),
(datetime.date(2011, 1, 3), 3, -6, 1016),
...
1
vote
1answer
77 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 ...
0
votes
0answers
32 views
efficiently visualising irregularly spaced columns of data using numpy, griddata and imshow
I have a numpy array of
dtype=[('offset', '<i8'), ('data', '<f8', (2000,))]
the offset terms can be in any order and terms can be repeated.
I would like to regularlise the data for ...
1
vote
1answer
47 views
Drawing from certain probabilities in Gaussian Normal Multivariate Distribution in numpy
I have the code and picture of the output listed below but I want to take random samples from these spheres within the specific standard deviations that have been plotted. The variable sdwith is used ...
2
votes
3answers
122 views
Create closed polygon from boundary points
I have an array of longitude-latitude points that defines the boundaries of an area. I would like to create a polygon based on these points and plot the polygon on a map and fill it. Currently, my ...
3
votes
1answer
55 views
Matplotlib - Wrong normals on 3D bars plot
PROBLEM
When using matplotlib and plotting 3d bars on a chart I got wrong normals values on some bar faces.
EXAMPLE
When I plot a high density bins graph, with 240 bars, I get this result:
...
3
votes
1answer
71 views
Matplotlib, avoiding unwanted triangles in plot_trisurf()
I have the following code to create a cone for which a displacement field will be applied later on. In the figure shown below you can see that some big triangles are drawn at the top, but not at the ...
1
vote
1answer
71 views
Editing Python plot surface ticks and their frequency
Gist of my question:
I have data that I am plot_surface-ing with python. How should I change the values of my xticks and yticks and perhaps their frequency?
Details of my question
I have data such ...
1
vote
1answer
56 views
Is there a better function for finding edges on a list of common nodes?
I have a list of nodes and each node has measured the wifi field strength from other points. The list will be in the form:
RSSI_list = [[node4, node3, RSSI], [node7, node5, RSSI]] #etc (it will be ...
7
votes
2answers
93 views
Stop pyplot.contour from drawing a contour along a discontinuity
I have a 2d map of a coordinate transform. The data at each point is the aximuthal angle in the original coordinate system, which goes from 0 to 360. I'm trying to use pyplot.contour to plot lines of ...
1
vote
1answer
41 views
How can I change the aspect ratio of the x and y axis of my 3D plot in matplotlib?
I have the following plotted X, Y and Z on the following plot:
fig = plt.figure(figsize=plt.figaspect(0.5))
ax = fig.add_subplot(1, 2, 1, projection='3d')
surf = ax.plot_surface(xig, yig, ...
0
votes
1answer
35 views
How to remove extreme values from matplotlib plot when std() does not work
I have a problem with plotting in matplotlib, but the question may be more about handling numpy arrays than about the plotting itself - a solution in matplotlib would perhaps be more desirable!
The ...
1
vote
3answers
198 views
Issues with importing pylab on Mac OS X 10.8.3
I get the following error when I import pylab:
Python 2.7.2 (default, Oct 11 2012, 20:14:37)
[GCC 4.2.1 Compatible Apple Clang 4.0 (tags/Apple/clang-418.0.60)] on darwin
Type "help", "copyright", ...
2
votes
1answer
58 views
2D plot using 1D arrays without griddata()
I am trying to plot the function of two variables using matplotlib. The function is stored in three 1d arrays X, Y and F corresponding to x-coordinate, y-coordinate and the value of the function. Is ...
3
votes
1answer
52 views
how to interpolate points in a specific interval on a plot formed by loading a txt file in to scipy program?
I have a text file with two columns, x and y. I have plotted them using the below program in scipy as shown below.
import matplotlib.pyplot as plt
with open("data.txt") as f:
data = f.read()
...
1
vote
4answers
108 views
Plotting all data files in a directory
I am trying to plot all my data files in a directory in python and then saving the resulting the plots. I am not trying to write efficient python code (unfortunately): just interested in plotting data ...
3
votes
1answer
114 views
plotting orbital trajectories in python
How can I setup the three body problem in python? How to I define the function to solve the ODEs?
The three equations are
x'' = -mu / np.sqrt(x ** 2 + y ** 2 + z ** 2) * x,
y'' = -mu / np.sqrt(x ** ...
3
votes
1answer
83 views
3D Polar Plot - griddata doesn't allow cubic interpolation, only linear which results in an “unsmooth” plot
I am plotting a 3D polar plot of field strength around an antenna. A sample of the data looks like this:
0.5 0 -22
0.5 0 -21
0.5 0 -22
0.5 0 -21
0.5 0 -22
0.5 0 -22
0.5 0 -22
0.5 0 ...
3
votes
3answers
128 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
1answer
53 views
Using a condition to plot with matplotlib
I have a 2-D array and I need to plot columns x and y but only within a certain range of x.
I know how to plot using the index but I need to specify the value of x. I have a few of those arrays so I ...
1
vote
1answer
63 views
Interactive plotting with Python via command line
I am trying to use Python and the numpy and matplotlib libraries to do some data analysis and plotting and view my plots, adjust my code accordingly etc. So I need to be able to examine the plot. ...
1
vote
2answers
134 views
Python Pylab pcolor options for publication quality plots
I am trying to make DFT (discrete fourier transforms) plots using pcolor in python. I have previously been using Mathematica 8.0 to do this but I find that the colorbar in mathematica 8.0 has bad ...
2
votes
2answers
76 views
Formatting a txt file of equations into the same format and then manipulating them for linear algebra calculations in Python
I'm looking for an universal way of transforming equations in Python 3.2. I've only recently begun playing around with it and stumbled upon some of my old MATLAB homework. I'm able to calculate this ...
0
votes
1answer
141 views
Python error - ValueError: need more than 1 value to unpack
I am trying to make face recognition by Principal component analysis (PCA) using python (matplotlib). I am trying to do it as described in this image:
Here is my code:
import os
from PIL import ...
2
votes
1answer
70 views
How to create a dynamic title in a Matplotlib animation
I'm trying to create a Matplotlib animation where the title changes with each frame. Here's what I have so far (pretty much blindly copy/pasted from matplotlib.org); A contains the data I'm plotting ...
0
votes
0answers
57 views
How to plot PCA results and kmedoids results in Python?
I have faced two questions about the plot problems in Python (how to plot the principal component analysis results and how to plot the kmedoids results ).
The first one is how to plot the PCA ...
1
vote
1answer
94 views
Python - Principal component analysis (PCA) error
I am trying to make Principal component analysis (PCA) using python. Here is my code:
import os
from PIL import Image
import numpy as np
import glob
from matplotlib.mlab import PCA
#Step1: put ...
1
vote
1answer
73 views
plot single row of 2d numpy array against 1d list
I would like to plot a single row from a 2-dimensional numpy array against a 1d list in python. For example, I would like to plot using matplotlib row 'i' as below
|0 0 0 0 0|
|1 1 1 1 1|
i |2 ...
3
votes
1answer
121 views
Making pyplot.hist() first and last bins include outliers
pyplot.hist() documentation specifies that when setting a range for a histogram "lower and upper outliers are ignored".
Is it possible to make the first and last bins of a histogram include all ...
6
votes
2answers
89 views
Matplotlib: Change math font size
I am making some plots with matplotlib, and I've come across a problem with the TeX rendering. It seems that the mathtext x-height is is a bit smaller than the normal Bitstream Vera Sans. See the ...
1
vote
2answers
86 views
Sympy: generate figure with multiple subplots
I'm using sympy and matplotlib, and wish to generate a figure with multiple plots, similarly to how it's done using pylab.subplot when using numpy. This should be trivial, or so I thought...
To my ...
2
votes
1answer
60 views
Make a scrollbar on Tkinter
I need a scrollbar to roll under the elements, see that when create more than 30 elements from first window the screen dont fill in correct mode:
import numpy as np
import matplotlib.pyplot as plt
...
3
votes
1answer
92 views
Numpy Array Slicing using a polygon in Matplotlib
This seems like a fairly straightforward problem, but I'm new to Python and I'm struggling to resolve it. I've got a scatter plot / heatmap generated from two numpy arrays (about 25,000 pieces of ...
7
votes
2answers
1k views
Draw polygons more efficiently with matplotlib
I have a dateset of around 60000 shapes (with lat/lon coordinates of each corner) which I want to draw on a map using matplotlib and basemap.
This is the way I am doing it at the moment:
for ii in ...
1
vote
2answers
475 views
graphing a relationship matrix in python
i have a python interface using wxpython which allows the user to fill in a matrix (0/1) and then graphs it for them. The program creates a numpy matrix, then makes a networkx graph out of that ...

