Hello,

I am running the following basic code in Spyder with no problems:
<code>
 
import pandas

import numpy

import Quandl



df = 
pandas.read_csv('http://www.quandl.com/api/v1/datasets/OFDP/FUTURE_VX1.csv?&trim_start=2004-05-03&trim_end=2014-01-31&sort_order=desc',
 
index_col=False, header=0);

data = Quandl.get("GOOG/NYSE_IBM",collapse="weekly")

 print 'abc'

</code>


I would like to be able to see my "data" or "df" variable, poke around, and 
see the different parts of the data structure. Similar to a "watch window" 
for netbeans. How would I do this?


Print is obviously doing nothing only helping me confirm that I am reaching 
the end of my script (I am).

-- 
You received this message because you are subscribed to the Google Groups 
"spyder" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/spyderlib.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to