Title
: A Measurement of Radius Inflation in the Pleiades and Its Relation to Rotation and Lithium Depletion
Authors
: Somers & Stassun
Data is from this paper:
http://iopscience.iop.org/article/10.3847/1538-3881/153/3/101/meta
In [1]:
%matplotlib inline
import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
pd.options.display.max_columns = 150
%config InlineBackend.figure_format = 'retina'
import astropy
from astropy.io import ascii
from astropy.table import Table
import numpy as np
Currently behind a paywall, requires institutional access.
In [2]:
#! mkdir ../data/Somers2017
#! wget http://iopscience.iop.org/1538-3881/153/3/101/suppdata/ajaa4ef4t1_mrt.txt
#! mv ajaa4ef4t1_mrt.txt ../data/Somers2017/
In [3]:
! head ../data/Somers2017/ajaa4ef4t1_mrt.txt
In [4]:
tab1 = ascii.read('../data/Somers2017/ajaa4ef4t1_mrt.txt')
In [5]:
#tab1.show_in_notebook(display_length=5)
In [6]:
df1 = tab1.to_pandas()
df1.head()
Out[6]:
In [7]:
#! wget http://iopscience.iop.org/1538-3881/153/3/101/suppdata/ajaa4ef4t2_mrt.txt
#! mv ajaa4ef4t2_mrt.txt ../data/Somers2017/
In [8]:
tab2 = ascii.read('../data/Somers2017/ajaa4ef4t2_mrt.txt')
In [9]:
df2 = tab2.to_pandas()
In [10]:
df2.head()
Out[10]:
In [11]:
df1.to_csv('../data/Somers2017/tb1.csv', index=False)
df2.to_csv('../data/Somers2017/tb2.csv', index=False)
The end!