pandas作者Wes McKinney 在【PYTHON FOR DATA ANALYSIS】中对pandas的方方面面都有了一个权威简明的入门级的介绍,但在实际使用过程中,我发现书中的内容还只是冰山一角...谈到pandas数据的行更新、表合并等操作,一般用到的方法有concat、join、merge。但这三种方法对于很多新手来说,都不太好分清使用的场合与用途。...DataFrame.corr([method, min_periods]) 返回本数据框成对列的相关性系数
DataFrame.corrwith(other[, axis, drop]) 返回不同数据框的相关性...DataFrame.drop(labels[, axis, level, …]) 返回删除的列
DataFrame.drop_duplicates([subset, keep, …]) Return DataFrame...时间序列
方法 描述
DataFrame.asfreq(freq[, method, how, …]) 将时间序列转换为特定的频次
DataFrame.asof(where[, subset]) The