5 | | I also added a lot of |
| 5 | Other points. |
| 6 | * I can't get `list_plot` to work with `scale='loglog'` or `'semilogx'` when passing it a list. From your examples - |
| 7 | {{{ |
| 8 | sage: yl = [2**k for k in range(10)] |
| 9 | sage: list_plot(yl, scale='semilogy') # fine |
| 10 | sage: list_plot(yl, scale='loglog') # horiz. axis weird, no points |
| 11 | sage: list_plot_loglog(yl, base=2) # same weird |
| 12 | }}} |
| 13 | I assume this is because there is automatically a change to the list of tuples zipped with `range(n)`, so that there is always a zero involved in the horizontal axis. Here is the real problem. |
| 14 | {{{ |
| 15 | point([(0,1),(1,2),(2,3),(3,4),(4,5)],scale='semilogx',base=2) # doesn't work |
| 16 | }}} |
| 17 | What do you think the "correct" behavior is here? |
| 18 | |
| 19 | I fixed a bunch of minor doc issues. I also added a lot of |