I try to conduct a t.test and compare against a reference group (d). My data look like:
Letter method Wiederfindung.ng
a Quantus 4
a Quantus 4
a Quantus 4
b Quantus 6
b Quantus 5
b Quantus 5
c Quantus 18
c Quantus 39
c Quantus 12
d theoretical 28,12
compare_means(Wiederfindung.ng ~ Letter, data = Sa_Quantus_low, ref.group = "d", method = "t.test")
I receive on the consonle:
Error in t.test.default(xi, xj, paired = paired, alternative = alternative, : not enough 'y' observations
When I change the method from t.test
to wilcox.test
I get no error message.
compare_means(Wiederfindung.ng ~ Letter, data = Sa_Quantus_low, ref.group = "d", method = "wilcox.test")
I want to know if there is any difference between the letters a,b,c to d.