📊📔 Diario Data Analysis in Transport Systems
📊📔 Diario Data Analysis in Transport Systems
📆 15-10-2024 - Tue
📝 Theory
✏️ Projects
📆 22-10-2024 - Tue
📝 Theory
✏️ Projects
📆 24-10-2024 - Thu
LAB Session
📆 29-10-2024 - Tue
📝 Theory
03 - Computational Statistical Inference - DATS
- Contrast of hypothesis - Hypothesis testing
- Level of significance
- Correlation between 2 numeric variables -
- Charts
- Numbers
- Pearson Correlation coefficient
- Spearman's Correlation Coefficient
- Test
cor.test(X ~ Y)
- Person's testcor.test(X ~ Y, method = 'spearman')
- Person's test
- Correlation between a numeric variable and a factor (non numeric variable) -
- Charts
boxplot(Y ~ A)
or just useplot(Y ~ A)
- Numbers
- Coefficient of Determination
lm(Y~A)
(Linear Model)
- Coefficient of Determination
- Test
- Test on means
- j = 2
- Parametric - Welch test:
t.test(Y~A)
- Non-parametric - Wilcoxon Test:
wilcox.test(Y~A)
- Parametric - Welch test:
- j > 2
- Parametric -
oneway.test(Y~A)
- Non-parametric -
kruskal.test(Y~A)
- Parametric -
- j = 2
- Test on variance
- j = 2
- Parametric -
var.test(Y~A)
- Non-parametric -
fligner.test(Y~A)
- Parametric -
- j > 2
- Parametric -
barlett.test(Y~A)
- Non-parametric -
fligner.test(Y~A)
- Parametric -
- j = 2
- Test on means
- Charts
- Correlation between 2 factors -
- Charts
- mosaic plot -
plot(B~A)
You get mosaic plot automatically if it's 2 factos
- mosaic plot -
- Numbers
- Contingency tables -
table(A,B)
-->prob.table((A,B), 1)
orprob.table((A,B), 2)
- Contingency tables -
- Test
- Pearson's test on independence or
test - chisq.test(B~A)
- Pearson's test on independence or
- Charts
📆 31-10-2024 - Thu
✏️ Lab session
LabSess 3 - 2024-10-31 - Computational Statistical Inference - DATS
We practiced all the tools introduced in the class of 2024-10-29 into RStudio.
📆 05-11-2024 - Tue
📝 Theory
03 - Computational Statistical Inference - DATS
pariwise.t.test(Y,A)
-pariwise.wilcox.test(Y~A)
library(FactoMineR)
condes(df,'nb')
andcatdes(df,'nb')
- ExTheo_5nov2024.Rmd example
📆 12-11-2024 - Tue
Preparation for Midterm.
Work in class on Midterm 2023-2024.