I have a list of lists, each of these internal lists has a different length, and I would like to show them in a graph.
They would look like this:
data = [[4,3,4],[2,3],[5,6,4,5]]
data_np = np.vstack(data)
plot_data_np = np.transpose(data_np)
plt.plot(plot_data_np)
plt.plot(data)
What about just doing
data = [[4,3,4],[2,3],[5,6,4,5]]
for d in data:
plt.plot(d)
?