필터 지우기
필터 지우기

How to calculate pearson correlation coefficient for more than one sample?

조회 수: 7 (최근 30일)
Hi,
I want to calculate Pearson correlation coefficient of "1000_at" with other samples in the given example, How I should do it? I searched relevant questions but getting results for data sets in which only two samples are present. I am new to statistics and programming, please help me to calculate or redirect me to relevant posts, Thank you.

채택된 답변

Star Strider
Star Strider 2014년 3월 20일
If M is your matrix, the column-wise correlations are in vector Rc:
Rm = corrcoef(M);
Rc = Rm(1,:)
The first entry of Rc is 1 because it is perfectly correlated with itself.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by