> For the complete documentation index, see [llms.txt](https://igb.mit.edu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://igb.mit.edu/mini-courses/python/data-processing-with-python/seaborn/basic-plotting.md).

# 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](https://seaborn.pydata.org/generated/seaborn.lineplot.html)]

### Bar Plot

Please see seaborn.barplot() function \[[here](https://seaborn.pydata.org/generated/seaborn.barplot.html)]

### Histogram Plot

Please see seaborn.histplot() function \[[here](https://seaborn.pydata.org/generated/seaborn.histplot.html)]

### Box Plot

Please see seaborn.boxplot() function \[[here](https://seaborn.pydata.org/generated/seaborn.boxplot.html)]
