From the course: Python for Data Science Tips, Tricks, & Techniques

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Basic charts in ggplot

Basic charts in ggplot - Python Tutorial

From the course: Python for Data Science Tips, Tricks, & Techniques

Start my 1-month free trial

Basic charts in ggplot

- [Instructor] A big part of finding insights from data is visually exploring that data, and presenting it even, to your users in this way. There really isn't a better library out there than ggplot for this. So in this clip, I'm going to show you how to do some basic charts in ggplot. I'll start by opening the exercise files for here, and what I'm going to do is import my libraries, but I need to install ggplot. So I'm going to copy this command here, and I'm going to go back and open a new terminal window from Jupyter Notebooks. I'm going to run this command, and it's just going to install ggplot for me. Once that's done, I'm ready to begin. I'll go back to our notebook, and we'll just run the import here. I'm going to get some errors here about different versions and all that, but these are just warnings, and in the future this may change, but right now this is going to work fine for us. Now with these different libraries here, and the ones I'm using are matplotlib, ggplot, pandas…

Contents