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. Hay varios gráficos que se pueden usar en Pyplot: Gráfico de línea, Contorno, Histograma, Dispersión, Gráfico 3D, etc.
método matplotlib.pyplot.get_plot_commands()
El método get_plot_commands() en el módulo pyplot de la biblioteca matplotlib se usa para obtener la lista ordenada de todos los comandos de trazado.
Sintaxis: matplotlib.pyplot.get_plot_commands()
Parámetros: este método no acepta ningún parámetro.
Devoluciones: este método devuelve una lista ordenada de todos los comandos de trazado.
Los siguientes ejemplos ilustran la función matplotlib.pyplot.get_plot_commands() en matplotlib.pyplot:
Ejemplo:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt w = plt.get_plot_commands() print("List of all of the plotting commands : ") for i in w: print(i)
Producción:
List of all of the plotting commands : acorr angle_spectrum annotate arrow autoscale axes axhline axhspan axis axvline axvspan bar barbs barh box boxplot broken_barh cla clabel clf clim close cohere colorbar contour contourf csd delaxes draw errorbar eventplot figimage figlegend fignum_exists figtext figure fill fill_between fill_betweenx findobj gca gcf gci get_figlabels get_fignums grid hexbin hist hist2d hlines imread imsave imshow install_repl_displayhook ioff ion isinteractive legend locator_params loglog magnitude_spectrum margins matshow minorticks_off minorticks_on pause pcolor pcolormesh phase_spectrum pie plot plot_date plotfile polar psd quiver quiverkey rc rc_context rcdefaults rgrids savefig sca scatter sci semilogx semilogy set_cmap setp show specgram spy stackplot stem step streamplot subplot subplot2grid subplot_tool subplots subplots_adjust suptitle switch_backend table text thetagrids tick_params ticklabel_format tight_layout title tricontour tricontourf tripcolor triplot twinx twiny uninstall_repl_displayhook violinplot vlines xcorr xkcd xlabel xlim xscale xticks ylabel ylim yscale yticks
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA