Creating 3D Voxel Plots in Matplotlib

PythonPythonBeginner
Practice Now

This tutorial is from open-source community. Access the source code

Introduction

In this lab, you will learn how to create a 3D voxel plot using cylindrical coordinates in Matplotlib. The plot will demonstrate how to use the x, y, and z parameters of .Axes3D.voxels to create a 3D voxel plot.

VM Tips

After the VM startup is done, click the top left corner to switch to the Notebook tab to access Jupyter Notebook for practice.

Sometimes, you may need to wait a few seconds for Jupyter Notebook to finish loading. The validation of operations cannot be automated because of limitations in Jupyter Notebook.

If you face issues during learning, feel free to ask Labby. Provide feedback after the session, and we will promptly resolve the problem for you.


Skills Graph

%%%%{init: {'theme':'neutral'}}%%%% flowchart RL python(("`Python`")) -.-> python/BasicConceptsGroup(["`Basic Concepts`"]) matplotlib(("`Matplotlib`")) -.-> matplotlib/BasicConceptsGroup(["`Basic Concepts`"]) python(("`Python`")) -.-> python/ControlFlowGroup(["`Control Flow`"]) python(("`Python`")) -.-> python/DataStructuresGroup(["`Data Structures`"]) python(("`Python`")) -.-> python/FunctionsGroup(["`Functions`"]) python(("`Python`")) -.-> python/ModulesandPackagesGroup(["`Modules and Packages`"]) python(("`Python`")) -.-> python/DataScienceandMachineLearningGroup(["`Data Science and Machine Learning`"]) python/BasicConceptsGroup -.-> python/comments("`Comments`") matplotlib/BasicConceptsGroup -.-> matplotlib/importing_matplotlib("`Importing Matplotlib`") matplotlib/BasicConceptsGroup -.-> matplotlib/figures_axes("`Understanding Figures and Axes`") python/ControlFlowGroup -.-> python/for_loops("`For Loops`") python/DataStructuresGroup -.-> python/lists("`Lists`") python/DataStructuresGroup -.-> python/tuples("`Tuples`") python/FunctionsGroup -.-> python/function_definition("`Function Definition`") python/ModulesandPackagesGroup -.-> python/importing_modules("`Importing Modules`") python/DataScienceandMachineLearningGroup -.-> python/numerical_computing("`Numerical Computing`") python/DataScienceandMachineLearningGroup -.-> python/data_visualization("`Data Visualization`") python/FunctionsGroup -.-> python/build_in_functions("`Build-in Functions`") subgraph Lab Skills python/comments -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} matplotlib/importing_matplotlib -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} matplotlib/figures_axes -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} python/for_loops -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} python/lists -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} python/tuples -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} python/function_definition -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} python/importing_modules -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} python/numerical_computing -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} python/data_visualization -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} python/build_in_functions -.-> lab-49027{{"`Creating 3D Voxel Plots in Matplotlib`"}} end

Import Libraries

The first step is to import the necessary libraries for this lab. We will be using matplotlib.pyplot, numpy, and matplotlib.colors.

import matplotlib.pyplot as plt
import numpy as np
import matplotlib.colors

Define Midpoints Function

Next, we define a midpoints function to calculate the midpoints of an array of coordinates. This function will be used later to calculate the midpoints of r, theta, and z.

def midpoints(x):
    sl = ()
    for i in range(x.ndim):
        x = (x[sl + np.index_exp[:-1]] + x[sl + np.index_exp[1:]]) / 2.0
        sl += np.index_exp[:]
    return x

Define Coordinates and RGB Values

In this step, we define the coordinates r, theta, and z, and attach RGB values to each.

r, theta, z = np.mgrid[0:1:11j, 0:np.pi*2:25j, -0.5:0.5:11j]
x = r*np.cos(theta)
y = r*np.sin(theta)

rc, thetac, zc = midpoints(r), midpoints(theta), midpoints(z)

## define a wobbly torus about [0.7, *, 0]
sphere = (rc - 0.7)**2 + (zc + 0.2*np.cos(thetac*2))**2 < 0.2**2

## combine the color components
hsv = np.zeros(sphere.shape + (3,))
hsv[..., 0] = thetac / (np.pi*2)
hsv[..., 1] = rc
hsv[..., 2] = zc + 0.5
colors = matplotlib.colors.hsv_to_rgb(hsv)

Create the 3D Voxel Plot

Now we create the 3D voxel plot using the ax.voxels function. We pass in x, y, z, and sphere as the parameters. We also add facecolors and edgecolors using the colors array we defined earlier.

ax = plt.figure().add_subplot(projection='3d')
ax.voxels(x, y, z, sphere,
          facecolors=colors,
          edgecolors=np.clip(2*colors - 0.5, 0, 1),  ## brighter
          linewidth=0.5)

Display the Plot

Finally, we display the plot using the plt.show() function.

plt.show()

Summary

In this lab, you learned how to create a 3D voxel plot using cylindrical coordinates in Matplotlib. You also learned how to define coordinates and RGB values and how to create a 3D voxel plot using the ax.voxels function.

Other Python Tutorials you may like