ApJdataFrames
Scholz2009Title
: SUBSTELLAR OBJECTS IN NEARBY YOUNG CLUSTERS (SONYC): THE BOTTOM OF THE INITIAL MASS FUNCTION IN NGC 1333
Authors
: Alexander Scholz, Vincent Geers, Ray Jayawardhana, Laura Fissel, Eve Lee, David Lafrenière, and Motohide Tamura
Data is from this paper:
http://iopscience.iop.org/0004-637X/702/1/805/
In [1]:
%pylab inline
import seaborn as sns
sns.set_context("notebook", font_scale=1.5)
#import warnings
#warnings.filterwarnings("ignore")
In [5]:
import pandas as pd
! curl http://iopscience.iop.org/0004-637X/702/1/805/suppdata/apj317606t1_ascii.txt
Internet is not working at the moment, wtf.
In [16]:
tbl1 = pd.read_clipboard(sep='\t', skiprows=3, skipfooter=6, engine='python', usecols=range(11))
tbl1
Out[16]:
In [20]:
! mkdir ../data/Scholz2009
In [21]:
tbl1.to_csv("../data/Scholz2009/tbl1.csv", index=False)
Script finished.