In [5]:
import numpy as np
import scipy.odr as odr
import matplotlib.pyplot as plt
import func as fc
import classes as cl
In [8]:
N = int(1e1)
sx = 3 * np.random.rand(N)
sy = np.random.rand(N)
x = 15 * np.random.randn(N) + 3
y = 3 * x + 1.5 * np.random.randn(N)
instance = fc.initialize(x, y, sx, sy)
In [9]:
fc.plot(instance)
In [4]:
instance.plotOptions.title
Out[4]:
In [6]:
plt.title(" ")
Out[6]:
In [ ]: