From the course: Data Visualization with Matplotlib and Seaborn

Unlock this course with a free trial

Join today to access over 25,200 courses taught by industry experts.

Basic formatting options

Basic formatting options

- [Instructor] Let's take a look at a few other chart formatting options in Seaborn. One thing we're going to show you is that we can actually use our Matplotlib formatting syntax on Seaborn charts. But there are a few handy things to know when plotting with Seaborn. And one of those is that if we're working with a chart type, like a bar chart or a line chart, we can use the Matplotlib arguments as keyword arguments in Seaborn plotting functions to format our charts accordingly. So these are going to be passed to the Matplotlib object that Seaborn creates internally. So once again, we are plotting our hotel revenue sum without confidence intervals. And if I pass my ls argument or my color arguments, these are coming from Matplotlib itself, we'll end up with a dash line plotted in green here. And so again, we're going to cover integration with Matplotlib later. But when it comes to these individual chart types, just know that many of the arguments we learned for formatting them will…

Contents