0% found this document useful (0 votes)
19 views

Scatter Plot

Uploaded by

Surajit Acharya
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
19 views

Scatter Plot

Uploaded by

Surajit Acharya
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

import matplotlib.

pyplot as plt
girls_grades = [89, 90, 70, 89, 100, 80, 90, 100, 80, 34]
boys_grades = [30, 29, 49, 48, 100, 48, 38, 45, 20, 30]
grades_range = [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
fig=plt.figure()
ax=fig.add_axes([0,0,1,1])
ax.scatter(grades_range, girls_grades, color='r')
ax.scatter(grades_range, boys_grades, color='b')
ax.set_xlabel('Grades Range')
ax.set_ylabel('Grades Scored')
ax.set_title('scatter plot')
plt.show()

=======================================
import numpy as np
import matplotlib.pyplot as plt

# Create data
N = 500
x = np.random.rand(N)
y = np.random.rand(N)
colors = (0,0,0)
area = np.pi*3

# Plot
plt.scatter(x, y, s=area, c=colors, alpha=0.5)
plt.title('Scatter plot pythonspot.com')
plt.xlabel('x')
plt.ylabel('y')
plt.show()
=========================================
Draw a scatter plot for height of 5 girl and 5 boys as
gril=[5,4,6,3]
boys=[6,4,7,5]
weight as [10,20,30,40]
with proper label and title
============================================
marker=value

marker value symbol


----------------------------------
s square
o cirle
^ Triangle up
v Triangle down
> Triangle right
< Triangle left
d Diamond
p Pentagon
h Hexagon
8 Octagon
+ Plus
x Cross

You might also like