X Tutup
Skip to content
Merged
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
11 changes: 11 additions & 0 deletions examples/axisartist/demo_floating_axes.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
"""
Demo of the floating axes.
This demo shows features of functions in floating_axes:
* Using scatter function and bar function with changing the
shape of the plot.
* Using GridHelperCurveLinear to rotate the plot and set the
boundary of the plot.
* Using FloatingSubplot to create a subplot using the return
value from GridHelperCurveLinear.
* Making sector plot by adding more features to GridHelperCurveLinear.
"""
from matplotlib.transforms import Affine2D
import mpl_toolkits.axisartist.floating_axes as floating_axes
import numpy as np
Expand Down
X Tutup