I am new in Python with no coding and programming experience and I am trying to create a forecast model via Prophet in Python. Inserted below is the sample code from https://facebook.github.io/prophet/docs/saturating_forecasts.html#saturating-minimum for the Saturating Minimum, I would like to ask what does the value "10" means in the first line of the code.
df['y'] = 10 - df['y']
df['cap'] = 6
df['floor'] = 1.5
future['cap'] = 6
future['floor'] = 1.5
m = Prophet(growth='logistic')
m.fit(df)
fcst = m.predict(future)
fig = m.plot(fcst)