Matplotlib: Wie man Tick-Labels als Prozent des Vollskalenwerts mit UliPlot anzeigt

Sie können UliPlot verwenden, um Tick-Labels als Prozent des Vollskalenwerts in Matplotlib anzuzeigen. So geht’s:

uliplot_percent_example.py
from UliPlot.TickFormat import *

set_yaxis_tick_format_percent(fullscale=3.3)
# and/or
set_xaxis_tick_format_percent(fullscale=3.3)

Vollständiges Beispiel

uliplot_percent_full_example.py
import matplotlib.pyplot as plt
import numpy as np
from UliPlot.TickFormat import *

x = np.linspace(0, 10, 100)
y = np.sin(x)

plt.plot(x, y)
set_yaxis_tick_format_percent(fullscale=3.3)
plt.show()

UliPlot TickFormat Percent.svg


Check out similar posts by category: Python, MatPlotLib