Basic Plotting

Getting Started

import seaborn as sns
from matplotlib import pyplot as plt
import pandas as pd
sns.set_context('talk') #on your screen, replace 'talk' with 'notebook' or 'paper' or 'poster'
%pylab inline

Line Plot

Please see seaborn.lineplot() function [here]

Bar Plot

Please see seaborn.barplot() function [here]

Histogram Plot

Please see seaborn.histplot() function [here]

Box Plot

Please see seaborn.boxplot() function [here]

Last updated

Massachusetts Institute of Technology