forked from fbertran/ERI_DS_Course_FD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
53 lines (36 loc) · 1.1 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
title: "ERI Data Science. Fitting distribution"
author: "Frédéric Bertrand"
date: "29 september 2022"
output:
github_document:
fig_height: 3
fig_width: 5
html_document:
fig_height: 3
fig_width: 5
pdf_document:
fig_height: 3
fig_width: 5
word_document:
fig_height: 3
fig_width: 5
---
```{r, setup, include=FALSE}
require(mosaic) # Load additional packages here
knitr::opts_chunk$set(
tidy=FALSE, # display code as typed
size="small") # slightly smaller font for code
```
***
**Specific objectivess**:
By the end of this session, you will
- Know how to select a distribution to fit data
- Know how to fit a distribution to data
- know how to assess goodness of fit of a distribution to data
***
- Course materials. [DistFit.html](Supports/DistFit.html).
- Distribution tree. [distributions.png](Supports/distributions.png).
- Feller Pareto family. [fellerpareto.png](Supports/fellerpareto.png).
- Avalanche dataset. [avalanch.dat](Supports/avalanch.dat).
- Practical session. [TP_fitting_distributions.html](Supports/TP_fitting_distributions.html)