Change the equation of the line (indicated by the LINE EQUATION comment in the previous code) to the following:
$$
y=\operatorname{int}(0.05 * x)-100
$$
The value of 100 at the end is the $y$ intercept and as such (because the $y$ axis is flipped), the line will cross the $y$ axis further up the screen.
But what of int $(0.05 * x)$ ? Well, 0.05 is the slope, which in this case is very flat. The typecast to an integer by wrapping the value with brackets and typing int at the front are to appease the set_at ( ) method. Why? Well, let's consider something. The window is 1,000 pixels wide by 800 pixels high. If you wanted to plot a point at pixel $(10,10)$, I'm sure you can determine where that would appear. However, what if you wanted to plot a point at $(10.5,10)$ ?