En este artículo, vamos a discutir cómo cambiar el tamaño de fuente del título en una figura usando el módulo matplotlib .
Como usamos el método matplotlib.pyplot.title() para asignar un título a un gráfico, para cambiar el tamaño de fuente, vamos a usar el argumento tamaño de fuente del método pyplot.title () en el módulo matplotlib .
A continuación se muestran algunos programas que muestran cómo cambiar el tamaño de fuente del título en una figura matplotlib :
Ejemplo 1:
Python3
# importing module import matplotlib.pyplot as plt # assigning x and y coordinates x = [-5, -4, -3, -2, -1, 0, 1, 2, 3, 4, 5] y = [] for i in range(len(x)): y.append(max(0, x[i])) # depicting the visualization plt.plot(x, y, color='green') plt.xlabel('x') plt.ylabel('y') # displaying the title plt.title("ReLU Function", fontsize = 40)
Producción:
Ejemplo 2:
Python3
# importing modules from matplotlib import pyplot as plt # assigning x and y coordinates foodPreference = ['Vegetarian', 'Non Vegetarian', 'Vegan', 'Eggitarian'] consumers = [30, 100, 10, 60] # depicting the visualization fig = plt.figure() ax = fig.add_axes([0, 0, 1, 1]) ax.axis('equal') ax.pie(consumers, labels = foodPreference, autopct='%1.2f%%') # displaying the title plt.title("Society Food Preference", fontsize = 10)
Producción:
Ejemplo 3:
Python3
# importing modules from matplotlib import pyplot import numpy # assigning time values of the signal # initial time period, final time period # and phase angle signalTime = numpy.arange(0, 100, 0.5) # getting the amplitude of the signal signalAmplitude = numpy.sin(signalTime) # depicting the visualization pyplot.plot(signalTime, signalAmplitude, color = 'green') pyplot.xlabel('Time') pyplot.ylabel('Amplitude') # displaying the title pyplot.title("Signal", fontsize = 30)
Producción:
Publicación traducida automáticamente
Artículo escrito por riturajsaha y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA