Top "Seaborn" questions

Seaborn is a Python visualization library based on matplotlib.

How to add a title to Seaborn Facet Plot

How do I add a title to this Seaborne plot? Let's give it a title 'I AM A TITLE'. tips = …

python visualization seaborn
Module Seaborn has no attribute '<any graph>'

I am having trouble switching from ggplot2 into seaborn. Currently using Anaconda v. 4.5.8 and Python 3.6.3 Any graph I use cannot …

python python-3.x seaborn
Subplot for seaborn boxplot

I have a dataframe like this import seaborn as sns import pandas as pd %pylab inline df = pd.DataFrame({'a' :[…

python-3.x loops boxplot seaborn
Seaborn load_dataset

I am trying to get a grouped boxplot working using Seaborn as per the example I can get the above …

python boxplot seaborn
Plotting with seaborn using the matplotlib object-oriented interface

I strongly prefer using matplotlib in OOP style: f, axarr = plt.subplots(2, sharex=True) axarr[0].plot(...) axarr[1].plot(...) This makes …

python oop matplotlib seaborn
Seaborn: countplot() with frequencies

I have a Pandas DataFrame with a column called "AXLES", which can take an integer value between 3-12. I am …

python pandas matplotlib data-visualization seaborn
Move legend outside figure in seaborn tsplot

I would like to create a time series plot using seaborn.tsplot like in this example from tsplot documentation, but …

matplotlib seaborn
How can I overlay two graphs in Seaborn?

How can I overlay two graphs in Seaborn? I have two columns in my data I would like to have …

python seaborn
How to change figuresize using seaborn factorplot

%pylab inline import pandas as pd import numpy as np import matplotlib as mpl import seaborn as sns typessns = pd.…

python matplotlib seaborn
Rotate tick labels for seaborn barplot

I am trying to display a chart with rotated x-axis labels, but the chart is not displaying. import seaborn as …

python matplotlib seaborn