PL03-Topic02, seaborn
Back to the previous page
List of posts to read before reading this article
Contents
- Installation
- Relational plots
- Categorical plots
- Distribution plots
- Regression plots
- Matrix plots
- Multi-plot grids
- Style control
- Color palettes
- Palette widgets
- Utility functions
Installation
For linux
$
For windows
Version Control
Relational plots
relplot
scatterplot
lineplot
Categorical plots
catplot
stripplot
swarmplot
boxplot
violinplot
boxenplot
pointplot
barplot
countplot
Distribution plots
jointplot
pairplot
distplot
kdeplot
rugplot
Regression plots
lmplot
regplot
residplot
Matrix plots
heatmap
clustermap
Multi-plot grids
Facet grids
FacetGrid
FacetGrid.map
FacetGrid.map_dataframe
Pair grids
PairGrid
PairGrid.map
PairGrid.map_diag
PairGrid.map_offdiag
PairGrid.map_lower
PairGrid.map_upper
Joint grids
JointGrid
JointGrid.plot
JointGrid.plot_joint
JointGrid.plot_marginals
Style control
set
import seaborn as sns
sns.set(style='darkgrid')
sns.set(style='whitegrid')
sns.set(style='dark')
sns.set(style='white')
sns.set(style='ticks')
axes_style
set_style
import seaborn as sns
sns.set_style("darkgrid")
sns.set_style("whitegrid")
sns.set_style("dark")
sns.set_style("white")
sns.set_style("ticks")
plotting_context
set_context
set_color_codes
reset_default
reset_orig
Color palettes
set_palette
color_palette
husl_palette
hls_palette
cubehelix_palette
dark_palette
light_palette
diverging_palette
blend_palette
xkcd_palette
crayon_palette
mpl_palette
Palette widgets
choose_colorbrewer_palette
choose_cubehelix_palette
choose_light_palette
choose_dark_palette
choose_diverging_palette
Utility functions
load_dataset
despine
desaturate
saturate
set_hls_values
List of posts followed by this article
Reference