BookmarkSubscribeRSS Feed

Dose response tests for blocked field trials

Started ‎06-22-2020 by
Modified ‎06-22-2020 by
Views 1,391

Dose response, or rate response tests, form the basis for product usage instructions. Theophrastus' advice ‘the dose makes the poison’ rings true across product types, from medicine to agricultural inputs.

 

Today apply a mixed model to a quantitative explanatory variable within the hypothetical dataset ‘field yield’. The dataset includes four maize trial sites in the central Mexico highlands (attached). To simplify the discussion, today's analysis is restricted to a single site, San Felipe.

 

The response variable is yield in metric tons per hectare, and the variable of interest is MBoost, a mythical microbial product that may improve yields at small application rates (between 0.5 to 1 kg per hectare).

 

Each site had a consistent design: three treatments: 0, 0.5 and 1kg/Ha Mboost. Treatments were blocked in a randomized complete block design. If we were interested running the dose response analysis, it might look like:

*The field yield data set was restricted to the San Felipe site;
PROC Mixed DATA=WORK.RATETEST plots=all;
CLASS Block Mboost;
MODEL Yield_tonnes_ha = Rate_kg_ha Mboost/ Solution;
RANDOM Block;
RUN;

We model the quantitative rate variable (deliberately omitted from the class statement) and the Mboost variable against yield. Random factor is block.

Dose response test1-1.pngDose response test2.PNG

The residual plots seem OK for a small field data set.  The output shows the rate was significant, however a lack of effect of Mboost. This is expected since rate is completely orthogonal to Mboost and consumed almost all the variance otherwise that could be explained by the binary (yes-no) inclusion of the ingredient.  Next time, we will omit Mboost.

 

Another thing to note what the Type 3 fixed effects for rate do not test: they do not test the slope including whether the response was linear or quadratic. All we can determine from the test is that the differences of at least one of the means are significantly different from 0. Chapter 3.4 of SAS® for Mixed Models: Introduction and Basic Applications outlines several ways to go fitting the response trajectory.

 

From this analysis we’ve determined the rate is a significant effect. For our combined site analysis, we may want to test the same factors, also including location interactions and random effects. 

Contributors
Version history
Last update:
‎06-22-2020 07:55 AM
Updated by:

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

SAS AI and Machine Learning Courses

The rapid growth of AI technologies is driving an AI skills gap and demand for AI talent. Ready to grow your AI literacy? SAS offers free ways to get started for beginners, business leaders, and analytics professionals of all skill levels. Your future self will thank you.

Get started

Article Tags