One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
# This program generates a scatter plot. | |
import numpy as np | |
import matplotlib.pyplot as plt | |
colors = ['b', 'c', 'y', 'm', 'r', 'g'] | |
# twoV | |
x = np.array([8, 6, 9, 8.5, 7.5, 6]) | |
y = np.array([9, 10, 11, 8.5, 11.5, 11]) |