Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Yes, there is a way to do so:

plot([12*x+23,15*x+5], (x, 0, 10), aspect_ratio=.05, ymax=160)

In fact, you can combine plot and show to control more precisely the window where the graph is drawn:

graph = plot([12*x+23,15*x+5], (x, 0, 10), aspect_ratio=.05)
show(graph, xmin=3, xmax=9, ymin=40, ymax=160)