plt.figure()引數使用詳解
1.figure語法及操作
(1)figure語法說明
- figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True)
- num:影像編號或名稱,數字為編號 ,字串為名稱
- figsize:指定figure的寬和高,單位為英寸;
- dpi引數指定繪圖物件的解析度,即每英寸多少個畫素,預設值為80 1英寸等於2.5cm,A4紙是 21*30cm的紙張
- facecolor:背景顏色
- edgecolor:邊框顏色
- frameon:是否顯示邊框
(2)例子:
import matplotlib.pyplot as plt
建立自定義影像
fig=plt.figure(figsize=(4,3),facecolor=‘blue’)
plt.show()
2.subplot建立單個子圖
(1) subplot語法
subplot(nrows,ncols,sharex,sharey,subplot_kw,**fig_kw)
相關文章
- SpringBoot魔法堂:@MatrixVariable引數註解使用詳解Spring Boot
- OGG引數詳解
- ajax 引數詳解
- lsblk命令引數詳解
- tar命令引數詳解
- Dockerfile - 引數與詳解Docker
- 函式引數詳解函式
- Flink Checkpoint 引數詳解
- Nginx編譯引數大全 configure引數中文詳解Nginx編譯
- Oracle GoldenGate常用引數詳解OracleGo
- oracle rac 核心引數詳解Oracle
- 常用的 wget 引數詳解wget
- variables_order引數詳解
- Prometheus hashmod 配置引數詳解Prometheus
- pg_settings引數詳解
- SQL*Plus Set引數詳解SQL
- find 命令的引數詳解
- Pandas read_csv 引數詳解
- Nginx 配置檔案引數詳解Nginx
- Redis日常運維-引數詳解Redis運維
- expdp/impdp 詳細引數解釋
- ansible.cfg 配置引數詳解
- curl常用引數詳解及示例
- JQuery中$.ajax()方法引數詳解jQuery
- caffe網路各層引數詳解
- composer.json 檔案引數詳解JSON
- consul配置引數大全、詳解、總結
- MySQL relay log 詳細引數解釋MySql
- 定時任務@Scheduled引數詳解
- 轉載-詳解功率MOS管引數
- C語言可變引數詳解C語言
- ORACLE中Cursor_sharing引數詳解Oracle
- SwaggerAPI註解詳解,以及註解常用引數配置SwaggerAPI
- MongoDB啟動檔案配置引數詳解MongoDB
- redis配置檔案中各引數詳解Redis
- Linux網路卡配置檔案 引數詳解Linux
- MySQL8.0新增配置引數詳解MySql
- OpenCV中的findContours函式引數詳解OpenCV函式