In [1]:
import matplotlib.pyplot as plt
%pylab inline
from gpkit.tests.simpleflight import simpleflight_generator
import gpkit.interactive
from gpkit.interactive.plotting import sensitivity_plot

prob = simpleflight_generator().gp()
prob.solve()
fig = sensitivity_plot(prob, yxmax=0.75)
plt.show()


Populating the interactive namespace from numpy and matplotlib
Using solver 'cvxopt'
Solving for 10 variables.
Solving took 0.0691 seconds.
:0: FutureWarning: IPython widgets are experimental and may change in the future.

In [ ]: