apply(lambda x:pr.get(x, mean_pr)) code example
Example: lambda in pandas
Series.apply(lambda x: x**2)
#x represent the cell value and x**2 is your function
Series.apply(lambda x: x**2)
#x represent the cell value and x**2 is your function