How to find 'within group correlation'?

3 views (last 30 days)
Alexis Fiddemon
Alexis Fiddemon on 26 Jul 2020
Answered: Jeff Miller on 27 Jul 2020
I am new to matlab and I'm working on a problem with training data X and target data t. The target t is either 1 or 0 denoting which class the rows of X belong to. X is a 179x2 matrix, and I'm supposed to find the "within group correlation" between two variables x1 and x2 for each class. Can anyone explain how to do this? The professor's notes don't mention this at all

Answers (1)

Jeff Miller
Jeff Miller on 27 Jul 2020
I would guess the idea is this:
grp0 = t == 0;
grp1 = t == 1;
corr(x(grp0,:))
corr(x(grp1,:))

Categories

Find more on Statistics and Machine Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!