I predicted traffic using LSTM. My traffic data were originally in bits and needed normalization to be fed into my model. When I plot the data, the y-axis shows numbers like 0, 1, 2, etc. Could you please explain how these numbers represent my traffic data?
Hi @Narsis, The y-axis scale will be the type of data you have given to the plot. If you have provided only a single array to the plot, for example plt.plot(array) in this case the y-axis will be the values of the array and x-axis will be the indices of that array. Thank You.