Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
# setup the environment | |
import numpy as np | |
import matplotlib.pyplot as plt | |
x = np.linspace(0, np.pi*4, 137) | |
y = (2*np.random.normal(size=137) + x**2) | |
# reflect everything around the origin | |
xx = np.hstack([-1*x[::-1], x]) | |
yy = np.hstack([-1*y[::-1], y]) |
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
import numpy as np | |
import matplotlib.pyplot as plt | |
def makeLayer(y, height): | |
neg=0.0 | |
pos=0.0 | |
if y > 0: | |
if y - height >= 0: | |
pos = height | |
y -= pos |
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
# setup the environment | |
import numpy as np | |
import matplotlib.pyplot as plt | |
x = np.linspace(0, np.pi*4, 137) | |
y = (2*np.random.normal(size=137) + x**2) | |
# reflect everything around the origin | |
xx = np.hstack([-1*x[::-1], x]) | |
yy = np.hstack([-1*y[::-1], y]) |
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
import numpy as np | |
import scipy.stats as stats | |
import rpy | |
import matplotlib.pyplot as plt | |
spy_p_paired = [] | |
spy_p_nopair = [] | |
rpy_p_paired = [] | |
rpy_p_nopair = [] |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.