add a data-import magic
Bug #420099 reported by
Timmie
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
IPython |
Confirmed
|
Wishlist
|
Unassigned |
Bug Description
Implement a data import tool that helps users to quickly load data sets from files into the desired python object.
Thinking of something like R-Commander for R-Project:
http://
For instance, IPython could have a magic:
%fileimport
This could open a dialog to select any file that can be read in with numpy,
scipy tools or any other library imported before which have IO or beyond capabilities: timeseries, hdf, pytables
This could be convenient for interactive data analysis and for quick checking.
Changed in ipython: | |
importance: | Undecided → Wishlist |
status: | New → Confirmed |
To post a comment you must log in.
This is easy enough to add as an extension. Check out
http:// ipython. scipy.org/ doc/stable/ html/interactiv e/extension_ api.html# defining- new-magic- commands
I don't think that feature belongs in the core though (because what it does is not well defined).