- Correlation is not causation (???)
- No causation without manipulation. (Holland)
- All models are wrong, some are useful. (Box)
- Statistics is the science of uncertainty. (arguably Tukey)
- Statistics is the science of learning from experience, especially experience that arrives a little bit at a time. (Efron)
This file contains 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 tqdm import tqdm_notebook as tqdm | |
from joblib import Parallel, delayed | |
import time | |
import random | |
def func(x): | |
time.sleep(random.randint(1, 10)) | |
return x |