摘要:
import csv def read_csvList(path="./datasets/test.csv")->list: """return data format [[],[]]""" with open(file=path,mode="r")as f: df=csv.reader(f,dia 阅读全文
posted @ 2019-10-11 18:24
不带R的墨菲特
阅读(408)
评论(0)
推荐(0)
摘要:
import pandas as pd"""pandas doc:df.dtypes 查看数据每column 数据类型 id int64x0 float64df.reindex 查看多少行多少列的数据结构 [569 rows x 21 columns]>df.reindex_axis 查看数据行列带 阅读全文
posted @ 2019-10-11 14:16
不带R的墨菲特
阅读(232)
评论(0)
推荐(0)