A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://nbviewer.ipython.org/urls/raw.github.com/herrfz/dataanalysis/master/week7/bootstrap.ipynb below:

Jupyter Notebook Viewer

# bootsrapping explicitly
f, ax = subplots(ncols=3)

for axis in ax:
    nuclear0 = nuclear.ix[np.random.choice(range(1, len(nuclear)+1), size=len(nuclear), replace=True)]
    nuke_lm0 = ols('np.log(cost) ~ date', nuclear).fit()
    axis.plot(nuclear0['date'], np.log(nuclear0['cost']), 'ok')
    abline(axis, nuke_lm0.params['Intercept'], nuke_lm0.params['date'], 'r', linewidth=3)
    
f.set_size_inches(11, 3)
f.tight_layout();

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4