본문 바로가기
파이썬/사이트추천

seaborn palette, matplotlib heatmap 색

by 한국수달보호협회장 2022. 6. 14.

 

 

 

seaborn 공식사이트

https://seaborn.pydata.org/tutorial/color_palettes.html

 

Choosing color palettes — seaborn 0.11.2 documentation

Components of color Because of the way our eyes work, a particular color can be defined using three components. We usually program colors in a computer by specifying their RGB values, which set the intensity of the red, green, and blue channels in a displa

seaborn.pydata.org

 

sns.box(x= , y= , data= , palette='Set3') 이런식

 

 

 

https://hleecaster.com/python-seaborn-color/

 

[seaborn] color 팔레트 선택하기 - 아무튼 워라밸

본 포스팅에서는 seaborn에서 색상을 선택하는 방법에 대해 소개한다.

hleecaster.com

seaborn built-in 컬러도 말해주고 용도에 따라 어떤 형식의 컬러를 써야하는지 추천해준다.

 

 

https://data101.oopy.io/4233e3f0-9ca1-41ad-bdd9-b3a26f7a2160

 

Choosing color palettes

Choosing color palettes - seaborn 0.10.1 documentation

data101.oopy.io

seaborn palette 설명법에 대해 자세히 설명해준다.

보통 기본적으로 제공하는 Sequential 색상이 연하게 -> 진하게 순서인데 바꾸고 싶으면 색상명뒤에 _r을 붙이면 된다는 걸 여기서 알았다. ex) 'RdPu_r'

 

-색 일련-

https://matplotlib.org/3.2.1/tutorials/colors/colormaps.html

 

Choosing Colormaps in Matplotlib — Matplotlib 3.2.1 documentation

Note Click here to download the full example code Choosing Colormaps in Matplotlib Matplotlib has a number of built-in colormaps accessible via matplotlib.cm.get_cmap. There are also external libraries like [palettable] and [colorcet] that have many extra

matplotlib.org

matplotlib 공식사이트. heatmap built-in 컬러

seaborn palette설정때 여기에 써져있는색깔 그대로 사용가능하다. 굳이 Seaborn과 Matplotlib 구분없는것 같다

 

-단일 색-

https://matplotlib.org/2.0.2/examples/color/named_colors.html

 

color example code: named_colors.py — Matplotlib 2.0.2 documentation

color example code: named_colors.py (Source code, png, pdf) """ ======================== Visualizing named colors ======================== Simple plot example with the named colors and its visual representation. """ from __future__ import division import m

matplotlib.org