“Achse -Schriftgröße Matplotlib” Code-Antworten

Matplotlib -Text zu klein

import matplotlib.pyplot as plt
plt.rcParams.update({'font.size': 22})
Hambo

Matplotlib -Plot -Titel Schriftgröße

from matplotlib import pyplot as plt    

fig = plt.figure()
plt.plot(data)
fig.suptitle('test title', fontsize=20)
plt.xlabel('xlabel', fontsize=18)
plt.ylabel('ylabel', fontsize=16)
fig.savefig('test.jpg')
RosiePuddles

Achse -Schriftgröße Matplotlib

import matplotlib.pyplot as plt

SMALL_SIZE = 8
MEDIUM_SIZE = 10
BIGGER_SIZE = 12

plt.rc('font', size=SMALL_SIZE)          # controls default text sizes
plt.rc('axes', titlesize=SMALL_SIZE)     # fontsize of the axes title
plt.rc('axes', labelsize=MEDIUM_SIZE)    # fontsize of the x and y labels
plt.rc('xtick', labelsize=SMALL_SIZE)    # fontsize of the tick labels
plt.rc('ytick', labelsize=SMALL_SIZE)    # fontsize of the tick labels
plt.rc('legend', fontsize=SMALL_SIZE)    # legend fontsize
plt.rc('figure', titlesize=BIGGER_SIZE)  # fontsize of the figure title
Obedient Osprey

Ähnliche Antworten wie “Achse -Schriftgröße Matplotlib”

Fragen ähnlich wie “Achse -Schriftgröße Matplotlib”

Weitere verwandte Antworten zu “Achse -Schriftgröße Matplotlib” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen