User Guide to Statistical Analyses

Use SAS to perform this analysis. Below is a sample SAS program that you can rewrite to accommodate your needs. options ls = 80. ps = 55. nocenter nodate; /* Set up temporary SAS data set called onewaybacteria */ data. onewaybacteria; /* Two variables to be input, Treatment and bacteria count */ input treatment $ baccount; /* baccount is the total number of different bacterial clones found for ... ................
................