We have collected data from n patients, with each patient having one eye treated and the other untreated.
We would like to see if the treated eye progresses differently to the untreated eye using biomarkers measured from each eye.
Currently, I am using the model:
lmer(biomarker_change ~ days + treated_yn + (1 | patient_id), data = study)
using the lme4 package. Is the random effect (1 | patient_id) enough here? I feel like since the eyes are from the same patient, something is a bit strange/ missing here.
Also, I'm using biomarker change as opposed to raw marker values to allow for differing starting points.