Skip to content

Instantly share code, notes, and snippets.

@jamesboyd2008
jamesboyd2008 / plot1.py
Created February 4, 2019 07:49
This is a way to generate a scatter plot with Python and Matplotlib.
# 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])
@jamesboyd2008
jamesboyd2008 / README-Template.md
Created July 18, 2018 02:46 — forked from PurpleBooth/README-Template.md
A template to make good README.md

Project Title

One Paragraph of project description goes here

Getting Started

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.

Prerequisites