I have a dataset, which I want to adjust to the following model and get the values of parameters a and b
x <- c(31.56750292, 26.91965284, 23.40296193, 15.63530835, 0)
y <- c(1.132561597, 1.340922478, 1.284691753, 1.610823279, 0)
DF <- data.frame(x, y)
my_model <- lm(y ~ (a * b * x)/(1 + (b * x)))
summary(my_model)
How can I do this?