Here is a snippet from our protocols regarding analysis of cytokine data:
For cytokines, a repeated measures analysis (mixed model) will be conducted. For each endpoint, the model will test for the effects of treatment, time, and the interaction of treatment and time(1). A lognormal distribution will be assumed unless there are several values outside the range of quantitation, in which case a rank transformation will be applied. Ranks will be calculated across all timepoints, and the analysis will use the ANOVAF option and MIVQUE0 technique in SAS PROC MIXED(2) .
(1)Littell RC, Milliken GA, Stroup WW, Wolfinger RD. SAS System for Mixed Models. Cary (NC): SAS Institute Inc.; 1996. (2)Brunner, E., Domhof, S., and Langer, F. Nonparametric Analysis of Longitudinal Data in Factorial Experiments, New York: John Wiley & Sons.; 2002.
We use PROC GLIMMIX, but you could get essentially the same analysis using PROC MIXED if you log transformed the data before analysis. The code we use is estimating the marginal effects, as there is only an R-side variance-covariance matrix being estimated. Given that, PROC GEE or PROC GENMOD are also candidates. My gut feeling is that you would log transform the data before analysis rather than using a LOG link function, but I will defer to @StatDave for a better response than "a gut feeling".
SteveDenham
... View more