Course Content
Python Indentation, Comments and Variables
0/2
Object Oriented Programming in Python
0/1
Exception Handling in Python
0/1
Sending emails with Python
0/1
Unit test in python programming
0/1
Python programming (zero to advance!!!)
About Lesson

Scatter plots

If you want to create a plot without a line, you can use the `scatter()` function in Matplotlib to create a scatter plot. Scatter plots are useful for visualizing individual data points rather than connecting them with lines.

 

WHEN TO USE SCATTER PLOTS

Scatterplots are used to visualize the relationship between two variables by displaying individual data points on a two-dimensional graph. Here are some scenarios where scatterplots are commonly used:

1. Correlation Analysis: Scatterplots are useful for assessing the relationship between two variables to determine if there is a correlation between them. For example, you can use a scatterplot to visualize the relationship between temperature and ice cream sales to see if warmer temperatures lead to higher sales.

2. Outlier Detection: Scatterplots can help identify outliers or anomalies in the data. Outliers are data points that deviate significantly from the overall pattern of the data. By plotting the data points on a scatterplot, outliers can be visually identified as points that lie far away from the main cluster of points.

3. Pattern Recognition: Scatterplots can reveal patterns or trends in the data that may not be obvious from looking at summary statistics alone. For example, scatterplots can show if there is a linear relationship, a quadratic relationship, or no relationship at all between two variables.

4. Comparison of Groups: Scatterplots can be used to compare the distributions of two or more groups of data. By plotting the data points for each group on the same scatterplot, you can visually compare their distributions and identify any differences or similarities between them.

5. Regression Analysis: Scatterplots are often used in regression analysis to visualize the relationship between the independent and dependent variables. In linear regression, for example, a scatterplot can be used to assess the linearity of the relationship between the variables and to identify any potential outliers or influential points.

In summary, scatterplots are a powerful visualization tool that can help uncover patterns, trends, and relationships in the data, making them an essential part of exploratory data analysis and hypothesis testing.

 

 

Here’s how you can create a scatter plot in Matplotlib:

“`python
import matplotlib.pyplot as plt

# Sample data
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]

# Create a scatter plot
plt.scatter(x, y)

# Add labels and title
plt.xlabel(‘X-axis’)
plt.ylabel(‘Y-axis’)
plt.title(‘Scatter Plot’)

# Display the plot
plt.show()
“`

In this example, we use the `scatter()` function instead of the `plot()` function to create a scatter plot. The `scatter()` function takes the x and y coordinates of the data points as input. We then add labels to the axes and a title to the plot using the `xlabel()`, `ylabel()`, and `title()` functions, and finally display the plot using the `show()` function.

This will create a scatter plot where each data point is represented by a marker without any connecting lines between the points. You can customize the appearance of the markers using additional parameters in the `scatter()` function, such as `color`, `marker`, `s` (size), `alpha` (transparency), etc., to suit your preferences and data visualization needs.

Compare scatter Plots

Comparing scatter plots using Matplotlib:

“`python
import matplotlib.pyplot as plt

# Sample data
x1 = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]

x2 = [1, 2, 3, 4, 5]
y2 = [5, 7, 6, 8, 9]

# Plotting the first scatter plot
plt.scatter(x1, y1, color=’blue’, label=’Dataset 1′)

# Plotting the second scatter plot
plt.scatter(x2, y2, color=’red’, label=’Dataset 2′)

# Adding labels and title
plt.xlabel(‘X-axis’)
plt.ylabel(‘Y-axis’)
plt.title(‘Comparison of Scatter Plots’)

# Adding a legend
plt.legend()

# Display the plot
plt.show()
“`

In this example, we have two sets of sample data (`x1`, `y1`) and (`x2`, `y2`). We plot both sets of data as scatter plots on the same graph, using different colors and labels to distinguish them. Finally, we add labels, a title, and a legend to the plot for clarity.

 

Multiple Points

If you have multiple sets of points that you want to plot on the same graph, you can call the `scatter()` function multiple times with different sets of data. Each call to `scatter()` will add a new set of points to the plot. Here’s how you can plot multiple sets of points in Matplotlib:

“`python
import matplotlib.pyplot as plt

# Sample data for two sets of points
x1 = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]

x2 = [1, 2, 3, 4, 5]
y2 = [1, 3, 5, 7, 9]

# Create a scatter plot for the first set of points
plt.scatter(x1, y1, color=’blue’, label=’Set 1′)

# Create a scatter plot for the second set of points
plt.scatter(x2, y2, color=’red’, label=’Set 2′)

# Add labels and title
plt.xlabel(‘X-axis’)
plt.ylabel(‘Y-axis’)
plt.title(‘Multiple Sets of Points’)

# Add a legend
plt.legend()

# Display the plot
plt.show()
“`

In this example, we have two sets of points represented by the lists `x1`, `y1` and `x2`, `y2`. We call the `scatter()` function twice, first for the points in `Set 1` and then for the points in `Set 2`. We specify different colors for each set of points using the `color` parameter. Additionally, we provide a label for each set of points using the `label` parameter.

After plotting both sets of points, we add labels to the axes and a title to the plot using the `xlabel()`, `ylabel()`, and `title()` functions. We also add a legend to the plot using the `legend()` function to distinguish between the different sets of points.

Finally, we display the plot using the `show()` function. This will generate a plot with two sets of points, each represented by markers of different colors, and a legend indicating which set corresponds to each color.

Matplotlib Markers

Markers in Matplotlib are symbols used to indicate individual data points on a plot. They can enhance the readability of a plot by making it easier to distinguish between different data points or categories. Matplotlib provides a variety of marker styles that you can use to customize your plots.

Here are some commonly used marker styles in Matplotlib:

1. Circle: Represented by the marker `’o’`, this is the default marker style.
2. Square: Represented by the marker `’s’`, it displays data points as squares.
3. Diamond: Represented by the marker `’d’`, it displays data points as diamonds.
4. Triangle Up: Represented by the marker `’^’`, it displays data points as triangles pointing upwards.
5. Triangle Down: Represented by the marker `’v’`, it displays data points as triangles pointing downwards.
6. Cross: Represented by the marker `’x’`, it displays data points as crosses.
7. Plus: Represented by the marker `’+’`, it displays data points as plus signs.
8. Dot: Represented by the marker `’.’`, it displays data points as small dots.

You can customize the appearance of markers by specifying various properties such as color, size, and transparency. For example, you can set the marker color using the `markerfacecolor` parameter and the marker size using the `markersize` parameter.

Here’s an example of how to create a scatter plot with customized markers in Matplotlib:

“`python
import matplotlib.pyplot as plt

# Sample data
x = [1, 2, 3, 4, 5]
y = [10, 15, 20, 25, 30]

# Create a scatter plot with customized markers
plt.scatter(x, y, marker=’o’, color=’blue’, label=’Circle’)
plt.scatter(x, [y_point – 5 for y_point in y], marker=’s’, color=’green’, label=’Square’)
plt.scatter(x, [y_point – 10 for y_point in y], marker=’d’, color=’red’, label=’Diamond’)

# Add labels and legend
plt.xlabel(‘X-axis’)
plt.ylabel(‘Y-axis’)
plt.title(‘Scatter Plot with Customized Markers’)
plt.legend()

# Show plot
plt.show()
“`

In this example, we create a scatter plot with three different marker styles: circle, square, and diamond. Each marker style is associated with a different color and labeled accordingly in the legend. You can customize the markers further by adjusting additional properties as needed.

 

Join the conversation