码迷,mamicode.com
首页 >  
搜索关键字:plt    ( 1100个结果
matplotlib
# -*- coding: utf-8 -*- """ Created on Mon Apr 24 12:48:40 2017 @author: x-power """ import matplotlib.pyplot as plt #首先载入 matplotlib的绘图模块pyplot,并且重命名... ...
分类:其他好文   时间:2017-04-24 14:01:41    阅读次数:231
SQL Server 检测到基于一致性的逻辑 I/O 错误
背景:新建DB_GZN 恢复数据库备份文件 执行: select * from VI_MPS_PAPLT 错误提示: 消息 824,级别 24,状态 2,第 2 行 SQL Server 检测到基于一致性的逻辑 I/O 错误 校验和不正确(应为: 0x20d61048,但实际为: 0x7a8ab3a ...
分类:数据库   时间:2017-04-18 15:45:01    阅读次数:231
python k-means聚类实例
port sys reload(sys) sys.setdefaultencoding('utf-8') import matplotlib.pyplot as plt import numpy as np culster1 = np.random.uniform(0.5, 1.5, (2, 20)... ...
分类:编程语言   时间:2017-04-16 22:14:03    阅读次数:542
【转】 Python 中,matplotlib绘图无法显示中文的问题
在python中,默认情况下是无法显示中文的,如下代码: [python] view plain copy import matplotlib.pyplot as plt # 定义文本框和箭头格式 decisionNode = dict(boxstyle = "sawtooth", fc = "0. ...
分类:编程语言   时间:2017-04-16 15:17:00    阅读次数:585
Python安装matplotlib
1.下载matplotlib安装程序 网址为 https://pypi.python.org/pypi/matplotlib/ 2.放入项目所在文件夹 3.打开控制台并输入 python -m -pip install --user whl文件名 4.等待安装完成 5.测试matplotlib能否正 ...
分类:编程语言   时间:2017-04-11 11:33:32    阅读次数:259
python-最好大学排名
# -*- coding: utf-8 -*-"""Created on Mon Apr 3 09:37:52 2017 @author: zuihaodaxuepaiming"""import bs4import requestsfrom bs4 import BeautifulSoup def ...
分类:编程语言   时间:2017-04-03 11:21:32    阅读次数:425
Matplotlib绘图基础
import matplotlib.pyplot as plt import numpy as np #绘图流程 x=np.linspace(-1,1,100) y=x**2 plt.plot(x,y) plt.show() #figure相关plt.figure()#默认起始编号是1plt.fig... ...
分类:其他好文   时间:2017-03-30 19:45:57    阅读次数:200
repo init & git responsity config
1. Git Config:git config --global user.name "Shilin Yi"git config --global user.email "yishilin@gmail.com" 配置git的参数变量,它可以带以下2个参数: --system,针对系统的所有用户的, ...
分类:其他好文   时间:2017-03-27 19:33:32    阅读次数:200
zabbix服务端安装
Zabbix服务端安装规范文档 修订历史记录 日期 版本 说明 作者 2014-01-21 <1.0> <初始化> 刘孟杰 目录 1. 前言..... 4 1.1 目的.... 4 1.2 术语.... 4 1.3 适用版本.... 4 1.4 阅读范围.... 4 2. 环境准备..... 4 2 ...
分类:其他好文   时间:2017-03-19 22:12:35    阅读次数:190
1100条   上一页 1 ... 95 96 97 98 99 ... 110 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!