Oct-08-2021, 10:45 AM
I plot lists' element, which is itself element of a dictionary, in several figure using a for loop
for ind, item in enumerate(drop_down_var['h']):
print([item[1:], drop_down_var['h'][ind][1:]])
x = np.array(item[1:70])
y = np.array(drop_down_var['h*(Tw-T)'][ind][1:70])
fig, ax = plt.subplots()
ax.semilogx(x, y)
ax.grid(True)
plt.show()how can I plot all the figure within the same figure?
