How to specifiy a formula for combined linear and sigmoid function

394 Views Asked by At

There is a dataframe df_heat with heat_output over temp. As a first approximation you may fit the curve with two linear model and one breaking point:

lm(data = df_heat, heat_output ~ temp + I(pmax(17-temp, 0)))

enter image description here

I like to fit a linear model for low temperatures and and a sigmoid function for higher temperatures like suggested in this paper (german). The breaking point can be a fixed value at 5 °C.

enter image description here

How can I specify this formula in R?

1

There are 1 best solutions below

2
On

A model is proposed below. The equation involves four parameters a,c,tc and lambda. The shape of the curve is controled by the parameter lambda. Non-linear regression can be used to evaluate the four parameters and fit to data.

enter image description here