在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))
但这不能满足我的要求。你能指导我吗