Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Pyplot es una interfaz basada en estado para un módulo Matplotlib que proporciona una interfaz similar a MATLAB.
Función matplotlib.pyplot.polar():
La función polar() en el módulo pyplot de la biblioteca matplotlib se usa para hacer un gráfico polar.
Sintaxis: matplotlib.pyplot.polar(*args, **kwargs)
Parámetros: este método no acepta ningún parámetro.
Devoluciones: este método no devuelve ningún valor.
Los siguientes ejemplos ilustran la función matplotlib.pyplot.polar() en matplotlib.pyplot:
Ejemplo 1:
# Implementation of matplotlib function import matplotlib.pyplot as plt import matplotlib.transforms as mtransforms import numpy as np from matplotlib.transforms import offset_copy xs = np.arange(-2, 2) ys = np.cos(xs**2) plt.polar(xs, ys) plt.title('matplotlib.pyplot.polar() function Example', fontweight ="bold") plt.show()
Producción:
Ejemplo #2:
# Implementation of matplotlib function import matplotlib.pyplot as plt import matplotlib.transforms as mtransforms import numpy as np from matplotlib.transforms import offset_copy xs = np.arange(8) ys = np.cos(xs**2) fig = plt.figure(figsize =(5, 10)) ax = plt.subplot(1, 1, 1) trans_offset = mtransforms.offset_copy(ax.transData, fig = fig, y = 6, units ='dots') for x, y in zip(xs, ys): plt.polar(x, y, 'go') plt.text(x, y, '% d, % d' % (int(x), int(y)), transform = trans_offset, horizontalalignment ='center', verticalalignment ='bottom') plt.title('matplotlib.pyplot.polar() function Example', fontweight ="bold") plt.show()
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA