trying to take a linear model of an existing data set; "datm"... my code for that one step is
linm_list <- dlply(data = datm, c("well"), function(x) lm(fluorescence ~ elapsed, data=x))
and I get an error message saying:
Error in UseMethod("as.quoted") :
no applicable method for 'as.quoted' applied to an object of class "function"
Need help debugging this one line, let me know if having the rest of the code would help.