python笔记
Posted 基督徒Isaac
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python笔记相关的知识,希望对你有一定的参考价值。
知识点:
python与:中括号;选取行、选取列;loc与iloc的区别
pd.read_excel()[选取列]
pd.read_excel().loc[按索引选取行]
pd.read_excel().iloc[按行号选取行]
设置列标题、行标题(将第一列作为索引)
https://www.delftstack.com/zh/howto/python-pandas/set-column-as-index-pandas/
pd.read_excel(‘e://example.xlsx’, header = None, index_col = [0])
df = pd.read_excel(‘e://example.xlsx’, header = None)
df.set_index([0], inplace=True)
pd.DataFrame(np.random.randn(5,3),
index=list(‘abcde’),
columns=[‘one’,‘two’,‘three’])
处理缺失值
df.fillna(0)
df.isnull().any()
df[df.isnull().values==True]
df[df.isna().values==True].count
#https://blog.csdn.net/u012387178/article/details/52571725
以上是关于python笔记的主要内容,如果未能解决你的问题,请参考以下文章