格式化dgCMatrix并将其存储在数据框中

时间:2019-05-23 06:00:34

标签: r

在r中,经过弹性净回归后,我得到的回归系数为dgCMatrix系数。系数看起来像

7 x 1 sparse Matrix of class "dgCMatrix"
                       1
(Intercept)      12.37486303
 LnPrice_x        .         
 LnPrice_y        .         
 LnPrice_x_comp1  .         
 LnPrice_x_comp2  .         
 LnPrice_x_comp3  0.07760043
 LnPrice_x_comp4 -0.02451433

我想从数据格式的此矩阵中获取格式化输出

Attribute Name          Value
Intercept           12.37486303
LnPrice_x           .
LnPrice_y           .
LnPrice_x_comp1 .
LnPrice_x_comp2 .
LnPrice_x_comp3 0.07760043
LnPrice_x_comp4 -0.02451433

我尝试了此代码

coeff_df=as.data.frame(as.matrix(coeff))

但这不能满足我的要求。你能指导我吗

0 个答案:

没有答案