From 1888730a2004d719bb955c4e84c21550e3ae893c Mon Sep 17 00:00:00 2001 From: Joseph Shanks Date: Tue, 21 Apr 2020 14:15:21 -0700 Subject: [PATCH] add stuff --- .ipynb_checkpoints/graphs-checkpoint.py | 7 +++++++ graphs.py | 5 ++++- 2 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 .ipynb_checkpoints/graphs-checkpoint.py diff --git a/.ipynb_checkpoints/graphs-checkpoint.py b/.ipynb_checkpoints/graphs-checkpoint.py new file mode 100644 index 0000000..409324a --- /dev/null +++ b/.ipynb_checkpoints/graphs-checkpoint.py @@ -0,0 +1,7 @@ +#! python3 + +def graph(): + return + +def scatterplot(x,y): + return plt.scatter(x,y) \ No newline at end of file diff --git a/graphs.py b/graphs.py index 952c02d..409324a 100644 --- a/graphs.py +++ b/graphs.py @@ -1,4 +1,7 @@ #! python3 def graph(): - return \ No newline at end of file + return + +def scatterplot(x,y): + return plt.scatter(x,y) \ No newline at end of file