Total SS: 2443.459 Degrees of freedom: 71
R-squared: 0.663 Rbar-squared: 0.653
Residual SS: 824.172 Std error of est: 3.407
F(271): 69.748 Probability of F: 0.000
Durbin-Watson: 2.421
Std Prob Std Cor with
Variable Estimate Error t-value >|t| Est Dep Var
-------------------------------------------------------------------------------
CONSTANT 41.6797 1.8989 21.95 0.000 --- ---
weight -0.00659 0.0006 -11.99 0.000 -0.885 -0.807175
foreign: Foreign -1.65003 0.9071 -1.819 0.073 -0.131 0.393397
Note: HAC robust standard errors reported
·计算Newey-West HAC标准误差的新程序 。
·所有稳健协方差过程现在都包括关闭小样本校正的选项 。
·扩展了数据帧和公式字符串兼容性 。
用于数据清理和探索的新功能between返回一个二进制向量 , 指示哪些观测值落在指定范围内 。 它可以与selif一起使用以选择行 。 支持日期和有序分类列 。
// Return a 1 if the observation is between the listed dates | |
match =between(unemp[.\"DATE\" \"2020-03\"\"2020-08\"); | |
// Select the matching observations | |
unemp =selif(unemp match); |
2020-03-01 4.4000
2020-04-01 14.700
2020-05-01 13.200
2020-06-01 11.000
2020-07-01 10.200
2020-08-01 8.4000
where提供一种方便直观的方法来合并或修改数据 。 它根据a或b条件返回元素 。