Skip to content

Commit

Permalink
Remove bad matplotlib param in newanimation.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jpgill86 committed Oct 12, 2020
1 parent b6bed80 commit 788a35a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions newanimation.py
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
#n3graph.set_title('Odontophore Input', fontsize = 4)
#n3graph.set_xlabel('Time (seconds)', fontsize = 2)
n3graph.set_ylabel('Odontophore Frequency (Hz)', fontsize = 2)
n3graph.axis([0, 9, -5, 40], fontsize = 2)
n3graph.axis([0, 9, -5, 40])
n3graph.set_xticks(timeticks)
n3graph.set_yticks(n3ticks)
n3graph.tick_params(labelsize=3)
Expand Down Expand Up @@ -159,7 +159,7 @@
#hingegraph.set_title('Hinge Input', fontsize = 4)
#hingegraph.set_xlabel('Time (seconds)', fontsize = 2)
hingegraph.set_ylabel('Hinge Frequency (Hz)', fontsize = 2)
hingegraph.axis([0, 9, -5, 25], fontsize = 2)
hingegraph.axis([0, 9, -5, 25])
hingegraph.set_xticks(timeticks)
hingegraph.set_yticks(hingeticks)
hingegraph.tick_params(labelsize=3)
Expand Down

0 comments on commit 788a35a

Please sign in to comment.