KIPAC / StatisticsCookbook

Short introductory lessons on statistical data analysis

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Statistics Cookbook

Barebones introduction to statistical data analysis techniques, aimed at undergraduates doing research for the first time. This material in no way substitutes for a proper course, but hopefully provides enough to get started.

Contents

  • Basic model fitting: just enough to get started with maximum likelihood methods for fitting model parameters, finding confidence intervals, evaluating goodness of fit, and comparing competing models.

Avoiding git conflicts

Before running git pull to update anything:

  • Run git status to list any locally modified files.
  • For each modified file,
    • if you want to keep your local changes,
      • make a copy, e.g. cp thisFile.ipynb thisFile_mine.ipynb;
    • run git checkout -- thisFile.ipynb.

Now it should be safe to git pull.

(Some) other resources

Author

Adam Mantz. Any errors or unnecessary snarkiness is his fault.

License

All materials Copyright 2020 the authors.

Unless otherwise noted, all content is licensed under Creative Commons Attribution-NonCommercial 4.0 International (CC BY-NC 4.0).

About

Short introductory lessons on statistical data analysis

License:Other


Languages

Language:Jupyter Notebook 97.3%Language:Python 2.7%