79724384

Date: 2025-08-04 00:37:29
Score: 1.5
Natty:
Report link

Be aware of different notation in stat_smooth/geom_smooth : fct = L.4
and in drm: fct = LL.4

It tooks me an hour to notice ...

So this gonna work as intended:

enter image description here

ggplot(test_data, aes(x = Conc, y = Response )) +
  geom_point() +
  stat_smooth(
    method = "drm",
    method.args = list(
      fct = L.4()      #←----------------------------------------------------
    ),
    se = FALSE
  )+
  scale_x_continuous(trans="log10")
Reasons:
  • Blacklisted phrase (1): enter image description here
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: DJBio