Advance Python Cheat sheet from beginners to advance 2020. With the help This cheat sheet You will be able to Understand Python basic with reference.You can download Free these Python cheats
Python Cheat Sheet for Lists
Python Cheat Sheet for dictionaries
Python Cheat Sheet for if statements and while loops
Python Cheat Sheet for functions
Python Cheat Sheet for classes
Python Cheat Sheet for Files & Exceptions
Python Cheat Sheet for Testing Code
Python Cheat Sheet for Pygame
Python Cheat Sheet for Matplotlib
Python Cheat Sheet for Pygal
Python Cheat Sheet for Django
This Matplotlib cheat sheet introduces you to the basics that you need to plot your data with Python and includes code samples. Data visualization and storytelling with your data are essential skills that every data scientist needs to communicate insights gained from analyses effectively to any audience out there. Python Cheat Sheet STRINGS A sequence of unicode (Python3) or ASCII (Python2) characters. There are many useful Python Modules out there such as numpy and matplotlib and you can even write your own modules! Commands for importing modules are written at the start of a Python file. Matplotlib Cheat Sheet by Justin1209 (Justin1209) via cheatography.com/101982/cs/21196/ Modify Ticks # Specify subplot to modify ax1 = plt.su bpl ot( row, column, index) # Attrib utes ax1.se tx tic.
Note: Advance Programming Tutorial Available on our YouTube Channel : Techprofree . Search on YouTube . Subscribe Our Channel.
Basic Concepts
Integers | 1,2,3,4,5,6,76, |
Floating-point numbers | 2.4 , 2.3, 4.5, 4.5 , |
String | ‘abc’ , ‘ads’ , ‘aaa’ |
Basic Math Operator used in Python
+ | Addition |
– | Subtraction |
* | Multiplication |
/ | Division |
// | Integer division |
** | Exponent |
Examples of Operators
Addition
2+3=5
Subtraction
3-2=1
Multiplication
2*2=4
Division
4/2=2
Integer Division
22//8 =2
Exponent
2**3=8
Comparison Operations
>= | Greater than or Equal to |
<= | Less than or Equal to |
> | Greater Than |
< | Less than |
!= | Not equal to |
Equal to |
Download Full Python Cheat-sheet
Virus note:
- All files are scanned by Team of Techringe.com for viruses
- Kindly Never run .exe’s, .ocx’s, .dll’s etc
- Only Run PDF, Word
Scatter plots are a key tool in any Data Analyst’s arsenal. If you want to see the relationship between two variables, you are usually going to make a scatter plot.
In this article, you’ll learn the basic and intermediate concepts to create stunning matplotlib scatter plots.
Minimal Scatter Plot Example
The following code shows a minimal example of creating a scatter plot in Python.
You perform the following steps:
- Import the matplotlib module.
- Create the data for the
(x,y)
points. - Plot the data using the
plt.plot()
function. The first argument is the iterable ofx
values. The second argument is the iterable ofy
values. The third argument is the style of the scatter points.
Here’s how the result looks like:
However, you may not like the style of this scatter plot. Let’s dive into a more advanced example next!
Matplotlib Scatter Plot Example
Let’s imagine you work in a restaurant. You get paid a small wage and so make most of your money through tips. You want to make as much money as possible and so want to maximize the amount of tips. In the last month, you waited 244 tables and collected data about them all.
We’re going to explore this data using scatter plots. We want to see if there are any relationships between the variables. If there are, we can use them to earn more in future.
- Note: this dataset comes built-in as part of the
seaborn
library.
First, let’s import the modules we’ll be using and load the dataset.
The variable tips_df
is a pandas DataFrame. Don’t worry if you don’t understand what this is just yet. The variables total_bill
and tip are both NumPy arrays.
Let’s make a scatter plot of total_bill
against tip. It’s very easy to do in matplotlib – use the plt.scatter()
function. First, we pass the x-axis variable, then the y-axis one. We call the former the independent variable and the latter the dependent variable. A scatter graph shows what happens to the dependent variable (y) when we change the independent variable (x).
Nice! It looks like there is a positive correlation between a total_bill
and tip
. This means that as the bill increases, so does the tip. So we should try and get our customers to spend as much as possible.
Matplotlib Scatter Plot with Labels
Labels are the text on the axes. They tell us more about the plot and is it essential you include them on every plot you make.
Let’s add some axis labels and a title to make our scatter plot easier to understand.
Much better. To save space, we won’t include the label or title code from now on, but make sure you do.
This looks nice but the markers are quite large. It’s hard to see the relationship in the $10-$30 total bill range.
We can fix this by changing the marker size.
Matplotlib Scatter Marker Size
The s
keyword argument controls the size of markers in plt.scatter()
. It accepts a scalar or an array.
Matplotlib Scatter Marker Size – Scalar
In plt.scatter()
, the default marker size is s=72
.
The docs define s
as:
The marker size in points**2.
This means that if we want a marker to have area 5, we must write s=5**2
.
The other matplotlib functions do not define marker size in this way. For most of them, if you want markers with area 5, you write s=5
. We’re not sure why plt.scatter()
defines this differently.
One way to remember this syntax is that graphs are made up of square regions. Markers color certain areas of those regions. To get the area of a square region, we do length**2
. For more info, check out this Stack Overflow answer.
To set the best marker size for a scatter plot, draw it a few times with different s
values.
A small number makes each marker small. Setting s=1
is too small for this plot and makes it hard to read. For some plots with a lot of data, setting s
to a very small number makes it much easier to read.
Alternatively, a large number makes the markers bigger. This is too big for our plot and obscures a lot of the data.
We think that s=20
strikes a nice balance for this particular plot.
There is still some overlap between points but it is easier to spot. And unlike for s=1
, you don’t have to strain to see the different markers.
Matplotlib Scatter Marker Size – Array
If we pass an array to s
, we set the size of each point individually. This is incredibly useful let’s use show more data on our scatter plot. We can use it to modify the size of our markers based on another variable.
You also recorded the size of each of table you waited. This is stored in the NumPy array size_of_table
. It contains integers in the range 1-6, representing the number of people you served.
Not only does the tip increase when total bill increases, but serving more people leads to a bigger tip as well. This is in line with what we’d expect and it’s great our data fits our assumptions.
Why did we scale the size_of_table
values before passing it to s
? Because the change in size isn’t visible if we set s=1
, …, s=6
as shown below.
So we first square each value and multiply it by 3 to make the size difference more pronounced.
We should label everything on our graphs, so let’s add a legend.
Matplotlib Scatter Legend
To add a legend we use the plt.legend()
function. This is easy to use with line plots. If we draw multiple lines on one graph, we label them individually using the label
keyword. Then, when we call plt.legend()
, matplotlib draws a legend with an entry for each line.
But we have a problem. We’ve only got one set of data here. We cannot label the points individually using the label
keyword.
How do we solve this problem?
We could create 6 different datasets, plot them on top of each other and give each a different size and label. But this is time-consuming and not scalable.
Fortunately, matplotlib has a scatter plot method we can use. It’s called the legend_elements()
method because we want to label the different elements in our scatter plot.
The elements in this scatter plot are different sizes. We have 6 different sized points to represent the 6 different sized tables. So we want legend_elements()
to split our plot into 6 sections that we can label on our legend.
Let’s figure out how legend_elements()
works. First, what happens when we call it without any arguments?
Calling legend_elements()
without any parameters, returns a tuple of length 2. It contains two empty lists.
The docs tell us legend_elements()
returns the tuple (handles, labels)
. Handles are the parts of the plot you want to label. Labels are the names that will appear in the legend. For our plot, the handles are the different sized markers and the labels are the numbers 1-6. The plt.legend()
function accepts 2 arguments: handles and labels.
The plt.legend()
function accepts two arguments: plt.legend(handles, labels)
. As scatter.legend_elements()
is a tuple of length 2, we have two options. We can either use the asterisk *
operator to unpack it or we can unpack it ourselves.
Both produce the same result. The matplotlib docs use method 1. Yet method 2 gives us more flexibility. If we don’t like the labels matplotlib creates, we can overwrite them ourselves (as we will see in a moment).
Currently, handles
and labels
are empty lists. Let’s change this by passing some arguments to legend_elements()
.
There are 4 optional arguments but let’s focus on the most important one: prop
.
Prop
– the property of the scatter graph you want to highlight in your legend. Default is 'colors'
, the other option is 'sizes'
.
We will look at different colored scatter plots in the next section. As our plot contains 6 different sized markers, we set prop='sizes'
.
Now let’s look at the contents of handles
and labels
.
Handles is a list of length 6. Each element in the list is a matplotlib.lines.Line2D
object. You don’t need to understand exactly what that is. Just know that if you pass these objects to plt.legend()
, matplotlib renders an appropriate 'picture'
. For colored lines, it’s a short line of that color. In this case, it’s a single point and each of the 6 points will be a different size.
It is possible to create custom handles but this is out of the scope of this article. Now let’s look at labels
.
Again, we have a list of length 6. Each element is a string. Each string is written using LaTeX notation '$..$'
. So the labels are the numbers 3, 12, 27, 48, 75 and 108.
Why these numbers? Because they are the unique values in the list size_of_table_scaled
. This list defines the marker size.
Xbox gamertag address finder. We used these numbers because using 1-6 is not enough of a size difference for humans to notice.
However, for our legend, we want to use the numbers 1-6 as this is the actual table size. So let’s overwrite labels
.
Note that each element must be a string.
We now have everything we need to create a legend. Let’s put this together.
Perfect, we have a legend that shows the reader exactly what the graph represents. It is easy to understand and adds a lot of value to the plot.
Now let’s look at another way to represent multiple variables on our scatter plot: color.
Matplotlib Scatter Plot Color
Color is an incredibly important part of plotting. It could be an entire article in itself. Check out the Seaborn docs for a great overview.
Color can make or break your plot. Some color schemes make it ridiculously easy to understand the data. Others make it impossible.
However, one reason to change the color is purely for aesthetics.
We choose the color of points in plt.scatter()
with the keyword c
or color
.
You can set any color you want using an RGB or RGBA tuple (red, green, blue, alpha). Each element of these tuples is a float in [0.0, 1.0]
. You can also pass a hex RGB or RGBA string such as '#1f1f1f'
. However, most of the time you’ll use one of the 50+ built-in named colors. The most common are:
'b'
or'blue'
'r'
or'red'
'g'
or'green'
'k'
or'black'
'w'
or'white'
Here’s the plot of total_bill
vs tip
using different colors
For each plot, call plt.scatter()
with total_bill
and tip and set color
(or c
) to your choice
Note: we put the plots on one figure to save space. We’ll cover how to do this in another article (hint: use plt.subplots()
)
Matplotlib Scatter Plot Different Colors
Our restaurant has a smoking area. We want to see if a group sitting in the smoking area affects the amount they tip.
We could show this by changing the size of the markers like above. But it doesn’t make much sense to do so. A bigger group logically implies a bigger marker. But marker size and being a smoker don’t have any connection and may be confusing for the reader.
Instead, we will color our markers differently to represent smokers and non-smokers.
We have split our data into four NumPy arrays:
- x-axis – non_smoking_total_bill, smoking_total_bill
- y-axis – non_smoking_tip, smoking_tip
If you draw multiple scatter plots at once, matplotlib colors them differently. This makes it easy to recognize the different datasets.
This looks great. It’s very easy to tell the orange and blue markers apart. The only problem is that we don’t know which is which. Let’s add a legend.
As we have 2 plt.scatter()
calls, we can label each one and then call plt.legend()
.
The sims 4 self harm scars.
Much better. It seems that the smoker’s data is more spread out and flat than non-smoking data. This implies that smokers tip about the same regardless of their bill size. Let’s try to serve less smoking tables and more non-smoking ones.
This method works fine if we have separate data. But most of the time we don’t and separating it can be tedious.
Thankfully, like with size
, we can pass c
an array/sequence.
Let’s say we have a list smoker
that contains 1 if the table smoked and 0 if they didn’t.
Note: if we pass an array/sequence, we must the keyword c
instead of color
. Python raises a ValueError
if you use the latter.
Great, now we have a plot with two different colors in 2 lines of code. But the colors are hard to see.
Matplotlib Scatter Colormap
A colormap is a range of colors matplotlib uses to shade your plots. We set a colormap with the cmap
argument. All possible colormaps are listed here.
We’ll choose 'bwr'
which stands for blue-white-red. For two datasets, it chooses just blue and red.
If color theory interests you, we highly recommend this paper. In it, the author creates bwr
. Then he argues it should be the default color scheme for all scientific visualizations.
Much better. Now let’s add a legend.
As we have one plt.scatter()
call, we must use scatter.legend_elements()
like we did earlier. This time, we’ll set prop='colors'
. But since this is the default setting, we call legend_elements()
without any arguments.
We unpack our legend into handles
and labels
like before. Then we print labels to see the order matplotlib chose. It uses an ascending ordering. So 0 (non-smokers) is first.
Now we overwrite labels
with descriptive strings and pass everything to plt.legend()
.
This is a great scatter plot. It’s easy to distinguish between the colors and the legend tells us what they mean. As smoking is unhealthy, it’s also nice that this is represented by red as it suggests 'danger'
.
What if we wanted to swap the colors?
Do the same as above but make the smoker
list 0 for smokers and 1 for non-smokers.
Finally, as 0 comes first, we overwrite labels
in the opposite order to before.
Matplotlib Scatter Marker Types
Instead of using color to represent smokers and non-smokers, we could use different marker types.
There are over 30 built-in markers to choose from. Plus you can use any LaTeX expressions and even define your own shapes. We’ll cover the most common built-in types you’ll see. Thankfully, the syntax for choosing them is intuitive.
In our plt.scatter()
call, use the marker
keyword argument to set the marker type. Usually, the shape of the string reflects the shape of the marker. Or the string is a single letter matching to the first letter of the shape.
Here are the most common examples:
'o'
– circle (default)'v'
– triangle down'^'
– triangle up's'
– square'+'
– plus'D'
– diamond'd'
– thin diamond'$..$'
– LaTeX syntax e.g.'$pi$'
makes each marker the Greek letter π.
Let’s see some examples
For each plot, call plt.scatter()
with total_bill
and tip and set marker
to your choice
At the time of writing, you cannot pass an array to marker
like you can with color
or size
. There is an open GitHub issue requesting that this feature is added. But for now, to plot two datasets with different markers, you need to do it manually.
Remember that if you draw multiple scatter plots at once, matplotlib colors them differently. This makes it easy to recognise the different datasets. So there is little value in also changing the marker type.
To get a plot in one color with different marker types, set the same color for each plot and change each marker.
Most would agree that different colors are easier to distinguish than different markers. But now you have the ability to choose.
Summary
You now know the 4 most important things to make excellent scatter plots.
You can make basic matplotlib scatter plots. You can change the marker size to make the data easier to understand. And you can change the marker size based on another variable.
You’ve learned how to choose any color imaginable for your plot. Plus you can change the color based on another variable.
To add personality to your plots, you can use a custom marker type.
Finally, you can do all of this with an accompanying legend (something most Pythonistas don’t know how to use!).
Where To Go From Here
Do you want to earn more money? Are you in a dead-end 9-5 job? Do you dream of breaking free and coding full-time but aren’t sure how to get started?
Becoming a full-time coder is scary. There is so much coding info out there that it’s overwhelming.
Most tutorials teach you Python and tell you to get a full-time job.
That’s ok but why would you want another office job?
Don’t you crave freedom? Don’t you want to travel the world? Don’t you want to spend more time with your friends and family?
There are hardly any tutorials that teach you Python and how to be your own boss. And there are none that teach you how to make six figures a year.
Until now.
Matplotlib Cheatsheets
We are full-time Python freelancers. We work from anywhere in the world. We set our own schedules and hourly rates. Our calendars are booked out months in advance and we have a constant flow of new clients.
Sounds too good to be true, right?
Not at all. We want to show you the exact steps we used to get here. We want to give you a life of freedom. We want you to be a six-figure coder.
Click the link below to watch our pure-value webinar. We show you the exact steps to take you from where you are to a full-time Python freelancer. These are proven, no-BS methods that get you results fast.
It doesn’t matter if you’re a Python novice or Python pro. If you are not making six figures/year with Python right now, you will learn something from this webinar.
Click the link below now and learn how to become a Python freelancer.
References
Python Matplotlib Cheat Sheet Pdf
Expert Writer & Content Creator – Data Science & Machine Learning.
—–
I help education companies create engaging blog and video content teaching Data Science to beginners. Unlike my competitors, I learn new concepts every day and so understand what it’s like to be a student.
My articles are easy-to-understand, effective and enjoyable to read. My videos are upbeat, engaging and detailed.
—–
To work with me, please reach out on Upwork
https://tinyurl.com/hire-adam-murphy