这个方法本身就是抽样作用,有三个参数
- withRepalcement: 抽样是否放回
- fraction: 期望抽样百分比
- seed: 种子
当 withReplacement 设置为 false 时 就是 0 1 分布 这时 fraction 的取值范围 在[0,1]
当 withReplacement 设置为 true 时 表示抽样放回 这时 fraction>=0 抽样方法为泊松抽样
这个方法本身就是抽样作用,有三个参数
- withRepalcement: 抽样是否放回
- fraction: 期望抽样百分比
- seed: 种子
当 withReplacement 设置为 false 时 就是 0 1 分布 这时 fraction 的取值范围 在[0,1]
当 withReplacement 设置为 true 时 表示抽样放回 这时 fraction>=0 抽样方法为泊松抽样