Skip to Content

In this tutorial, we’ll try to understand how to plot a 3D surface triangulation plot in Python using the matplotlib library. What is a Surface Triangulation Plot? A triangulation of a compact surface is a finite collection of triangles that cover the surface in such a way that every point on the surface is in …

Read More about How to plot a 3D Surface Triangulation Plot in Python?

In this tutorial, we’ll try to understand how to plot a 3D wireframe plot in python. What is a wireframe plot? Wireframe plot takes a grid of values and projects it onto the specified three-dimensional surface, and can make the resulting three-dimensional forms quite easy to visualize. 3D wireframe plot using the matplotlib.Axes.plot_wireframe() method To …

Read More about How to Plot a 3D Wireframe Plot in Python?

In this tutorial, we’ll try to understand how to plot a 3D plot in python. Matplotlib was initially designed with only two-dimensional plotting in mind. Around the time of the 1.0 release, some three-dimensional plotting utilities were built on top of Matplotlib’s two-dimensional display, and the result is a convenient (if somewhat limited) set of …

Read More about How to Create a 3D Plot in Python?

In this tutorial, we’ll try to understand how to plot a 3D surface plot in python. What is a surface plot? A surface plot shows a functional relationship between a designated dependent variable (Y), and two independent variables (X and Z). The plot is a companion plot to the contour plot. A surface plot is …

Read More about How to plot a 3D surface plot in Python?

In this tutorial, we’ll try to understand how to plot a 3D contour plot in python. A contour plot is a graphical technique for representing a 3-dimensional surface by plotting constant z slices, called contours, on a 2-dimensional format. That is, given a value for z, lines are drawn for connecting the (x,y) coordinates where …

Read More about How to Plot a 3D Contour plot in Python?

In this tutorial, we will look at how to create heatmaps in Python with the help of some examples. What are Heatmaps? Heatmaps use colour changes like hue, saturation, or brightness to depict the data as 2-D coloured maps. Instead of using numbers to represent relationships between variables, heatmaps use colours. On both axes, these …

Read More about How to Create Heatmaps in Python?

In this tutorial, we’ll try to understand how to extract links from a text file in Python with the help of some examples. There are multiple ways to extract URLs from a text file using Python. Some of the commonly used methods are – Let’s now look at both methods in detail. We’ll be working …

Read More about How to Extract Links from a Text File in Python?

In this tutorial, we’ll try to understand how to add a header in a csv file using Python with the help of some examples. In simple terms, a csv file contains tabular data with comma-separated values in each row. A row header, here, represents an additional row at the top indicating the column names. You …

Read More about How to add a header in a CSV file using Python?