/* This file assumes that the Excel spreadsheet has been imported */ /* into the SAS WORK directory and been named "soil" */ data a; set soil; proc glm order=data; class soil_type trt_combinations; model IRoR=soil_type trt_combinations; run;