How can I compare two measurements which are composed of matrices such as [0 1 0 0...]
2 views (last 30 days)
Show older comments
I'm currently doing analysis to compare two measurements, so I decided to use cohen's kappa.
The problem is that there are no meaningful values as a result.
For example, I have a two processed data like below.
emg = [0 0 0 0 0 1 1 0 0]; video = [0 0 0 0 0 0 0 0 0];
Do I need to make another row for 0, 1 each?, like
emg = [0 0 0 0 0 0 0 0 0];, emg = [1 1 1 1 1 0 0 1 1];
video = [0 0 0 0 0 0 0 0 0];, video = [1 1 1 1 1 1 1 1 1];
If anyone have an idea about statistical analysis, please give me a hand.
Accepted Answer
Jos (10584)
on 18 Mar 2019
You are looking for a measure of consistency between two measurements which are represented as binary vectors of the same length? My idea would be to count the discrepancies between them, and perhaps correct for the number of observations:
emg = [0 0 0 0 0 1 1 0 0]; video = [0 0 0 0 0 0 0 0 0];
fraction_of_discrepancy = sum(abs(emg - video)) / numel(emg)
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!