I have the following mathematical function in Python:
y = max(0, |x| - epsilon)
To plot it I have done the usual
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-100,100,400)
y = np.maximum(0, np.absolute(x) - 10)
plt.plot(x,y)
plt.show()
but I want to plot it without assigning any value to epsilon as shown in the picture

yis an entire family of functions, one function for each value ofepsilon. Looking at it anther way,yis a higher-order function whose limit as epsilon approaches 0 isy = |x|.