(stock_values / stock_values.iloc[0] * 100).plot(figsize=(10,6)); plt.show()
The chart has 20 stock lines and I wish to change the linewidth of only one.
I've scoured several alternatives, but none worked in a simple way.
(stock_values / stock_values.iloc[0] * 100).plot(figsize=(10,6)); plt.show()
The chart has 20 stock lines and I wish to change the linewidth of only one.
I've scoured several alternatives, but none worked in a simple way.