In this recipe, we will learn about plotting planetary system data in polar coordinates using floating axes. We will plot two charts with different limits and attributes to demonstrate multiple possibilities. We are not learning any new features or code, just applying, in practical applications, the features that we learned in preceding recipes.
Plotting planetary system data on floating polar axes
Getting ready
You'll need to import the requisite libraries using the following commands:
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.transforms import Affine2D
import mpl_toolkits.axisartist.floating_axes as floating_axes
from matplotlib.projections import PolarAxes
import mpl_toolkits.axisartist.angle_helper...