ApJdataFrames
Malo et al. 2014Title
: BANYAN. III. Radial velocity, Rotation and X-ray emission of low-mass star candidates in nearby young kinematic groups
Authors
: Malo L., Artigau E., Doyon R., Lafreniere D., Albert L., Gagne J.
Data is from this paper:
http://iopscience.iop.org/article/10.1088/0004-637X/722/1/311/
In [1]:
import warnings
warnings.filterwarnings("ignore")
In [2]:
from astropy.io import ascii
In [3]:
import pandas as pd
In [8]:
#! mkdir ../data/Malo2014
#! wget http://iopscience.iop.org/0004-637X/788/1/81/suppdata/apj494919t7_mrt.txt
In [9]:
! head ../data/Malo2014/apj494919t7_mrt.txt
In [10]:
from astropy.table import Table, Column
In [11]:
t1 = Table.read("../data/Malo2014/apj494919t7_mrt.txt", format='ascii')
In [16]:
sns.distplot(t1['Jmag'].data.data)
Out[16]:
In [12]:
t1
Out[12]:
In [ ]:
The end.