HACKER Q&A
📣 LifeIsBio

Command line tool like Pandas?


I'm looking for recommendations for a tool for quickly processing columnar data from the command line. The reason that I mention pandas is because that's the tool I'm currently most familiar with. It'd be nice to avoid learning a lot of new syntax (e.g. picking up awk). There are a lot of scenarios where Pandas isn't optimal, and I'd like to also learn another cli data processor. Any suggestions?


  👤 eigenvalue Accepted Answer ✓

👤 jki275
%python

>>> import pandas as pd

>>> pd.{whatever pandas functions you want}