Python Dataframe转List
Posted Infinite666
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python Dataframe转List相关的知识,希望对你有一定的参考价值。
1 from pandas import read_csv 2 3 dataframe = read_csv(r‘url‘, nrows = 86400, usecols = [0,], engine=‘python‘) 4 #nrows:读取行数,usecols=[n,]:仅读取第n列,usecols=[a,b,c]:读取a、b、c列 5 dataset = dataframe.values 6 7 List = [] 8 for k in dataset: 9 for j in k: 10 List.append(j) 11 12 print(dataframe[0:3]) 13 print(dataset[0:3]) 14 print(List[0:3])
得到结果:
FIT101(属性名) 0 0.0 1 0.0 2 0.0 [[ 0.] [ 0.] [ 0.]] [0.0, 0.0, 0.0]
以上是关于Python Dataframe转List的主要内容,如果未能解决你的问题,请参考以下文章
python 中各类型介绍及相互转换 - list, array, tensor, dict, tuple, DataFrame