
数据分析
iceberb
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
pydata p26 图片显示不出来
In [64]: tz_counts[:10].plot(kind='barh',rot=0)Out[64]: solution:http://blog.youkuaiyun.com/lg1259156776/article/details/52717445解决方案是:导入matplotlib.pyplot库,绘图后再调用matplotlib.pyplot.show()方法就能把绘转载 2017-08-22 21:53:13 · 246 阅读 · 0 评论 -
开始利用数据挖掘进行流行音乐分析
一 问题简介二 前人的方法,融合改善三 数据预处理四 模型 1 神经网络 2 支持向量机 (介绍 + 应用 + 评估【测试】)五 总结展望原创 2018-04-14 00:48:08 · 2787 阅读 · 0 评论 -
pyplot 无法载入 ImportError: DLL load failed: %1 不是有效的 Win32 应用程序。
折磨了一晚上没有解决。在笔记本上安装python及数据分析环境,突然在import包的时候出现大量ImportError: DLL load failed: %1 不是有效的 Win32 应用程序。的问题,得知是64位32 位的问题又重新全部卸载了包更新了python重新手动下载安装,结果import matplotlib没问题,而执行>>> import matplotlib....原创 2018-04-25 00:34:31 · 2171 阅读 · 3 评论 -
kaggle titanic (2)
对于(1)中的分数结果我们不满意 (仅作为base line model)继续按照博客原博客进行模型的优化。pd.DataFrame({"columns":list(train_df.columns)[1:], "coef":list(clf.coef_.T)})这些系数为正的特征,和最后结果是一个正相关,反之为负相关提出交叉验证的概念(cross validation) 一部分用来训练模型 另...原创 2018-06-17 02:34:50 · 467 阅读 · 0 评论 -
吴恩达 ML 第一次编程作业
一个上午做出来了仅供参考function J = computeCost(X, y, theta)%COMPUTECOST Compute cost for linear regression% J = COMPUTECOST(X, y, theta) computes the cost of using theta as the% parameter for linear...原创 2019-04-03 12:07:40 · 305 阅读 · 0 评论