provides a classese of simlpe units that will be used with AxesDivider class (or others) to determine the size of each axes. The unit classes define get_size method that returns a tuple of two floats, meaning relative and absolute sizes, respectively.
Note that this class is nothing more than a simple tuple of two floats. Take a look at the Divider class to see how these two values are used.
An instance whose size is a fraction of the ref_size.
>>> s = Fraction(0.3, AxesX(ax))
Creates Fixed unit when the first argument is a float, or a Fraction unit if that is a string that ends with %. The second argument is only meaningful when Fraction unit is created.
>>> a = Size.from_any(1.2) # => Size.Fixed(1.2)
>>> Size.from_any("50%", a) # => Size.Fraction(0.5, a)