Problem mit dem Statistikprogramm "R"?

1 Antwort

If paired is TRUE then both x and y must be specified and they must be the same length. Missing values are silently removed (in pairs if paired is TRUE). If var.equal is TRUE then the pooled estimate of the variance is used. By default, if var.equal is FALSE then the variance is estimated separately for both groups and the Welch modification to the degrees of freedom is used.

https://www.rdocumentation.org/packages/stats/versions/3.6.2/topics/t.test

D.h. du kannst paired = TRUE nur verwenden, wenn du ausdrücklich x und y spezifizierst. Und das ist letztlich die Aussage der Fehlermeldung.

Ansonsten wäre es sinnvoll, mehr von deinem R-Script zu zeigen.