#Competing Yeast Species Data from Table 7.2 #The Data: Time (hours) for yeast populations, run 1 (first 11 lines of Table 7.2). times1 = [6, 16, 24, 29, 40, 48, 53, 72, 93, 117, 141]; N1 = len(times1); #A-1 for run 2 (remaining 7 lines in Table 7.2) times2 = [7.5, 15, 24, 31.5, 33, 44, 51.5]; N2 = len(times2); #Saccharomyces population, run 1 (column 2 in Table 7.2, with "-1" for "no data"). sacc1 = [0.37, 8.87, 10.66, 12.5, 13.27, 12.87, 12.70, -1, -1, -1, -1]; #Saccharomyces population, run 2, (column 2, bottom 7 lines in Table 7.2) sacc2 = [1.63, 6.2, 10.97, 12.60, 12.9, 12.77, 12.9]; #Schizosaccharomyces population run 1, (column 4 in Table 7.2, with "-1" for "no data"). schiz1 = [-1, 1, -1, 1.7, -1, 2.73, -1, 4.87, 5.67, 5.8, 5.83]; #Schizosaccharomyces population run 2, (column 4, bottom 7 lines in Table 7.2) schiz2 = [-1, 1.27, -1, 2.33, -1, -1, 4.56]; #Saccharomyces population, run 1, mixed Sach/Schiz experiment (column 3, first 11 lines) saccmix1 = [0.375, 3.99, 4.69, 6.15, -1, 7.27, 8.3, -1, -1, -1, -1]; #Saccharomyces population, run 2, mixed Sach/Schiz experiment (column 3, bottom 7 lines) saccmix2 = [0.923, 3.082, 5.78, 9.91, 9.47, 10.57, 9.883]; #Schizosaccharomyces population run 1, mixed Sach/Schiz experiment (column 5, first 11 lines) schizmix1 = [0.291, 0.98, 1.47, 1.46, -1, 1.71, 1.84, -1, -1, -1, -1]; #Schizosaccharomyces population run 2, mixed Sach/Schiz experiment (column 5, bottom 7 lines) schizmix2 = [0.371, 0.63, 1.22, 1.112, 1.225, 1.102, 0.961];