Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

Changing the rotation of tick labels in Seaborn heatmap

I'm plotting a heatmap in Seaborn. The problem is that I have too many squares in my plot so the …

python heatmap seaborn
Plot multiple columns of Pandas DataFrame using Seaborn

suppose I have DataFrame with columns ['X_Axis','col_2','col_3',...,'col_n',] I need to plot the first …

python pandas matplotlib dataframe seaborn
Seaborn.countplot : order categories by count?

I know that seaborn.countplot has the attribute order which can be set to determine the order of the categories. …

python pandas plot seaborn
Seaborn showing scientific notation in heatmap for 3-digit numbers

I'm creating a heatmap from a pandas pivot_table as below: table2 = pd.pivot_table(df,values='control',columns='Year',…

python pandas matplotlib seaborn
Change xticklabels fontsize of seaborn heatmap

Here is my question: I plot 7 variable's coefficient using sns.clustermap() figure here: http://i4.tietuku.com/ab10ee8d1983361…

python matplotlib seaborn
seaborn scatterplot marker size for ALL markers

I can't find out anywhere how to change the marker size on seaborn scatterplots. There is a size option listed …

python matplotlib seaborn
ValueError: Grouper for <something> not 1-dimensional

I'm have the following code which creates a table and a barplot via seaborn. #Building a dataframe grouped by the # …

python pandas seaborn
Stop seaborn plotting multiple figures on top of one another

I'm starting to learn a bit of python (been using R) for data analysis. I'm trying to create two plots …

python plot seaborn
How to add percentages on top of bars in seaborn?

Given the following count plot how do I place percentages on top of the bars? import seaborn as sns sns.…

python matplotlib seaborn
How do I plot two countplot graphs side by side in seaborn?

I am trying to plot two countplots showing the counts of batting and bowling. I tried the following code: l=[…

python pandas matplotlib seaborn