Multiple t test in MATLAB
Afficher commentaires plus anciens
I have a set of data for three kinds of patients who :
1- have the disease
2- might be at risk to have the disease
3- healthy people who dont
I need to compare x,y, and z coordinates of their MRIs.
What kind of T test should I be using as I'm very confused about it?
1 commentaire
Scott MacKenzie
le 17 Fév 2022
It might help if you post the data.
Réponses (1)
Prachi Kulkarni
le 2 Déc 2021
0 votes
Hi,
Please refer to the documentation and examples related to multcompare for multiple comparison tests.
2 commentaires
Mariya Ali
le 7 Fév 2022
Prachi Kulkarni
le 16 Fév 2022
Hi,
If the x-coordinates are in the vector x and the category of the disease categories are in the vector d, you can perform the test as follows.
[p,t,stats] = anova1(d,x);
c = multcompare(stats);
Catégories
En savoir plus sur Hypothesis Tests dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!