A statistic is any number computed from data. Statistics is the field of study concerned with those numbers and the data from which they are computed.
## [[frequentist]]
# Combinatorics
![[combinatorics]]
```dataview
TABLE
WHERE up = [[combinatorics]]
```
---
# Probability
![[probability]]
```dataview
TABLE
WHERE up = [[probability]]
```
---
# Bayesian statistics
![[Bayesian statistics]]
---
# Random variables
![[random variable]]
---
# Distributions
![[distributions]]
---
# Solving statistics problems
![[solving statistics problems]]
---
# Statistical inference
```dataview
TABLE
WHERE parent = [[statistical inference]]
```
## Estimator
## Confidence Interval
##
# Other topics
```dataviewjs
const currentFilePath = dv.current().file.path;
dv.io.load(currentFilePath).then(content => {
const headers = content
.split('\n')
.filter(line => line.trim().startsWith('# '))
.map(header => header.trim().toLowerCase());
dv.list(
dv.pages()
.where(page => {
const parentStringLower = String(page.parent).toLowerCase();
const currentNoteLinkLower = String(dv.current().file.link).toLowerCase();
const pageTitleLowerText = page.file.name.toLowerCase();
const isTitleInHeaders = headers.some(header => header.includes(pageTitleLowerText));
return parentStringLower === currentNoteLinkLower && !isTitleInHeaders;
})
.map(page => page.file.link)
);
});
```