About 96,400 results
Open links in new tab
  1. python - What is the necessity of plt.figure () in matplotlib? - Stack ...

    The purpose of using plt.figure() is to create a figure object. The whole figure is regarded as the figure object. It is necessary to explicitly use plt.figure() when we want to tweak the size of the …

  2. python - What's the point of "plt.figure"? - Stack Overflow

    Sep 7, 2017 · plt.figure(1) plt.plot(x1, y1) plt.figure(1) plt.plot(x2, y2) You will see that the first example is equal to the third, because you retrieve the same figure handle with the second …

  3. Why do many examples use `fig, ax = plt.subplots ()`

    I'm learning to use matplotlib by studying examples, and a lot of examples seem to include a line like the following before creating a single plot... fig, ax = plt.subplots() Here are some example...

  4. python - How do I close figure in matplotlib? - Stack Overflow

    Sep 9, 2022 · Let's step through your process conceptually: fig = plt.figure() creates a figure and stores the handle in fig. Then you call func, which draws on the figure and eventually calls …

  5. python - Matplotlib: how to set the current figure? - Stack Overflow

    current_figure = pl.gcf() I can determine the currently active figure for the pyplot interface, depending on which figure I clicked in. Now I want to draw something to the first figure with the …

  6. How do you get the current figure number in Python's matplotlib?

    Feb 19, 2017 · You can also create figures with text strings instead of numbers, for example plt.figure ("first"). That might be easier to remember than numbers when you're switching …

  7. python - How to plot multiple functions on the same figure

    How can I plot the following 3 functions (i.e. sin, cos and the addition), on the domain t, in the same figure? import numpy as np import matplotlib.pyplot as plt t = np.linspace(0, 2*np.pi, 400) ...

  8. python - Returning matplotlib plot/figure from a function and …

    Mar 22, 2021 · As the title states I want to return a plt or figure (still not sure what the difference between the two things are) using matplotlib. The main idea behind it is so I can save the …

  9. python - ¿Qué diferencia hay entre pyplot.show () y …

    Trabajando con Matplotlib para generar gráficas, no acabo de entender la diferencia entre estas dos formas de generar y mostrar una gráfica: Forma 1: import matplotlib.pyplot as plt plt.figure()...

  10. python - Get the list of figures in matplotlib - Stack Overflow

    Sep 24, 2010 · Pyplot has get_fignums method that returns a list of figure numbers. This should do what you want: