Skip to content

Commit

Permalink
add stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
josephshanks committed Apr 21, 2020
1 parent 942fa3a commit 1888730
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 7 additions & 0 deletions .ipynb_checkpoints/graphs-checkpoint.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#! python3

def graph():
return

def scatterplot(x,y):
return plt.scatter(x,y)
5 changes: 4 additions & 1 deletion graphs.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
#! python3

def graph():
return
return

def scatterplot(x,y):
return plt.scatter(x,y)

0 comments on commit 1888730

Please sign in to comment.