ApJdataFrames Scholz2012

Title: 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")


Populating the interactive namespace from numpy and matplotlib

In [2]:
import pandas as pd

Table 1 - New Very Low Mass Members of NGC 1333

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]:
ID alpha(J2000) delta(J2000) J K SpT A_V A_V.1 T_eff Comments
0 39 03:28:54.96 +31:18:15.3 16.881 13.155 M8.5 15 17 2900 IZ
1 40 03:29:02.80 +31:22:17.3 16.959 13.423 M9.3 14 15 2700 JKS
2 41 03:29:04.63 +31:20:28.9 17.647 13.892 M7.6 15 18 3100 JKS
3 42 03:29:13.85 +31:18:05.7 19.252 17.540 L1 4 4 2400 IZ^a
4 43 03:29:21.94 +31:18:29.2 18.728 17.128 M8.1 3 5 2900 IZ
5 44 03:28:57.04 +31:16:48.7 ... 15.590 M8.6 NaN 4 2800 Random
6 45 03:29:13.04 +31:17:38.3 15.23 14.160 M8.1 0 2 2900 Random

In [9]:
! mkdir ../data/Scholz2012

In [10]:
tbl1.to_csv("../data/Scholz2012/tbl1.csv", index=False)

Script finished.