Tools for interfacing with the NASA Exoplanet Archive using Pandas
- Install:
conda install six pandas pytables; python setup.py install
- Set the data directory:
export EXOARCH_DATA_DIR=~/exoarch
(optional) - Use:
import exoarch
kois = exoarch.KOICatalog().df
subset = kois[(kois.koi_period > 200) & (kois.koi_slogg > 4)]
The column definitions are here.