views:

182

answers:

3

is there a data viewer in python/ipython like the variable editor in MATLAB?

A: 

No, because python is not an integrated environment, but "only" a programming language. You can use locals or globals to give the defined variables. You can filter them with something like this:

filter(lambda x: not x.startswith("__"), locals())
wiso
+4  A: 

You should try spiderlib:

http://code.google.com/p/spyderlib/

it's a dev environment a la matlab.

Martin Laprise
++ for spyderlib
Eli Bendersky
A: 

in ipython, ipipe.igrid() can be used to view tabular data.

ahala