I have 8823 data points with x,y coordinates. I'm trying to follow the answer on how to get a scatter dataset to be represented as a heatmap but when I go through the
X, Y = np.meshgrid(x, y)
instruction with my data arrays I get MemoryError. I am new to numpy and matplotlib and am essentially trying to run this by adapting the examples I can find.
Here's how I built my arrays from a file that has them stored:
XY_File = open ('XY_Output.txt', 'r')
XY = XY_File.readlines()
XY_File.close()
Xf=[]
Yf=[]
for line in XY:
Xf.append(float(line.split('\t')[0]))
Yf.append(float(line.split('\t')[1]))
x=array(Xf)
y=array(Yf)
Is there a problem with my arrays? This same code worked when put into this example but I'm not too sure.
Why am I getting this MemoryError and how can I fix this?
with open('XY_Output.txt', 'r') as f: for line in f:. Thewithensures the file gets closed no matter what and looping over the file keeps it from being read into memory at once. (This isn't the memory problem here, but it's still needless.) – Mike Graham Mar 17 '10 at 8:28from __future__ import with_statementat the top. But you can still improve the code by moving the readlines statement tofor line in XY_File.readlines()and putting the close at the end. – Andrew Jaffe Mar 17 '10 at 9:40