“Pandas”的版本间差异

来自Shiyin's note
跳到导航 跳到搜索
无编辑摘要
无编辑摘要
第11行: 第11行:
:读普通的ascii文件
:读普通的ascii文件
file=pd.read_table(path+'test1.spectrum',skiprows=range(0,6),\
file=pd.read_table(path+'test1.spectrum',skiprows=range(0,6),\
names=('Time','wave','flux','flux_stellar','flux_nebular'),delim_whitespace=True)
delim_whitespace=True, names=('A', 'B', 'C'), dtype={'A': np.int64, 'B': np.float64, 'C': np.float64})

2018年8月2日 (四) 08:26的版本

Python Data Analysis Library

io

  • read_csv
import pandas as pd
data=pd.read_csv('cGs_for_LAMOST.csv')
data.columns
ra=data['ra']
dec=data['dec]
  • read_table

:读普通的ascii文件

file=pd.read_table(path+'test1.spectrum',skiprows=range(0,6),\
                 delim_whitespace=True, names=('A', 'B', 'C'), dtype={'A': np.int64, 'B': np.float64, 'C': np.float64})