- 博客(2)
- 资源 (1)
- 收藏
- 关注
原创 【Pandas】DataFrame groupby 中的as_index含义
栗子如下: import numpy as npvalues = np.array([1, 3, 2, 4, 1, 6, 4])example_df = pd.DataFrame({ 'value': values, 'even': values % 2 == 0, 'above_three': values > 3 }, index=['a', 'b', 'c', 'd'...
2018-04-16 22:17:34 8176
原创 【Pandas】Merge函数
Merge函数是用于通过一个或多个键将两个数据集的行连接起来,类似于 SQL 中的 JOIN。主要使用场景是联表查询。双表连接查询:table1.merge(table2,left_on=['index_x1','index_x2;],right_on=['index_y1','index_y2'],how='left')left处可以写right、inner、outer, 类似于SQL的左连接、...
2018-04-16 21:04:33 432
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人