Tagged Questions
2
votes
1answer
40 views
Parallelism in (I)Python with large blocks of data
I've been toiling with threads and processes for a while now to try to speed up my very parallel job in IPython. I'm not sure how much detail about the function I'm calling is useful, so here's a bash ...
4
votes
1answer
112 views
Releasing memory of huge numpy array in IPython
UPDATE:- This problem solved itself after a machine reboot. Not yet able to figure out why this error was happening before.
I have a function that loads a huge numpy array (~ 980MB) and returns it.
...
0
votes
1answer
83 views
find the distance between a point and a curve python
How can I find the closet distance between my trajectory and (384400,0,0)?
Also, how can I the distance from (384400,0,0) to the path at time t = 197465?
I understand that the arrays have the data ...
2
votes
1answer
46 views
scipy.sparse __add__ method being called when adding to a regular numpy ndarray?
I'm calculating the dot product between a scipy.sparse matrix (CSC) and a numpy ndarray vector:
>>> print type(np_vector), np_vector.shape
<type 'numpy.ndarray'> (200,)
>>> ...
1
vote
1answer
39 views
maximum of a function on a specified domain in iPython
I am trying to find the maximum of the following function for 1 < R < 20. How can I implement this into the code?
The solution is supposed to be R is approx 15.5 or so.
#!/usr/bin/env python
...
4
votes
1answer
204 views
running python on vim
Over on askubuntu.com I was told how to run python on Vim. I am testing the set up which works with the code 1st or 2nd code python code at using python to solve a non linear equation.
The only ...
1
vote
0answers
55 views
iPython (or Numpy) Malloc Error
I have Mac OS X 10.6.8 and Python 2.7
I recently updated a number of Python packages, including NumPy, SciPy, and iPython. After doing so, I discovered that if I tried to open the iPython HTML ...
7
votes
3answers
839 views
How to use pandas dataframes and numpy arrays in Rpy2?
I'd like to use pandas for all my analysis along with numpy but use Rpy2 for plotting my data. I want to do all analyses using pandas dataframes and then use full plotting of R via rpy2 to plot these. ...
2
votes
2answers
286 views
numpy.genfromtxt with datetime.strptime converter
I have data similar to that seen in this gist and I am trying to extract the data with numpy. I am rather new to python so I tried to do so with the following code
import numpy as np
from datetime ...
2
votes
1answer
128 views
Network Plot Error Using Python / iPython
The following starter code errors out (AttributeError: incompatible shape for a non-contiguous array) when I try to use networkx on OSX 10.8.2, in an IPython notebook.
import networkx as nx
g = ...
1
vote
0answers
125 views
Importing numpy on network drive in ipython fails
Today I got a weird error. I tried to import numpy in ipython on a network drive under windows 7 and it failed with the following error.
In [1]: import numpy
...
1
vote
1answer
71 views
matplotlib not generating PS output
I have installed matplotlib and using ipython
I have changes the backend to "PS" because the other backends werenot working
Now when I do
In [1]: plot([1,2,3],[4,5,6])
Out[1]: ...
0
votes
2answers
193 views
.EXE installer crashes when installing Python modules: IPython, Pandas and Matplotlib
I recently installed Numpy with ease using the exe installer for Python 2.7. However, when I attempted to install IPython, Pandas or Matplotlib using the exe file, I consistently get a variant of the ...
1
vote
1answer
432 views
Interactively Display graphs in matplotlib in python
For the life of me, I can not get matplotlib to display graphs in ipython inactively.
I've tried two approaches - each time, I get the same results:
In [10]: plot([1,2,3])
Out[10]: ...
0
votes
1answer
401 views
Installing a Cygwin compiled Python module in my Windows installation
I'm trying to compile and use the PyGRIB module. There is no binary distribution of the module, so I have compiled using Cygwin. I would really like to be able to use the module in my windows python ...
1
vote
1answer
147 views
How to link a python data structure into matplotlib? Such as a dict -> bar chart
I have a colleague who showed me his work environment in some other language. He had the ability to create an empty dict-like object and pass a pointer to this object to some other charting library. ...
3
votes
1answer
595 views
numpy/scipy/ipython:Failed to interpret file as a pickle
I have the file in following format:
0,0.104553357966
1,0.213014562052
2,0.280656379048
3,0.0654249076288
4,0.312223429689
5,0.0959008911106
6,0.114207780917
7,0.105294501195
8,0.0900673766572
...
1
vote
1answer
315 views
Matplotlib updating axis
I'm looking for method that will allow me to update axis when my script is running but, I couldn't find it. For example:
import matplotlib.pyplot as plt
x = (1,2)
y = (1,2)
plt.plot(x,y, 'r-')
...
4
votes
1answer
1k views
Ipython / pylab / matplotlib plotting error
I've installed Enthought's EPD (64 bit for Windows 7).
I'm trying to plot historical stock quote data using Yahoo's API. All the code I'm trying to use is on this blog post:
...
1
vote
1answer
261 views
error in matplotlib library in python while using csv2rec
I am working in Ipython, trying to load a csv file.
from matplotlib import *
data=matplotlib.mlab.csv2rec('helix.csv',delimiter='\t')
Here is the error message
IOError ...
2
votes
1answer
260 views
Numpy/IPython equivalent to Matlab's assignin
I'm in the process of moving some of our internal data visualization/analysis tools from Matlab to IPython/Numpy/Scipy/PyLab. The tools I refer to are Matlab GUIs which do only simple kinds of ...
2
votes
1answer
701 views
Unable to load DLL python module in PyCharm. Works fine in IPython
When I use the IPython included with Enthought Python Distribution, I can import the pyvision package just fine. However, when I try to import pyvision inside of PyCharm 1.2.1, I get the following ...
2
votes
1answer
108 views
numpy: query a data from masked record?
I have mask record like this
In [41]: x
Out[41]:
masked_records(
CHR : [12 12 12 ..., 12 12 12]
SNP : [rs4980929 rs4980929 rs4980929 ..., rs7975069 rs7975069 rs7975069]
A1 : [C C ...
36
votes
4answers
10k views
Reloading submodules in Ipython
Currently I am working on a python project that contains sub modules and uses numpy/scipy. Ipython is used as interactive console. Unfortunately I am not very happy with workflow that I am using right ...
2
votes
6answers
1k views
What is the best way to install python 2 on OS X?
A colleague of mine wants to use my python 2 code on his OS X (10.6) machine. My code imports several built-in python packages, including Tkinter and shelve, and also uses third-party packages, ...
1
vote
0answers
523 views
Is there a way to change IPython's (numpy) line-wrapping? [duplicate]
Possible Duplicate:
Write lines longer than 80 chars in output file [Python]
I'm trying to print matrices on the command-line that contain big values and the 80-char fixed column width is ...
1
vote
5answers
113 views
How to detect if the values in array are in a certain range and return a binary array in Python?
So I am trying to detect if the values in an array is in a certain range and then return a binary logical array i.e. one for true and zero for false. I have this but iPython keeps complaining
D = ( 1 ...
3
votes
3answers
676 views
matlab-like variable editor in python
is there a data viewer in python/ipython like the variable editor in MATLAB?
2
votes
3answers
373 views
How do I make set_printoptions(suppress=True) permanent?
In numpy there is a function that makes arrays print prettier.
set_printoptions(suppress = True)
In other words, instead of this:
array([[ 0.00000000e+00, -3.55271368e-16, 0.00000000e+00,
...

