I'm trying to import data (csv type) with Spyder (it has an Import Data option-green arrow, do you know what is this command by default?) and I get this error: 'NoneType' object has no attribute 'send'
Also, I have tried with numpy.genfromtxt("file.csv", delimiter = ',') and numpy.loadtxt("file.csv", delimiter = ',') but don't work. I am working with Python 3.2.3 and I use numpy and scipy (imported before execute the previuos commands).
Example of my datafile:
TIMESTAMP,TIMESTAMP,TIMESTAMP,TIMESTAMP,RECORD,Net_Shortwave_Avg (Wm-2),Net_Longwave_Avg(Wm-2),Net_Rad_Avg(Wm-2 )
12/21/2012 11:00:00,1100,12,11,0,556.0623,-131.1266,424.9357
12/21/2012 11:01:00,1101,12,11,1,564.877,-132.1396,432.7373
NoneTypeobject?