pandas数据上采样

引用官方文档

官方描述

采样时第一个参数可以选择比目前dataFrame大小更大的数,不过需要加replace=True。友情提示:虽然replace=True,但是df没变,需要使用变量接收。

df_upsample = df.sample(n=max_lenth, replace=True,random_state=0)

frac设置采样比例可以比1大。

df_upsample = df.sample(frac=2, replace=True,random_state=0)

你可能感兴趣的:(pandas,python,python)