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
| # read in data | |
| onlydown <- read.table('scores-onlydown.dat')[,1] | |
| random <- read.table('scores-random.dat')[,1] | |
| # use bootstrap version of KS test | |
| library(Matching) | |
| ks.boot(onlydown, random) |
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
| # standard library | |
| import sys | |
| import random | |
| # 3rd party | |
| import numpy as np | |
| import vincent | |
| N_SAMPLES = 10000 |
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
| # standard library | |
| import sys | |
| import random | |
| import time | |
| # need to pip install selenium | |
| from selenium import webdriver | |
| from selenium.webdriver.common.keys import Keys | |
| from selenium.common.exceptions import NoSuchElementException |
NewerOlder