From example a code snippet taken-
orbit1 = KeplerianElements.with_period(90 * 60, body=earth) plot(orbit1,title='orbit1') plt.show()
Showing Error
**<array_function internals> in linspace(*args, **kwargs)
/usr/local/lib/python3.7/dist-packages/numpy/core/function_base.py in linspace(start, stop, num, endpoint, retstep, dtype, axis)
118
119 """
--> 120
121
122 div =(num - 1) if endpoint else num
TypeError: 'float' object cannot be interpreted as an integer**
From example a code snippet taken-
orbit1 = KeplerianElements.with_period(90 * 60, body=earth) plot(orbit1,title='orbit1') plt.show()Showing Error
**<array_function internals> in linspace(*args, **kwargs)
/usr/local/lib/python3.7/dist-packages/numpy/core/function_base.py in linspace(start, stop, num, endpoint, retstep, dtype, axis)
118
119 """
--> 120
121
122 div =(num - 1) if endpoint else num
TypeError: 'float' object cannot be interpreted as an integer**