In Python I am currently plotting some data and extracting the maximum values.
now i want to have a label which looks like this:
Fmax = ...
and Dmax = ...
, except for the max being a subscript, like "down".
The label currently looks like this:
a1.plot(z, k, label = "Kraft [Fmax: %s N], "%(round(max(k))))
Thanks for help in advance!