Jay's Cookbook
Menu
  • Tags
  • Categories
  • Projects
Computer Science
OS
Network
Data Structure
Algorithm
Language
Code Architecture
Python
Javascript
Typescript
Java
Backend
Backend Theory
TypeORM
Node.js
NestJS
FastAPI
Frontend
HTML/CSS
React
Next.js
Data Engineering
DE Theory
MySQL
MongoDB
Elastic
Redis
Kafka
Spark
Airflow
AI
Basic
Pytorch
NLP
Computer Vision
Data Analytics
Statistics
Pandas
Matplotlib
DevOps
Git
Docker
Kubernetes
AWS
Matplotlib Series [Part3] Text
data_analytics
matplotlib

Matplotlib Series [Part3] Text

Jay Kim
Jay Kim 20 Jan 2022
Matplotlib Series [Part2] Axes Customizing Matplotlib Series [Part4] Color

Table of Contents

  • Text Examples
  • Text Properties
  • Font Dict

Text Examples

ax.set_title("Ax title", fontsize=30, fontfamily='serif')

ax.set_xlabel('X label', fontsize=20, color='darkblue', alpha=0.7)
ax.set_ylabel('Y label', fontsize=20)

ax.text(x=0.5, y=0.5, va='center', ha='center', s ='Hello', fontsize=30, color='green')
ax.text(x=1, y=0, va='bottom', ha='right', s ='Hello', fontsize=30, color='red')
ax.text(x=0, y=0, va='bottom', ha='left', s ='Hello', fontsize=30, color='blue')

Text Properties

# 자주 사용되는 특성

alpha: 텍스트 투명도
color: 텍스트 색깔
fontfamily: 텍스트 폰트
fontsize: 텍스트 크기
ha: 수평 기준
va: 수직 기준
rotation: 각도

Font Dict

  • 특성을 적용하는 방법을 알아보자
# 하나씩 나열하는 방법
ax.set_title("Ax title", fontsize=30, fontfamily='serif')

# fontdict 파라미터에 딕셔너리 형태로 전달하는 방법
title_font = {"fontsize": 30, "fontfamily": "serif"}
ax.set_title("Ax title", fontdict=title_font)
Matplotlib Series [Part2] Axes Customizing Matplotlib Series [Part4] Color

You may also like

See all matplotlib
21 Jan 2022 Matplotlib Series [Part11] Box and Whisker Plot
data_analytics
matplotlib

Matplotlib Series [Part11] Box and Whisker Plot

21 Jan 2022 Matplotlib Series [Part10] Scatter Plot
data_analytics
matplotlib

Matplotlib Series [Part10] Scatter Plot

20 Jan 2022 Matplotlib Series [Part9] Pie Plot
data_analytics
matplotlib

Matplotlib Series [Part9] Pie Plot

Jay Kim

Jay Kim

Web development, data engineering for human for the Earth. I share posts, free resources and inspiration.

Rest
Lifestyle
Hobby
Hobby
Hobby
Hobby
2025 © Jay's Cookbook. Crafted & Designed by Artem Sheludko.