I'm analyzing a fertilization experiment with 5 treatments, namely:
1_Control, 2_Fertilizer_A, 3_Fertilizer_B, 4_Fertilizer_C, and 5_Fertilizer_D
Also, Fertilizer A to D were evaluated under different doses (40, 80, 120 and 160 Kg hectare-1).
My goal is to evaluate if there is any combination of "fertilizer x dose" that is effective in overcoming the "Control" (Control does not include fertilizer).
I've fitted the following model to get the quadratic response curve and find the optimum rate:
ModelFert <- lmer (yield ~ treatment + dose + dose2 +
(1 | environment/block/cultivar) +
(0 + dose + dose2 || treatment:environment),
data = fert)
The model worked perfectly with significant results for treatments. Output graph:
To address my goal, I need to perform contrasts . Briefly, "Control" vs. "fertilizers x different doses". To do so, I'm running the following code:
marginal = emmeans(ModelFert, ~ treatment, at = list(rate_mgha = 100)) #opt. dose= 100 kg ha-1
CLD = cld(marginal, alpha=0.05,reversed=TRUE, Letters=LETTERS)
CLD
The problem here is that, the comparison is made with the "Control" treatment under a fertilizer dose of 100 kg hectare-1, which is in fact, impossible (control does not include fertilizer).
Could anyone provide me with some clues in how to fit a contrast among treatments at different fertilizer levels keeping the control at zero rate? (That is: Control at zero rate vs. any fertilizer at 100 kg fertilazer/ha)
I reviewed the topic online and no clear clues founded!
Thank you so much in advance for your time!
