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