robdmc / pandashells

:panda_face: Bringing the python data stack to the shell prompt
Other
788 stars 26 forks source link

Add support for tab-delimited data #28

Closed vellamike closed 9 years ago

vellamike commented 9 years ago

It would be useful to have the ability to work with tab-delimited data (or indeed, select any delimiter).

robdmc commented 9 years ago

Tab delimited data is supported (i.e. white-space delimited). If this is the type of data you mostly deal with, you can set it to be the default using the p.config tool

cat my_tab_file.txt | p.df -i table

vellamike commented 9 years ago

that's great, thanks!