Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Backport PR #13521 on branch v3.1.x (Small cleanup to headings of 3d examples.) #13523

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions 4 examples/mplot3d/3d_bars.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@
Demo of 3D bar charts
=====================

A basic demo of how to plot 3D bars with and without
shading.

A basic demo of how to plot 3D bars with and without shading.
"""

import numpy as np
Expand Down
19 changes: 10 additions & 9 deletions 19 examples/mplot3d/lorenz_attractor.py
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
'''
"""
================
Lorenz Attractor
================

This is an example of plotting Edward Lorenz's 1963 `"Deterministic
Nonperiodic Flow"
<http://journals.ametsoc.org/doi/abs/10.1175/1520-0469%281963%29020%3C0130%3ADNF%3E2.0.CO%3B2>`_
in a 3-dimensional space using mplot3d.
This is an example of plotting Edward Lorenz's 1963 `"Deterministic Nonperiodic
Flow"`_ in a 3-dimensional space using mplot3d.

Note: Because this is a simple non-linear ODE, it would be more easily
done using SciPy's ode solver, but this approach depends only
upon NumPy.
'''
.. _"Deterministic Nonperiodic Flow":
http://journals.ametsoc.org/doi/abs/10.1175/1520-0469%281963%29020%3C0130%3ADNF%3E2.0.CO%3B2

.. note::
Because this is a simple non-linear ODE, it would be more easily done using
SciPy's ODE solver, but this approach depends only upon NumPy.
"""

import numpy as np
import matplotlib.pyplot as plt
Expand Down
6 changes: 3 additions & 3 deletions 6 examples/mplot3d/voxels_rgb.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
'''
"""
==========================================
3D voxel / volumetric plot with rgb colors
==========================================

Demonstrates using ``ax.voxels`` to visualize parts of a color space
'''
Demonstrates using `Axes3D.voxels` to visualize parts of a color space.
"""

import matplotlib.pyplot as plt
import numpy as np
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.