Question: import matplotlib.pyplot as plt # Given data x _ values = [ 1 , 2 , 3 , 4 , 5 ] y _ values

import matplotlib.pyplot as plt
# Given data
x_values =[1,2,3,4,5]
y_values =[3,7,8,9,12]
# Plotting the graph
plt.scatter(x_values, y_values, label='Correlated values')
# Adding labels and title
plt.xlabel('X')
plt.ylabel('Y')
plt.title('Correlation between X and Y')
# Adding a legend
plt.legend()
# Display the plot
plt.show()

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!