I want to create a dashboard with 4 plots, with 2 hlines.
f, axs = plt.subplots(2,2,figsize=(16,14))
x=lplt['pts']
y=lplt['time']
axs[0,1].hlines(y, xmin = 0 , xmax = lplt['pts'], color='g')
axs[1,1].hlines(y, xmin = 0 , xmax = lplt['pts'], color='skyblue', linestyles= 'solid')
axs[1,0].barh(y, x, linewidth = 2)
axs[0,0].plot(y, x, marker = "o", linewidth = 2)
plt.show()
I would like to add the number in front of the plot with the green color, example:
And the last plot with something like this: