hi, for my final project in "Data science" course i need to test the assumptions of the 3-way anova.i need to show tat the variance of the vriable are equal. i try to use barllet test but it didnt work and also levene test. there is any other way or anything else to do? i begginer in r and the statistic world...
1 Like
Remember put an reproducible example of data. Like dput()
.
Check the age because the numbers is in somes ranges.
Put the factor variables.
dataFrame$gender <- as.factor(dataFrame$gender )
dataFrame$miktzoa<- as.factor(dataFrame$miktzoa)
my_long %<% levene_test(salary ~ age*miktzoa*gender)
1 Like