当前位置:网站首页>对pandas 数据进行数据打乱并选取训练机与测试机集
对pandas 数据进行数据打乱并选取训练机与测试机集
2020-11-06 01:27:00 【IT界的小小小学生】
描述
在机器学习中,拿到一堆训练数据一般会需要将数据切分成训练集和测试集,或者切分成训练集、交叉验证集和测试集,为了避免切分之后的数据集在特征分布上出现偏倚,我们需要先将数据打乱,使数据随机排序,然后在进行切分。
需要用的方法如下:
注:df代表一个pd.DataFrame
df = df.sample(frac=1.0): 按100%的比例抽样即达到打乱数据的效果
df = df.reset_index():打乱数据之后index也是乱的,如果你的index没有特征意义的话,直接重置就可以了,否则就在打乱之前把index加进新的一列,再生成无意义的index
train = df.loc[0:a]: 进行切分操作,切分比例看情况定
cv = df.loc[a+1:b]:
test = df.loc[b+1:-1]:
版权声明
本文为[IT界的小小小学生]所创,转载请带上原文链接,感谢
https://vip01.blog.csdn.net/article/details/93796160
边栏推荐
- Asp.Net Core learning notes: Introduction
- How to get started with new HTML5 (2)
- How long does it take you to work out an object-oriented programming interview question from Ali school?
- Didi elasticsearch cluster cross version upgrade and platform reconfiguration
- 有关PDF417条码码制的结构介绍
- 《Google軟體測試之道》 第一章google軟體測試介紹
- This article will introduce you to jest unit test
- Can't be asked again! Reentrantlock source code, drawing a look together!
- 基于深度学习的推荐系统
- Why do private enterprises do party building? ——Special subject study of geek state holding Party branch
猜你喜欢
随机推荐
神经网络简史
谁说Cat不能做链路跟踪的,给我站出来
Asp.Net Core學習筆記:入門篇
Chainlink将美国选举结果带入区块链 - Everipedia
JetCache埋点的骚操作,不服不行啊
Filecoin最新动态 完成重大升级 已实现四大项目进展!
阿里云Q2营收破纪录背后,云的打开方式正在重塑
drf JWT認證模組與自定製
C language 100 question set 004 - statistics of the number of people of all ages
Cos start source code and creator
Cocos Creator 原始碼解讀:引擎啟動與主迴圈
(1)ASP.NET Core3.1 Ocelot介紹
How to demote a domain controller in Windows Server 2012 and later
从海外进军中国,Rancher要执容器云市场牛耳 | 爱分析调研
有关PDF417条码码制的结构介绍
分布式ID生成服务,真的有必要搞一个
10 easy to use automated testing tools
Elasticsearch database | elasticsearch-7.5.0 application construction
Microservices: how to solve the problem of link tracing
2018个人年度工作总结与2019工作计划(互联网)