python随机抽取样本
时间: 2023-05-19 21:02:34 浏览: 80
python实现的随机森林
可以使用random模块中的sample函数来随机抽取样本,示例代码如下:
import random
data = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
sample_data = random.sample(data, 3)
print(sample_data)
输出结果为:
[9, 3, 5]
其中,data为原始数据,sample_data为随机抽取的样本,3表示抽取的样本数量。
阅读全文