python机器学习-chapter2_14

Posted 摸鱼匠与炼丹侠

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python机器学习-chapter2_14相关的知识,希望对你有一定的参考价值。

•xscale/yscale对数和其它非线性轴

import numpy as np
import matplotlib.pyplot as plt

#生成一些区间 [0,1]内的数据
y = np.random.normal(loc=0.5, scale=0.4, size=1000)
y = y[(y > 0) & (y < 1)]
y.sort()
x = np.arange(len(y))

#画图

plt.yscale(\'linear\')                               #线性
plt.yscale(\'log\')                                   #对数
plt.yscale(\'symlog\', linthreshy=0.05)  #对称的对数
plt.yscale(\'logit\')                                 #logit
plt.show()

 

 

以上是关于python机器学习-chapter2_14的主要内容,如果未能解决你的问题,请参考以下文章

python机器学习-chapter2_12

python机器学习-chapter2_2

Chapter2硬币游戏——代码分析与改进

深度学习入门-chapter2_1

[读书笔记]机器学习:实用案例解析

14张Python代码速查表,玩转数据分析&可视化&机器学习