博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
plot sin 动态配置rc settings
阅读量:6837 次
发布时间:2019-06-26

本文共 1024 字,大约阅读时间需要 3 分钟。

plot sin 动态配置rc settings

  • 坐标轴颜色
  • 线的颜色
  • 绘图前景色

Code

#!/usr/bin/env python# -*- coding: utf-8 -*-import numpy as npimport matplotlibimport matplotlib.pyplot as plt# Data to be representedX = np.linspace(-np.pi,+np.pi,256)Y = np.sin(X)# Configuration via RCmatplotlib.rc('axes', facecolor = 'grey')matplotlib.rc('axes', edgecolor = 'white')matplotlib.rc('xtick', color = 'white')matplotlib.rc('ytick', color = 'white')matplotlib.rc('figure', facecolor = 'grey')matplotlib.rc('savefig', facecolor = 'grey')# Actual plottingfig = plt.figure(figsize=(8,6), dpi=72)axes = plt.subplot(111)axes.plot(X,Y, color = 'yellow', linewidth=2, linestyle="-")axes.set_xlim(1.1*X.min(), 1.1*X.max())axes.set_ylim(1.1*Y.min(), 1.1*Y.max())axes.spines['bottom'].set_position(('data',0))axes.xaxis.set_ticks_position('bottom')axes.spines['left'].set_position(('data',0))axes.yaxis.set_ticks_position('left')axes.spines['top'].set_color('none')axes.spines['right'].set_color('none')plt.show()

Keypoints

matplotlib.rc('axes', facecolor = 'grey')

rc-settings.png

Result

rc-settings-result.png

转载地址:http://izqkl.baihongyu.com/

你可能感兴趣的文章
第二届清华大学项目管理精英训练营【敏捷个人】分享
查看>>
Centos 安装 Solr
查看>>
Android Toast自己定义Toast例子
查看>>
bash shell实现二进制与十进制数的互转
查看>>
精准测试
查看>>
Oracle11G_逻辑备份
查看>>
Linux正变得无处不在;应用大盘点
查看>>
IEEE期刊
查看>>
pssh使用
查看>>
索引优化系列十四--啥时分区索引性能反而低
查看>>
hive的变量传递设置
查看>>
apache-shiro杂记(三) 用了apache-shiro后,HttpSession.getServletContext() API无法正常工作了...
查看>>
eclipse 中的 maven run configurations
查看>>
spring 项目中的一个异常
查看>>
CentOS PPTP ×××
查看>>
电子工程师必须知道的10个网站 !!!
查看>>
我的友情链接
查看>>
防Xss攻击,包含富文本编辑器的处理
查看>>
MyBatis延迟加载
查看>>
利用MAVEN打包可运行jar包,包括依赖的第三方包
查看>>