获取模型的值(类型 S4)? (最优惠的套餐)
Get the values of a model (Type S4)? (prodest package)
我正在使用这个 prodest
包,我想访问每个参数,例如系数和 sd。
library(prodest)
data(chilean)
OP.fit = prodestOP(chilean$Y,
fX = cbind(chilean$fX1, chilean$fX2),
chilean$sX,
chilean$inv,
chilean$idvar,
chilean$timevar)
summary(OP.fit)
# -------------------------------------------------------------
# - Production Function Estimation -
# -------------------------------------------------------------
# Method : OP
# -------------------------------------------------------------
# fX1 fX2 sX1
# Estimated Parameters : 0.314 0.256 0.168
# (0.038) (0.034) (0.032)
# -------------------------------------------------------------
# N : 2544
# -------------------------------------------------------------
# Bootstrap repetitions : 20
# 1st Stage Parameters : 0.314 0.256 -0.95
# Optimizer : optim
# -------------------------------------------------------------
# Elapsed Time : 0.02 mins
# -------------------------------------------------------------
# OP.fit$
OP.fit[1]
Error in OP.fit[1] : object type 'S4' is not a subset
该软件包似乎没有提供提取自举 SE 的方法。
可以直接从S4对象的slotEstimates中抓取:
OP.fit@Estimates
这给出了
$pars
fX1 fX2 sX1
0.3143463 0.2555818 0.1675415
$std.errors
fX1 fX2 sX1
0.03765673 0.03056369 0.02699638
我正在使用这个 prodest
包,我想访问每个参数,例如系数和 sd。
library(prodest)
data(chilean)
OP.fit = prodestOP(chilean$Y,
fX = cbind(chilean$fX1, chilean$fX2),
chilean$sX,
chilean$inv,
chilean$idvar,
chilean$timevar)
summary(OP.fit)
# -------------------------------------------------------------
# - Production Function Estimation -
# -------------------------------------------------------------
# Method : OP
# -------------------------------------------------------------
# fX1 fX2 sX1
# Estimated Parameters : 0.314 0.256 0.168
# (0.038) (0.034) (0.032)
# -------------------------------------------------------------
# N : 2544
# -------------------------------------------------------------
# Bootstrap repetitions : 20
# 1st Stage Parameters : 0.314 0.256 -0.95
# Optimizer : optim
# -------------------------------------------------------------
# Elapsed Time : 0.02 mins
# -------------------------------------------------------------
# OP.fit$
OP.fit[1]
Error in OP.fit[1] : object type 'S4' is not a subset
该软件包似乎没有提供提取自举 SE 的方法。 可以直接从S4对象的slotEstimates中抓取:
OP.fit@Estimates
这给出了
$pars
fX1 fX2 sX1
0.3143463 0.2555818 0.1675415
$std.errors
fX1 fX2 sX1
0.03765673 0.03056369 0.02699638