Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download

Jupyter notebook growth rate 2.0.ipynb

23 views
Kernel: Python 2 (SageMath)
import matplotlib.pyplot as plt import numpy as np temperature = [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
<function matplotlib.pyplot.savefig>
Image in a Jupyter notebook
import matplotlib.pyplot as plt import numpy as np temperature = [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
<function matplotlib.pyplot.savefig>
Image in a Jupyter notebook
import matplotlib.pyplot as plt import numpy as np temperature = [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
<function matplotlib.pyplot.savefig>
Image in a Jupyter notebook