About 43,900 results
Open links in new tab
  1. Gallery 4: Curtain Plots — tfv 1.0.11 documentation

    Curtain plots allow you to review 3D results along a long section or cross section. This notebook is used in combination with the TUFLOW FV Python Toolbox (tfv) package.

  2. matplotlib.pyplot.plotMatplotlib 3.10.3 documentation

    matplotlib.pyplot.plot # matplotlib.pyplot.plot(*args, scalex=True, scaley=True, data=None, **kwargs) [source] # Plot y versus x as lines and/or markers. Call signatures:

  3. curtain plots - matplotlib-users - Matplotlib

    Sep 25, 2013 · I am trying to make 3-D “curtain” plots. Basically, x,y are N-vectors, z is an M-vector, and C is MxN data set collected on the path with z. Application is a ship’s track through …

  4. Plot types — Matplotlib 3.10.1 documentation

    Overview of many common plotting commands provided by Matplotlib. See the gallery for more examples and the tutorials page for longer examples. Plots of pairwise (x, y), tabular (v a r _ 0, …

  5. matplotlib - Use a loop to plot n charts Python - Stack Overflow

    plt.plot(x[0],y[0],'r',x[1],y[1],'g',x[2],y[2],'b',x[3],y[3],'k') You could automate it by having a list of colours like ['r','g','b','k'] and then just calling both entries in this list and corresponding data to …

  6. Pyplot tutorial — Matplotlib 3.10.3 documentation

    matplotlib.pyplot is a collection of functions that make matplotlib work like MATLAB. Each pyplot function makes some change to a figure: e.g., creates a figure, creates a plotting area in a …

    Missing:

    • Curtain Plot

    Must include:

  7. Tutorial 2. Introductory Matplotlib Plot Composition

    Tutorial 2. Introductory Matplotlib Plot Composition The TUFLOW FV Python Toolbox (tfv) contains many methods to simplify plotting TUFLOW FV unstructured results. This guide will …

    Missing:

    • Curtain Plot

    Must include:

  8. Create plots with Matplotlib - Programmer Sought

    Summary: fig = plt.figure #Create a curtain, which can be seen as a big curtain Ax = fig.add_subplot (349) #divide the curtain into three rows and four columns, and select the ninth …

  9. Data Visualization using Matplotlib in Python - GeeksforGeeks

    Jan 16, 2025 · Matplotlib is a powerful and widely-used Python library for creating static, animated and interactive data visualizations. In this article, we will provide a guide on Matplotlib and how …

  10. When to use cla (), clf () or close () for clearing a plot

    Oct 2, 2023 · plt.clf() clears the entire current figure with all its axes, but leaves the window opened, such that it may be reused for other plots. plt.close() closes a window, which will be …