matplotlib
前导:
安装 numpy
http://sourceforge.net/projects/numpy/files/
安装 SciPy
http://sourceforge.net/projects/scipy/files/
安装pyreadline
https://pypi.python.org/pypi/pyreadlinehttps://pypi.python.org/packages/any/p/pyreadline/pyreadline-2.1.win32.exe#md5=fb0a091c64c045d6fa5c2020adc81162
安装ez_setup.py
https://bootstrap.pypa.io/ez_setup.py
python ez_setup.py
安装setuptools
https://pypi.python.org/pypi/setuptools
安装six
http://www.pythonhosted.org/six/
安装dateutil
https://dateutil.readthedocs.org/en/latest/
python setup.py install
安装pyparsing
http://pyparsing.wikispaces.com/Download+and+Installation
安装 ipython
https://github.com/ipython/ipython/releases
https://github.com/ipython/ipython/releases/download/rel-3.0.0/ipython-3.0.0.zip
Windows上安装matplotlib
Matplotlib(http://sourceforge.net/projects/matplotlib/?source=typ_redirect)是一个Python的图形框架,类似于MATLAB和R语言。
Matplotlib的官网地址是 http://matplotlib.org/ ,下载地址为 http://matplotlib.org/downloads.html,选择对应的版本即可安装,我选择的版本为matplotlib-1.3.1.win32-py2.7.exe。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
import numpy as np import matplotlib.pyplot as plt N = 5 menMeans = ( 20 , 35 , 30 , 35 , 27 ) menStd = ( 2 , 3 , 4 , 1 , 2 ) ind = np.arange(N) # the x locations for the groups width = 0.35 # the width of the bars fig, ax = plt.subplots() rects1 = ax.bar(ind, menMeans, width, color = 'r' , yerr = menStd) womenMeans = ( 25 , 32 , 34 , 20 , 25 ) womenStd = ( 3 , 5 , 2 , 3 , 3 ) rects2 = ax.bar(ind + width, womenMeans, width, color = 'y' , yerr = womenStd) # add some ax.set_ylabel( 'Scores' ) ax.set_title( 'Scores by group and gender' ) ax.set_xticks(ind + width) ax.set_xticklabels( ( 'G1' , 'G2' , 'G3' , 'G4' , 'G5' ) ) ax.legend( (rects1[ 0 ], rects2[ 0 ]), ( 'Men' , 'Women' ) ) def autolabel(rects): # attach some text labels for rect in rects: height = rect.get_height() ax.text(rect.get_x() + rect.get_width() / 2. , 1.05 * height, '%d' % int (height), ha = 'center' , va = 'bottom' ) autolabel(rects1) autolabel(rects2) plt.show() |
REF:
https://pypi.python.org/pypi/matplotlib
http://my.oschina.net/bery/blog/203595?fromerr=dhmB1gxZ
http://www.open-open.com/lib/view/open1393488232380.html
http://book.2cto.com/201401/39327.html
matplotlib的更多相关文章
- python安装numpy、scipy和matplotlib等whl包的方法
最近装了python和PyCharm开发环境,但是在安装numpy和matplotlib等包时出现了问题,现总结一下在windows平台下的安装方法. 由于现在找不到了工具包新版本的exe文件,所以采 ...
- matplotlib 高级用法实例--共享x轴
http://localhost:8888/notebooks/duanqs/matplotlib_advanced_example.ipynb 我不会弄呀, 刚才从matplotlib文档里吧示例用 ...
- Python matplotlib笔记
可视化的工具有很多,如Tableau,各种JS框架,我个人感觉应该是学JS最好,因为JS不需要环境,每个电脑都有浏览器,而像matplotlib需要Python这样的开发环境,还是比较麻烦的,但是毕竟 ...
- Matplotlib——第一章轻松画个图
首先安装matplotlib,使用pip install matplotlib.安装完成后在python的命令行敲入import matplotlib,如果没问题,说明安装成功可以开始画图了. 看好了 ...
- win7系统下python安装numpy,matplotlib,scipy和scikit-learn
1.安装numpy,matplotlib,scipy和scikit-learn win7系统下直接采用pip或者下载源文件进行安装numpy,matplotlib,scipy时会遇到各种问题,这是因为 ...
- 【转】使用Python matplotlib绘制股票走势图
转载出处 一.前言 matplotlib[1]是著名的python绘图库,它提供了一整套绘图API,十分适合交互式绘图.本人在工作过程中涉及到股票数据的处理如绘制K线等,因此将matplotlib的使 ...
- 【Python数据分析】四级成绩分布 -matplotlib,xlrd 应用
最近获得了一些四级成绩数据,大概500多个,于是突发奇想是否能够看看这些成绩数据是否满足所谓的正态分布呢?说干就干,于是有了这篇文章.文章顺带介绍了xlrd模块的一些用法和matplotlib画自定义 ...
- 【Matplotlib】详解图像各个部分
首先一幅Matplotlib的图像组成部分介绍. 在matplotlib中,整个图像为一个Figure对象.在Figure对象中可以包含一个或者多个Axes对象.每个Axes(ax)对象都是一个拥有自 ...
- Matplotlib 学习笔记
注:该文是上了开智学堂数据科学基础班的课后做的笔记,主讲人是肖凯老师. 数据绘图 数据可视化的原则 为什么要做数据可视化? 为什么要做数据可视化?因为可视化后获取信息的效率高.为什么可视化后获取信息的 ...
- python 下 tinker、matplotlib 混合编程示例一个
该例是实现了 Tinker 嵌入 matplotlib 所绘制的蜡烛图(k 线),数据是从 csv 读入的.花一下午做的,还很粗糙,仅供参考.python 代码如下: import matplotli ...
随机推荐
- C语言初学者代码中的常见错误与瑕疵(3)
问题: n-1位数字 已知w是一个大于10但不大于1000000的无符号整数,若w是n(n≥2)位的整数,则求出w的后n-1位的数. 输入: 第一行为M,表示测试数据组数. 接下来M行,每行包含一个测 ...
- C#:通过Window API接口实现WiFi
1.获取Mac地址 //WiFi通知回调 private WlanApi.WLAN_NOTIFICATION_CALLBACK _notificationCallback; this._notific ...
- 教你ECSHOP去版权与标志(新增272版)
前台部分: 1:去掉头部TITLE部分的ECSHOP演示站 Powered by ecshop 前者在后台商店设置 - 商店标题修改 后者打开includes/lib_main.php $page_t ...
- The C++ Standard Library --- A Tutorial Reference 读书笔记
5.2 Smart Pointer(智能指针) shared_ptr的aliasing构造函数,接受一个shared pointer和一个raw pointer.它允许你掌握一个事实:某对象拥有另一个 ...
- Asp.net Vnext IValueProvider
概述 本文已经同步到<Asp.net Vnext 系列教程 >中] IValueProvider 根据ValueProvider获取数据,在对数据进行绑定 代码实现 private cla ...
- textarea不能提交html格式的代码
解决方法:web.config中<system.web>节点添加 <httpRuntime targetFramework="4.5" requestValida ...
- rtc关机闹钟3 IAlarmManager
vim framework/base/core/java/android/app/IAlarmManager.aidl import android.app.AlarmManager;import a ...
- [转]iOS学习之UINavigationController详解与使用(一)添加UIBarButtonItem
转载地址:http://blog.csdn.net/totogo2010/article/details/7681879 1.UINavigationController导航控制器如何使用 UINav ...
- 【转】MYSQL入门学习之六:MYSQL的运算符
转载地址:http://www.2cto.com/database/201212/175862.html 一.算术运算符 1.加 www.2cto.com mysql> s ...
- [团队项目]----Math Calculator
团队项目 ----Math Calculator 任务: 1.每个团队从Github上fork这个项目的源代码 https://github.com/RABITBABY/We-have-bing 2. ...