码迷,mamicode.com
首页 >  
搜索关键字:matplotlib    ( 2252个结果
Python机器学习(六十五)Matplotlib 入门
绘制一个简单图形 让我们从一个简单的图形开始。 示例 # 以别名plt导入pyplot模块 import matplotlib.pyplot as plt # 准备数据 x = [1,2,3,4] y = [1,4,9,16] # 绘制数据 plt.plot(x, x, label='linear' ...
分类:编程语言   时间:2020-06-20 23:52:09    阅读次数:69
Python机器学习(六十九)Matplotlib 其他类型图形
Matplotlib 柱状图 柱状图/条形图是常见的图形类型,可使用bar()方法绘制。 示例 # 导入numpy库与matplotlib.pyplot库 import numpy as np import matplotlib.pyplot as plt # 柱状图条目 divisions = [ ...
分类:编程语言   时间:2020-06-20 23:47:52    阅读次数:77
Python机器学习(六十八)Matplotlib 多个图形
个图(figure)中可以包含多个子图(subplot)。 subplot 可以使用subplot()添加子图。 示例 创建2个子图,水平排列。 # 导入numpy库与matplotlib.pyplot库 import numpy as np import matplotlib.pyplot as ...
分类:编程语言   时间:2020-06-20 23:46:40    阅读次数:65
Matplotlib的一些小细节——Legend图例
Legend 图例 在Matplotlib中绘制多个图线时,需要在图表中说明每条曲线的含义,这时就用到了图例Legend。 使用方法 在plt.plot中添加label属性(不添加也可,但是需要在plt.legend中添加) 在plt.plot之后添加plt.legend(handles=,labe ...
分类:其他好文   时间:2020-06-20 21:25:56    阅读次数:97
python应用 曲线拟合03
问题 有许多待拟合的曲线,需批量拟合。 解决 写一个类 1 # -*- coding: utf-8 -*- 2 """ 3 @author: kurrrr 4 """ 5 6 import numpy as np 7 import matplotlib.pyplot as plt 8 import ...
分类:编程语言   时间:2020-06-20 11:07:00    阅读次数:61
胸形线
代码 import numpy as np import matplotlib.pyplot as plt import matplotlib as mpl mpl.rcParams['font.sans-serif'] = [u'SimHei'] #FangSong/黑体 FangSong/Kai ...
分类:其他好文   时间:2020-06-19 21:07:09    阅读次数:55
心形线
代码 import numpy as np import matplotlib.pyplot as plt t = np.linspace(0, 2*np.pi, 100) x = 16 * np.sin(t) ** 3 y = 13 * np.cos(t) - 5 * np.cos(2*t) - ...
分类:其他好文   时间:2020-06-19 19:22:53    阅读次数:163
python skimage模块处理图片
pip 安装skimage模块 源码: 1 import matplotlib.pyplot as plt 2 import matplotlib.image as mpimg 3 4 from skimage import io,transform 5 6 img_file2 = io.imrea ...
分类:编程语言   时间:2020-06-19 12:05:50    阅读次数:66
tick能见度
import numpy from matplotlib import pyplot x=numpy.linspace(-3,3,50) y=2*x+1 pyplot.figure(num=1,figsize=(5,5)) pyplot.plot(x,y,linewidth=10) ax=pyplo ...
分类:其他好文   时间:2020-06-19 11:53:20    阅读次数:38
Matplotlib - GUI
The Matplotlib library is designed to work well with many different environments and platforms. As such, the library does not only contain routines fo ...
分类:其他好文   时间:2020-06-18 12:42:01    阅读次数:56
2252条   上一页 1 ... 17 18 19 20 21 ... 226 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!