This is the same mathematical function written in Python. It returns 2 * x + 80, where x is the input:
def my_function(x): return 2*x + 80 print (my_function(135)) |
Try replacing x with 140 and 150 in the function.
Here, we plot the same graph as before, but with the axis formatted differently. The maximum value for the y-axis is now 400, and for the x-axis, it is 150.
import matplotlib.pyplot as plt health_data.plot(x =‘Average_Pulse’, y=‘Calorie_Burnage’, kind=‘line’), plt.ylim(ymin=0, ymax=400) plt.xlim(xmin=0, xmax=150) plt.show() |