Really thorough explanation. When I followed it step for step, it worked for me. Thank you!
@ibrahimlawan966310 ай бұрын
This is an excellent tutorial. Can one use glm (binomial family) instead to determine EC50 or LC50, as the case may be?
@david_noe Жыл бұрын
This is a fantastic explanation. Thank you!
@MariaJoseMolinaQuesada-oi1gx9 ай бұрын
Perfect explanation, thank you very much for this video!
@happylearning-gp11 ай бұрын
Excellent tutorial, Thank you very much
@oliverpiercey72003 ай бұрын
Can I please ask, how do you determine the dose that corresponds to IC10 or IC20 etc?
@VinithaNanjappa Жыл бұрын
I am getting an error for the predict model. Could you please help?
@苏峰-p6v11 ай бұрын
thanks for your explanation
@juanpdiddy7 ай бұрын
one last thing, anyone knows how to add error bars to the final plot? When I try to add the error bars by combining the earlier plot I get Error in geom_line(data = predicted_data, aes(x = dose, y = prediction)) :
@juanpdiddy7 ай бұрын
here is an answer I came up with ```{r} drc_per_condition %>% ggplot(aes(x=Dose, y=response, colour=condition))+ geom_point()+ geom_errorbar(aes(ymin=response-sem, ymax=response+sem), width=.2) + scale_x_log10() + geom_line( data=predicted_data, aes(x=dose, y=prediction) ) ```
@soniakhan94727 ай бұрын
What if you want error bars on the final curve?
@juanpdiddy7 ай бұрын
Did you figure this out? I tried but can’t. Keep getting an error
@soniakhan94727 ай бұрын
@@juanpdiddy not yet, sorry
@juanpdiddy7 ай бұрын
@@soniakhan9472 Thanks, it seems like adding ymin and ymax like in an earlier plot should work but I keep getting an error that response is not found yet if I don't have ymin or ymax in the expression, it finds response just fine...so annoying.
@juanpdiddy7 ай бұрын
@@soniakhan9472 I figured it out. The problem was due to coloring, aestetics for some reason. The following chuck, does the curve fitting and adds error bars to the final plot. Hope it works for you. ```{r} drc_per_condition %>% ggplot(aes(x=Dose, y=response, colour=condition))+ geom_point()+ geom_errorbar(aes(ymin=response-sem, ymax=response+sem), width=.2) + scale_x_log10() + geom_line( data=predicted_data, aes(x=dose, y=prediction) ) ```