2019-02-09 04:56:37 +0200 | received badge | ● Student (source) |
2019-02-08 08:53:33 +0200 | commented answer | How can I avoit the scientific notation on the y-axis? I want to show the dramatic of the growth of population. With the log-scaling, this is not visible for most eyes. So I found sage: P = plot(exp(0.0178x)1.9833/10^15, (x,0,2100)) ....: from matplotlib.ticker import FormatStrFormatter ....: P.SHOW_OPTIONS['tick_formatter']=(None, FormatStrFormatter('%d' " Mrd.")) ....: P, which does a good 'job'. (Sorry, I don't know how to set a graphik into a comment) |
2019-02-06 10:40:49 +0200 | commented answer | How can I avoit the scientific notation on the y-axis? Thank you John, that helped. I am just at the very beginning learning Sage/Phyton, so it will take some time to find a 'good' formatting. The Idea is to show the growth of the worlds population in a readable plot |
2019-02-05 23:58:51 +0200 | answered a question | How can I avoit the scientific notation on the y-axis? Thanks for the response. Unfortunately, within the plotcommand, plot(exp(0.017*x),(x,0,2000)).n() I get the following message AttributeError: 'Graphics' object has no attribute 'n' |
2019-02-05 22:56:54 +0200 | asked a question | How can I avoit the scientific notation on the y-axis? Example: plot(exp(0.017*x), (x,0,2000)) |