开发者

MATLAB-like variable editor in Python [closed]

开发者 https://www.devze.com 2022-12-25 03:48 出处:网络
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.

We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts开发者_开发百科 and citations.

Closed 5 years ago.

Improve this question

Is there a data viewer in Python/IPython like the variable editor in MATLAB?


You should try spiderlib:

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

it's a dev environment a la matlab.


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())


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


Even Pycharm will be a good option if you are looking for MATLAB like editor.

0

精彩评论

暂无评论...
验证码 换一张
取 消