ApJdataFrames
Scholz2012Title
: SUBSTELLAR OBJECTS IN NEARBY YOUNG CLUSTERS (SONYC). VI. THE PLANETARY-MASS DOMAIN OF NGC 1333
Authors
: Alexander Scholz et al.
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 [2]:
import pandas as pd
Internet is still not working
In [8]:
tbl1 = pd.read_clipboard(#"http://iopscience.iop.org/0004-637X/756/1/24/suppdata/apj437811t1_ascii.txt",
sep='\t', skiprows=[0,1,2,4], skipfooter=3, engine='python', usecols=range(10))
tbl1
Out[8]:
In [9]:
! mkdir ../data/Scholz2012
In [10]:
tbl1.to_csv("../data/Scholz2012/tbl1.csv", index=False)
Script finished.