Created
November 8, 2015 21:08
-
-
Save robintw/18d0635ec04dccbb0307 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from orthoregress import orthoregress | |
import numpy as np | |
x = np.arange(5).astype(np.float64) | |
y = np.array([3.5, 2.7, 6.8, 5.6, 9.7]).astype(np.float64) | |
orthoregress(x, y) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment