Frequency Line

master
Marc Gauch 2022-11-25 16:30:27 +01:00
parent 6e3788817e
commit 3ae01d771f
1 changed files with 6 additions and 0 deletions

View File

@ -433,6 +433,12 @@ qqline(age)
### Historam for age {.tabset}
#### Frequency {-}
```{r}
hist(age, freq = F)
lines(density(age), lwd = 2, col = "black")
```
#### Auto Breaks {-}
```{r}
hist(age)