Skip to content

Commit

Permalink
update live_plotter figsize
Browse files Browse the repository at this point in the history
  • Loading branch information
tongplw committed Jul 20, 2020
1 parent d6782e0 commit 56d3a60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pylive.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
def live_plotter(x_vec, y1_data, line1, title='', pause_time=1e-2):
if line1 == []:
plt.ion()
fig = plt.figure(figsize=(13, 6))
fig = plt.figure(figsize=(15, 3))
ax = fig.add_subplot(111)
line1, = ax.plot(x_vec, y1_data,'-o',alpha=0.8)
plt.ylabel('Y Label')
Expand Down

0 comments on commit 56d3a60

Please sign in to comment.