ApJdataFrames
005: Luhman2005bTitle
: The Disk Fractions of Brown Dwarfs in IC 348 and Chamaeleon I
Authors
: Kevin L Luhman, C J Lada, L Hartmann, A. A. Muench, S T Megeath, Lori E Allen, Myers, P. C., J Muzerolle, E. Young, and G G Fazio
Data is from this paper: http://iopscience.iop.org/1538-4357/631/1/L69/
In [1]:
import warnings
warnings.filterwarnings("ignore")
In [2]:
import pandas as pd
In [3]:
names = ["ID","Sp.a","[3.6]","[4.5]","[5.8]","[8.0]"]
tbl2 = pd.read_csv("http://iopscience.iop.org/1538-4357/631/1/L69/fulltext/19825.tb2.txt",
sep='\t', names=names, na_values='\ldots')
tbl2.head()
Out[3]:
In [4]:
names = ["ID","Sp.a","[3.6]","[4.5]","[5.8]","[8.0]"]
tbl3 = pd.read_csv("http://iopscience.iop.org/1538-4357/631/1/L69/fulltext/19825.tb3.txt",
sep='\t', names=names, na_values='\ldots')
tbl3.head()
Out[4]:
The end.