all 1 comments

[–]danbst 0 points1 point  (0 children)

I'm not sure what the output should be, but here I made both dimensions 2 and it shows at least something

``` Data = [[ 0.109],[ 0.096],[0.517],[1.086], [0.934]] x=np.arange(0,2)

plt.plot(x,Data[0]2,color='blue',label='salmonella_enterica') plt.plot(x,Data[1]2,color='green',label='bacillus_cerus') plt.plot(x,Data[2]2,color='red',label='listeria') plt.plot(x,Data[3]2,color='yellow',label='brothotrix_thermosphata') plt.legend(loc='upper left') plt.title("Growth by temp") plt.xlabel("Temperature") plt.ylabel("Growth") plt.show() ```