python按列内容分割文件,Python numpy按字符串列的值分割一个csv文件

I have 5000 rows of data that looks like the following in a csv file, I would like to group by the last column 6 (ie. A, B) using numpy arrays, as I would be plotting data in each group afterwards.

Title

Date, Time, Value1, Value2, Value3, Value4, Value5

,, Unit1, Unit2, Unit3,,

2012-04-02,00:00, 85.5333333333333, 4.87666666666667, 8.96, 323.27,A

2012-04-02,00:30, 196.5, 5.49, 8.42, 323.15,B

2012-04-02,01:00, 68.2, 4.47, 7.83, 325.30,A

2012-04-02,01:30, 320.9, 6.77333333333333, 8.05, 326.63,B

I had to specify dtype=None when I load the data with np.genfromtxt, or else the A term becomes NaN

How to use numpy.genfromtxt when first column is string and the remaining columns are numbers?

I am trying to use itertools groupby to return all the values based on the last column, mentioned here: How do I use Python's itertools.groupby()?

But first, I would need to sort the numpy array.

I attempted to use advance indexing, by splicing the sixth column and sorting it

Python (Numpy) array sorting

Ie. v[v[:,0].argsort()]

However, here is a link that mentions numpy will treat my record as a 1D array of my dtype (which that was set to none) and I ran into the same index error trying to sort this:

Numpy Array Column Slicing Produces IndexError: invalid index Exception

Questions:

1) How can I split the numpy array up using groupby based on column 6’s string values in order to plot them separately?

2) It would also be nice to be able to skiprows such that I can skip the first (title) and third row (unit) and leave the the second row (column heading) and data. Anyone knows how to do that easily with the options available?

This is the script I have so far, :

import numpy as np

from matplotlib import pyplot as plt

from itertools import groupby

import csv

regression_data_dp1 = np.genfromtxt(“file.csv”, delimiter=',', skiprows=3, dtype=None)

sortindex = regression_data_dp1[:,6]

#Error is hit at this step:

# sortindex = regression_data_dp1[:,6]

#IndexError: invalid index

regression_data_dp1_sorted = regression_data_dp1[ regression_data_dp1(:,column_WRF_wind_direction).argsort()]

for key, group in groupby(regression_data_dp1, lambda x: x[0]):

print key

with open(“file_" + key.strip() + ".csv", 'w') as data_file:

wr=csv.writer(data_file, quoting=csv.QUOTE_ALL)

for item in (group):

wr.writerow(item)

解决方案

Instead of sorting the rows of the array, and using itertools.groupby you could use group = arr[arr['f6']==key] to select the rows with the same key:

import numpy as np

import csv

def load_csv(filename):

with open(filename) as f:

next(f)

header = [item.strip() for item in next(f).split(',')]

arr = np.genfromtxt("file.csv", delimiter=',', skiprows=3, dtype=None)

arr.dtype.names = header

return arr

arr = load_csv("file.csv")

keys = np.unique(arr['Value5'])

for key in keys:

group = arr[arr['Value5']==key]

filename = 'file_{}.csv' .format(key.strip())

with open(filename, 'w') as data_file:

wr = csv.writer(data_file, quoting=csv.QUOTE_ALL)

wr.writerows(group)

There is no direct facility to tell np.genfromtxt to use the second line as a header. The simplest approach would probably be to open the file, slurp the second line into a list of headers, close the file, then use genfromtxt to load the array and use arr.dtype.names = header to give the structured array the desired column names.

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值