importmatplotlib.pyplotaspltimportnumpyasnptemperature=[25,30,34,37,37,40,43,46]gr3=[6.88*10**(-5),28*10**(-5),53*10**(-5),65*10**(-5),1.6*10**(-3),52*10**(-5),46*10**(-5),73*10**(-5)]plt.plot(temperature,gr3,"o")plt.xlabel('Temperature in C')plt.ylabel('Growth Rate in /s')plt.title('E.coli growth rate according to temperature - Sample 3')plt.savefig
Out[26]:
<function matplotlib.pyplot.savefig>
In [21]:
importmatplotlib.pyplotaspltimportnumpyasnptemperature=[25,30,34,37,37,40,43,46]gr1=[6.9*10**(-5),34.0*10**(-5),50.2*10**(-5),67.2*10**(-5),1.5*10**(-3),50.9*10**(-5),42.0*10**(-5),75.4*10**(-5)]plt.plot(temperature,gr1,"o")plt.xlabel('Temperature in C')plt.ylabel('Growth Rate in /s')plt.title('E.coli growth rate according to temperature - Sample 2')plt.savefig
Out[21]:
<function matplotlib.pyplot.savefig>
In [23]:
importmatplotlib.pyplotaspltimportnumpyasnptemperature=[25,30,34,37,37,40,43,46]gr2=[6.29*10**(-5),33*10**(-5),54*10**(-5),65*10**(-5),1.7*10**(-3),51*10**(-5),41*10**(-5),73*10**(-5)]plt.plot(temperature,gr2,"o")plt.xlabel('Temperature in C')plt.ylabel('Growth Rate in /s')plt.title('E.coli growth rate according to temperature - Sample 2')plt.savefig