我正在运行Pearson关于Stata中多重估算数据的相关性:
mi query
local M=10
scalar corr=0
mi xeq 1/`M' : correlate v1 v2 ; scalar corr = corr + atanh(r(rho))
scalar corr = tanh(corr/`M')
di as txt "Correlation using Fisher's z over imputed data = " as res corr
上述代码运行良好,但不会为每个系数生成p值。
有没有办法包含p值?
答案 0 :(得分:1)
您可以使用带有pwcorr
选项的sig
获取具有p值的相关系数:
. sysuse auto, clear
(1978 Automobile Data)
. pwcorr price mpg length displacement headroom, sig
| price mpg length displa~t headroom
-------------+---------------------------------------------
price | 1.0000
|
|
mpg | -0.4686 1.0000
| 0.0000
|
length | 0.4318 -0.7958 1.0000
| 0.0001 0.0000
|
displacement | 0.4949 -0.7056 0.8351 1.0000
| 0.0000 0.0000 0.0000
|
headroom | 0.1145 -0.4138 0.5163 0.4745 1.0000
| 0.3313 0.0002 0.0000 0.0000
|
有关详细信息,请参阅help pwcorr
。