fit model in R with fitModel() function

am trying to use the fitModel() function to fit my data in R (I need to fit a straight or oscillating line to make a baseline correction). It seems that the function does not exist anymore - is that the case? Do you know of an equivalent function I can use? Thanks!

I googled it for you.
https://www.rdocumentation.org/packages/mosaic/versions/1.8.3/topics/fitModel

Thank you @nirgrahamuk , I had actually googled it myself as well and tried to use it in my code, but it seems like the function does not exist:

baseline <- fitModel(Defl_V_Rt ~ A*Height_Sensor_nm_Rt + B, data = df_sub)
Error in fitModel(Defl_V_Rt ~ A * Height_Sensor_nm_Rt + B, data = df_sub) : 
  could not find function "fitModel"

(the mosaic package is installed on my RStudio).

What is your version? Andalso remember to load it.

packageVersion("mosaic")
library(mosaic)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.