Overflow in list_plot?
The code:
l = [1.4312706585e12, -1.4575266189e12, 4.9459419278e11, -4.8146621292e12]
list_plot(l).show()
shows the next image:
Is that an intended bebaviour?
The code:
l = [1.4312706585e12, -1.4575266189e12, 4.9459419278e11, -4.8146621292e12]
list_plot(l).show()
shows the next image:
Is that an intended bebaviour?
Use:
l = [1.4312706585e12, -1.4575266189e12, 4.9459419278e11, -4.8146621292e12]
list_plot(l,frame=True)
Thank you! It would work just fine for me.
Asked: 1 year ago
Seen: 116 times
Last updated: Nov 30 '23