Hi Allin

Okay, thanks

Gene


On Monday, June 10, 2024 at 03:16:31 PM EDT, Cottrell, Allin <cottrell@wfu.edu> wrote:


On Mon, Jun 10, 2024 at 2:47 PM gene shackman <gsociology@yahoo.com> wrote:
>
> Question. When I did the correlation, all I got was the correlation coefficients. Is it possible for correlation to show the n and p values for each pair? This is when there are missing and correlation shows pairwise correlations.

If you want those details you need to script the procedure, as in

open data4-10.gdt
list L = 1 2 3 4
loop i=1..nelem(L)
    loop j=1..i-1
        corr L[i] L[j]
    endloop
endloop


Allin