Python
文章平均质量分 92
孜孜不倦就是我
这个作者很懒,什么都没留下…
展开
-
Jupyter Notebook打开任意文件夹
Jupyter Notebook打开任意文件夹废话不多说 1.win+R 启动“运行” 输入cmd 点确定 2.输入 cd /d xxxxxxx 回车 jupyter notebook 回车 在这里我想打开H:\机器学习入门 3.等待一会,在浏览器中自动跳出 也可以复制图2中红框的内容,在浏览器中打开完成...原创 2018-08-09 18:21:46 · 32705 阅读 · 1 评论 -
TypeError: reduction operation 'argmin' not allowed for this dtype
在idxmax()前加.astype(‘float64’)argmin() .argmax() 计算最大、小值所在位置的索引(针对自动索引的)(适用于Series类型:) .idxmin() .idxmax() 计算最大、小值所在位置的索引(针对自定义索引的)(适用于Series类型:) 这几个函数都是适用的不过 最好先把数据类型都打印出来 print(results_table...原创 2018-08-11 21:11:50 · 8358 阅读 · 0 评论 -
AttributeError: 'Series' object has no attribute 'reshape'
Series数据类型没有reshape函数 解决办法: 用values方法将Series对象转化成numpy的ndarray,再用ndarray的reshape方法. data[‘Amount’].values.reshape(-1, 1) 就像这样: 另外:pandas有两种对象:Series 和DataFrame。 可以这么理解,DataFrame像一张表,Series是指表里...原创 2018-08-11 23:28:27 · 30739 阅读 · 6 评论 -
sklearn构造决策树模型 树的可视化 pydotplus和GraphViz的安装
sklearn 数量级是百万级的都可以用,用的人很多 sklearn API文档:http://scikit-learn.org/stable/modules/classes.html准备工作1.安装pydotplus打开Anacorda Prompt 输入 pip install pydotplus 然后等待 2.安装GraphVizhttps://graphvi...原创 2018-08-16 17:44:58 · 3393 阅读 · 0 评论