2021-02-22 02:31:16 +0200 | received badge | ● Famous Question (source) |
2019-09-05 17:22:12 +0200 | received badge | ● Notable Question (source) |
2018-04-30 22:17:24 +0200 | received badge | ● Famous Question (source) |
2017-04-11 03:28:55 +0200 | received badge | ● Popular Question (source) |
2017-02-17 23:38:52 +0200 | received badge | ● Popular Question (source) |
2017-02-17 23:38:52 +0200 | received badge | ● Notable Question (source) |
2015-11-18 02:06:23 +0200 | commented question | Save plots into a multi-page pdf? Thanks for replying. Yes, it was an admittedly naive attempt to see if the PdfPages import would work as-is, and I didn't really expect it would. Now I'm hunting around to see if there's any other way of achieving the same result. If not, it's easy enough to create a pdf from individual plot images. |
2015-11-17 13:24:36 +0200 | asked a question | Save plots into a multi-page pdf? I am creating a series of plots that I would like to save into a multi-page pdf file. I found a couple of references about using matplotlib in pylab to do so, but I can't get it to work in SageMath. Is it possible to do this in SageMath? Here's what I tried: ... and it produces this error: |
2015-11-16 14:34:15 +0200 | received badge | ● Nice Question (source) |
2015-11-16 14:04:53 +0200 | received badge | ● Student (source) |
2015-11-15 22:04:53 +0200 | commented answer | Error when using 'for in range()' but not ' for in [..]' Ah, that explains it, thank you. I had read that the Python interpreter would automatically cast the integers to floats when dividing, but I now realise that was referring to Python 3, and I am using Python 2.7. |
2015-11-15 17:33:12 +0200 | asked a question | Error when using 'for in range()' but not ' for in [..]' I've just started using SageMath today, and I've been pleasantly surprised at how good it is. I've been working through tutorials and playing around with plotting functions without any major problems until I wrote a series of nested for-loops using range values. I'm getting the error 'ValueError("plot start point and end point must be different")', but only when the outer loop uses 'for r1 in range(3,6)', not when I do exactly the same thing using 'for r1 in [3..5]'. Am I doing something newbie-naive here, or is this a bug? Here's the full script: |