naivereg: Nonparametric additive instrumental variable estimator

Description Usage Arguments Details Value Author(s) References Examples

View source: R/naviereg.R

Description

NAIVE is the nonparametric additive instrumental variable estimator with the adaptive group Lasso. It uses group lasso and B-splines to obtain the valid instrument variables where BIC are applied to choose the tuning parameters. Then we get the two-stage least squares (2SLS) estimator with selected IV.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
naivereg(
  y,
  x,
  z,
  max.degree = 10,
  intercept = TRUE,
  criterion = c("BIC", "AIC", "GCV", "AICc", "EBIC"),
  df.method = c("default", "active"),
  penalty = c("grLasso", "grMCP", "grSCAD", "gel", "cMCP"),
  endogenous.index = c(),
  IV.intercept = FALSE,
  family = c("gaussian", "binomial", "poisson")
)

Arguments

y

Response variable, a matrix N x 1.

x

The design matrix, without an intercept.

z

The instrument variables matrix.

max.degree

The upper limit value of degree of B-splines when using BIC/AIC to choose the tuning parameters, default is BIC.

intercept

Estimate with intercept or not, default is "TRUE".

criterion

The criterion by which to select the regularization parameter. One of "AIC", "BIC", "GCV", "AICc","EBIC", default is "BIC".

df.method

How should effective model parameters be calculated? One of: "active", which counts the number of nonzero coefficients; or "default", which uses the calculated df returned by grpreg, default is "default".

penalty

The penalty to be applied to the model. For group selection, one of grLasso, grMCP, or grSCAD. For bi-level selection, one of gel or cMCP, default is " grLasso".

endogenous.index

Specify which variables in design matrix are endogenous variables, the variable corresponds to the value 1 is endogenous variables, thevariable corresponds to the value 0 is exogenous variable, the default is all endogenous variables.

IV.intercept

Intercept of instrument variables, default is “FALSE”.

family

Either "gaussian" or "binomial", depending on the response.default is " gaussian ".

Details

Consider the following structural equation with endogenous regressorsY_{i}= x_{u}^{T}β+ ε_{i}

To solve the endogeneity problem, instrumental variables are employed to obtain a consistent estimator of the population regression coefficient β. In practice, many potential instruments, including their series terms, may be recruited to approximate the optimal instrument and improve the precision of IV estimators. On the other hand, if many irrelevant instruments are contained in the reduced form equation, the approximation of the optimal instrument is generally unsatisfactory and the IV estimator is less efficient. In some cases where the dimensionality of z_{i}is even higher than the sample size, the linear IV method fails. To address these issues, the model sparsity is usually assumed and the penalized approaches can be applied to improve the efficiency of IV estimators. In this paper we propose the first-stage parsimonious predictive models and estimate optimal instruments in IV models with potentially more instruments than the sample size n.

The performance of the linear IV estimator in the finite sample is largely dependent on the validity of linearity assumption. This phenomenon motivated us to consider a more general nonlinear reduced form equation to capture as much information of x_{i}as possible using instruments z_{i} under the high-dimensional model settings. This nonparametric idea for the reduced form model is consistent with Newey (1990). We consider the following nonparametric additive reduced form model with a large number of possible instruments.

x_{il} = μ_l+∑_{j=1}^p f_{ij}z_{ij}+ξ_{il}

To estimate the nonparametric components above, we use B-spline basis functions by following the idea of Huang, Horowitz, and Wei (2010). Let S_{n}be the space of polynomial splines of degrees L>1 and let φ_{k},k=1,2,…,m_{n}be normalized B-spline basis functions for S_{n}, where m_{n} is the sum of the polynomial degree L and the number of knots. Let be the ψ_{k}(z_{ij})=φ_{k}(z_{ij})-n^{-1}∑_{i=1}^n φ_{k}(z_{ij})centered B-spline basis functions for the th instrument. The model can then be rewritten using an approximate linear reduced form:

x_{il} = μ_{l}+∑_{j=1}^pf_{ij} ∑_{k=1}^{m_{n}} (γ_{ij})ψ(z_{ij})+ξ_{il}

To select the significant instruments and estimate the component functions simultaneously, we consider the following penalized objective function with an adaptive group Lasso penalty (Huang, Horowitz, and Wei 2010) for each l th endogenous variable

L_{n}(γ_{l};λ_{n})=||X_{l}-Uλ_{l}||_{2}^{2}+λ_{n}∑_{j=1}^{p} ω_{njl} ||γ_{jl}||_{2},where ω_{jnl}=||γ_{jl}||_{2}^{-1},if ||γ_{jl}||_{2}>0,ω_{jnl}=infty,if ||γ_{jl}||_{2}=0

By minimizing the penalized objective function with a group Lasso penalty we by minimizing the penalized objective function with a group Lasso penalty. And then we use the selected IV for β in the model with two-stage least squares (2SLS).

Value

An object of type naivereg which is a list with the following components:

beta.endogenous

The coefficient of endogenous variable.

beta.exogenous

The coefficient of exogenous variable.

std.endogenous

The standard deviation of the endogenous variables' coefficients.

std.exogenous

The standard deviation of the exogenous variables' coefficients.

n

Number of samples.

degree

Degree of B-splines.

criterion

The criterion by which to select the regularization parameter. One of "AIC", "BIC", "GCV", "AICc","EBIC"; default is "BIC".

ind

The index of selected instrument variables. Each row represents the instrumental variable selected for the corresponding endogenous variable. The order of the endogenous variables is from left to right in x.

ind.b

The index of selected instrument variables after B-splines. Each row represents the instrumental variable selected for the corresponding endogenous variable. The order of the endogenous variables is from left to right in x.

res

The difference between the predicted y and the actual y.

t.endogenous

The t-value of the endogenous variables' coefficients.

t.exogenous

The t-value of the exogenous variables' coefficients.

endogenous.conf.interval.lower

The lower bound of 95 percent confidence interval for endogenous variables.

endogenous.conf.interval.upper

The upper bound of 95 percent confidence interval for endogenous variables.

exogenous.conf.interval.lower

The lower bound of 95 percent confidence interval for exogenous variables.

exogenous.conf.interval.upper

The upper bound of 95 percent confidence interval for exogenous variables.

Author(s)

Qingliang Fan, KongYu He, Wei Zhong

References

Q. Fan and W. Zhong (2018), “Nonparametric Additive Instrumental Variable Estimator: A Group Shrinkage Estimation Perspective,” Journal of Business & Economic Statistics, doi: 10.1080/07350015.2016.1180991.

Caner, M. and Fan, Q. (2015), Hybrid GEL Estimators: Instrument Selection with Adaptive Lasso, Journal of Econometrics, Volume 187, 256–274.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
#naive regression
library(naivereg)
data("naivedata")
x=naivedata[,1]
y=naivedata[,2]
z=naivedata[,3:22]
#estimate with intercept
naive_intercept= naivereg(y,x,z)
#estimate without intercept,criterion:AIC
naive_without_intercept = naivereg(y,x,z,intercept=FALSE,criterion='AIC')

Example output

$beta.endogenous
[1] 0.5025456

$beta.exogenous
[1] -0.02635853

$std.endogenous
[1] 0.003179608

$std.exogenous
[1] 0.03391826

$n
[1] 1000

$degree
[1] 3

$criterion
[1] "BIC"

$ind
[1]  1  4  5 15 19

$ind.b
 [1]  1  2  3 10 11 12 13 14 15 43 44 45 55 56 57

$res
   [1] -0.0619405377 -0.4514327715 -0.0023832421 -0.3123694571 -0.0578911146
   [6] -1.1362753765 -0.1532410549  0.1779392060  0.5202735923 -0.6924243887
  [11]  0.2182359054 -1.0446137692  0.1573921591  0.2451904180  0.6405971198
  [16]  0.3285238958 -0.9197128586  0.9871587764  0.1503584233  0.1345851962
  [21]  0.2129088004 -0.3519966280 -0.3211750656  0.1840844040 -0.9970164489
  [26]  0.0542770510 -0.7741598586  0.8891853344 -0.2996090098  0.1816093890
  [31]  0.8002839791 -0.5781747181 -0.2023855669 -0.0252071248 -0.0145681619
  [36] -0.6718672699  0.2633471521  0.2802384873 -0.1947851572 -0.8063151909
  [41] -0.2759866839  0.2724561051  0.3217204574 -0.5703775517 -0.4448363861
  [46]  0.4794413911 -0.6643031986  0.1196529207  0.4817434751  0.6871223894
  [51]  0.4982778019 -0.6694844024 -0.4207016212 -0.8288697360 -0.4409353143
  [56] -0.0282479724  0.2749281268 -0.4843647089 -0.6633155333  0.2798634003
  [61]  0.7956830053  1.3812157250  0.0520939698  0.1990247191 -0.2269624390
  [66]  0.0231708424 -0.4478490865 -0.3824005627 -0.1863348469  0.7620508632
  [71] -1.0290645263 -0.4996265642  0.6408834569  0.3299543121 -0.1806359559
  [76] -0.3081205087 -0.1895041266  0.4606143849  0.3571738981  0.0414493336
  [81]  0.6482659133  0.6552764242 -0.9446350072 -0.3139823041 -0.6297422094
  [86] -0.3402606916  0.3232859312 -0.2699926762  0.2086466189 -0.6198992040
  [91]  0.1427371748  0.4346306281 -0.4922220077 -0.5383318638  0.2370572322
  [96] -0.2687886237  0.1144220831  0.2123914530 -0.3369407156  0.1976918146
 [101] -0.5110011211 -0.8380842626  0.1535626527 -0.6982992752  0.0799743233
 [106] -0.6214564519 -0.3658900453  0.4777275865 -0.5669082543  0.2757424102
 [111] -1.1962922753 -0.0095435944  0.0223465953 -0.2071227658  0.4101502067
 [116]  0.2371889103 -0.2771259485  0.7578423114  0.3463956812 -0.5783633841
 [121]  0.1436697070  0.2705575806 -0.5273396417 -0.4241670954  0.1391412598
 [126]  0.1057996979  1.1444976665  0.0997995356 -0.5672032793  0.4511100795
 [131] -0.8424224865  0.0146082817 -0.4600492283 -0.6036289653  0.8963511728
 [136]  0.2393827046 -0.1654253252  0.2855759037  0.3010559580 -0.8197900010
 [141] -0.0231382568 -0.0592640301 -0.2297868836  0.1825455258 -0.0861934747
 [146]  0.1576846570  0.7759089164 -0.3210311635  0.7330384188 -0.5881498192
 [151]  0.0149677856  0.4003249160 -0.7965267693  0.0497352429 -0.2907957694
 [156]  0.0906931077 -0.8410194617 -0.4987854287  0.8177792991 -0.5985796392
 [161]  0.1016864177 -0.0158035533 -0.1450257711  0.6223279726 -0.0602063760
 [166]  0.3143654250  0.1901876443 -0.0430003392  0.5524641301  1.3326908938
 [171]  0.5922255836  0.6885013290  0.0065320437  0.3109882067 -0.1780768403
 [176]  0.3016474915 -0.5143520610 -0.0141003679  0.3478203767  0.5195895711
 [181] -0.5015391914 -0.2337639423 -0.1328962278  0.1387415597 -0.5756356329
 [186] -0.2317781150 -0.6885807784 -0.4392777805  0.0899108805 -0.5137099255
 [191] -0.4339206114 -0.3339021338 -0.8733948269 -0.4425318484  0.1106835996
 [196]  0.1071312557 -0.3429187046 -0.5183532892  1.0443494450 -0.3042213769
 [201]  0.4376319441  0.0793222215 -0.3075085787  0.5569020692  0.1522110378
 [206] -0.1412350084  0.4990673322  0.5891956542  0.6187482372  0.0557063094
 [211] -0.2071409964  0.0596891229 -0.8881338301 -0.4914366177  0.1624783989
 [216] -1.2784858399 -0.3969525690  1.2219770160  0.4827638744  0.4001506084
 [221] -0.8149839633  0.9706794226  0.6111652713 -0.4478275948  0.1373231843
 [226]  0.6408753567  0.0603663688 -0.3574120334 -0.6138820507  0.4265954419
 [231]  0.4691492673  0.4298851903  0.3850983355 -0.6667709556 -0.8200499035
 [236]  0.2187233424  1.2544594898  0.2092654258  0.0523546560  0.5310576300
 [241] -0.1928800799 -0.6251009163  0.7898240129 -0.2334307840 -0.2281686537
 [246] -0.7201845227  0.2829263219 -0.1556548683 -0.5053516313 -0.0928582167
 [251] -0.8440374883 -0.8547710549 -0.9234649884 -0.1893514129 -0.2774042821
 [256] -0.2396654359  0.4083178747 -0.6166398701  0.1055161556  0.3033802383
 [261] -0.0033840283  0.3368862484  0.2429589863  0.2629547533 -0.5482612252
 [266]  0.1941444714 -0.1526146687 -0.0079310443 -0.3452735722 -0.7519695979
 [271] -0.6644686664 -0.2345352841 -0.1047095296  0.1030979959 -0.5434631847
 [276]  0.9499515964  0.2674528870  0.4061884148  0.0353858908 -0.5585791138
 [281]  0.6280515432  0.6066606464 -0.1109022825 -0.4183312064 -0.0151321989
 [286] -0.3729794444 -0.9179585577  0.5279312138  0.0388384206  0.1752127524
 [291]  0.4083305644  0.8640654483  0.9472992122  0.1544594388  0.6324102260
 [296] -0.3318103525  0.6372835867 -0.1215519649  0.4697587899 -0.2702258262
 [301] -0.0107948145 -0.4933699867 -0.1418711852  0.1311017863  0.7685628704
 [306]  0.3871110670 -0.0031619867 -0.0356916582  0.2249165771  0.6881042232
 [311]  0.2525250688 -0.2803421903  0.0114952231 -0.5697840161 -0.6815881818
 [316] -0.3264521670  0.1884908440 -0.4372191573 -0.3295142612 -0.1347743867
 [321]  0.2055326758 -0.1299460344  0.1627072525  0.1895619193 -0.8053877404
 [326]  1.3013893510 -0.1653773451  0.2466274460 -0.3537826756  0.0764074036
 [331] -0.1434597644 -0.4928587996  0.6431265662  0.0102981916  0.9703185672
 [336]  0.0997110125  0.1159999434 -0.6419406482  0.1626236295  0.1708233230
 [341] -0.4096632183 -0.7731341033 -0.4191248576  0.3672306787 -0.6014732950
 [346]  1.0911477638  0.4263458492 -0.1076654571 -0.4029567973  0.6059905346
 [351]  0.2910589403 -0.2049900076  0.4433751608 -0.1445987762  0.5315962110
 [356]  0.9434197675 -0.2967631794  0.2470827288  0.4741281567 -0.3465105968
 [361]  0.0596420126 -0.2073873326  0.4881676760 -0.4261082554 -0.2549321171
 [366] -0.0540481728  0.6006776995  0.2094932624  0.1459296171  0.6406693381
 [371] -0.2263556287  0.0224877038  0.9893060960 -0.1518566580  0.8987836205
 [376]  0.2059689033  0.1179495362 -0.6017985532 -0.1784795277 -0.6417473130
 [381]  0.8146977543  0.4433753654 -0.0924843572  0.3777287515 -0.3128637716
 [386] -0.6235835670  0.2457921351 -0.6208207262  1.0179964717  0.0507494872
 [391]  0.1904601941 -0.0616825700  0.0878117914  0.5864398181  0.3932604686
 [396]  0.4407603941  0.0630699893 -1.1707259668  0.5514304831 -0.0120152398
 [401]  0.5098591655 -0.6068511644  0.5267267559 -0.6634353729 -0.5325827186
 [406]  0.1944934400  0.1731838190  0.5703849615 -0.6303220208 -0.0329330633
 [411]  0.5717875169 -0.3069540774 -0.7991978566  0.6009476636 -0.0135835408
 [416] -0.3400366278  0.7589114655  0.2762330226  0.1418993340  0.4660652403
 [421]  0.1682312304 -1.2788416858 -0.0733947587  0.0301301152  0.1963978810
 [426]  0.1310013868  0.4358154641 -0.4285001278 -0.4968855387 -0.3172433421
 [431] -1.0156258146 -0.1922986573  0.8100619848 -0.1257036694  0.0734131153
 [436] -0.0004164228 -0.7997962816 -0.0236818240  0.5099537357  0.4149367051
 [441]  0.3990414186 -0.0839272632 -0.2529572093 -0.3373740824  0.9147856499
 [446] -0.1953096195 -0.7681120006 -0.0827403198 -0.3517915866  0.5670281599
 [451] -0.5132728294  0.0457231615 -0.5300699339 -0.1828522680  0.1295555148
 [456]  0.3432819051  0.3259107554  0.2287464531  0.3276492101  0.0868777513
 [461] -0.3441675172  0.3738289741 -0.5084851580 -0.1735282222  0.3988155940
 [466] -0.0939822337 -0.2910711894  0.2965810486 -0.3808636839 -0.3402280107
 [471] -0.2911013957 -0.3618440552 -0.3347110242 -0.1718145399  0.2987886070
 [476] -1.3109191676 -0.3116366434 -0.3271943377 -0.1137737684  0.0592446847
 [481]  0.1717330954 -0.6538299187 -0.1445769893 -0.2561205622 -0.3262166959
 [486]  0.1426357504 -0.2258290202  0.6591021761  0.1297337297 -1.0051266272
 [491] -0.5541316831 -0.8843784910  0.1562922796  1.0054335094 -1.9642572781
 [496]  0.9582123250 -0.4589924897 -0.1773616299 -0.9602207652 -0.3250187583
 [501] -0.1629707629 -0.0672437069 -0.5452205430 -0.3386676837 -0.0234758002
 [506]  0.6235848126 -0.1532933952 -0.0875171555 -0.2655080744  0.6536015266
 [511]  0.0321634651 -0.4095822295 -0.2897553471  0.7657895908  0.1924299998
 [516] -0.0165856078  0.0817606921  0.2444571544 -0.1232542283 -0.3429477872
 [521] -0.4591702119 -0.2576112498 -0.3719661096  0.8000800692 -0.3796380078
 [526]  0.4552825442 -0.3636965759 -0.3009708116 -0.3408989584 -0.3393410401
 [531] -0.3245648164 -0.1682532388 -0.0271326077  0.3147286157 -0.2502494759
 [536] -0.0551986982  0.2398817736 -0.3290900826 -0.9787004447  0.1690664242
 [541]  0.3121384432  0.2963738630  0.6195122634 -0.3429363787 -0.6856806226
 [546] -0.2943165713  0.0115102064  0.0023679227 -0.3173013999 -0.1901019702
 [551] -0.0580388819  0.7080821530 -0.5385777483  0.2726583209 -0.1291056706
 [556] -0.1852889963  0.1104475900 -0.3382442159 -0.0554202578 -0.3288644514
 [561] -0.0582869701 -0.3520493313  0.2637739355  0.0215707339  0.3574187068
 [566]  0.1496926067  0.9881608918  0.4809952617  0.3513095753  0.9430940006
 [571]  0.6416556454  0.3920420867  0.7194300160 -0.5603966048  0.4574681831
 [576] -0.3442275950  0.3825562162  0.5456599965 -0.4532184319  0.5035383219
 [581] -0.1444153967  0.2923882196  0.1607843488  0.8508416678  0.5071609409
 [586] -0.4265877219 -0.1069970523 -0.5413883874 -0.1228720738 -0.1863518117
 [591]  0.0470065249 -0.0842683952  0.4801370375  0.3046539691  0.0092305135
 [596] -0.4773847416  0.6052936105  0.3942134947 -0.3085044033  0.1654826404
 [601] -0.3127951024 -0.1879538101  0.6687005264 -0.8098702645 -0.2620264299
 [606]  0.5241093227  1.2891612243  0.0596657427  0.7647392922 -0.1064897749
 [611] -1.0595281073  0.4295555825  0.2938282812  0.8233314582 -1.0282581883
 [616]  0.3089443142 -0.1140958794  0.2999807260  0.6804928596  0.1667533708
 [621]  0.2076282748  0.1079788177  0.9104613745 -0.2742991741  1.1893570007
 [626] -0.3085195815 -0.9312448671  0.6675509239  0.6875134518 -0.0118712711
 [631] -0.7848701557  0.8672378389 -0.8450593415  0.3029923232 -0.8888796284
 [636] -0.1275895980  1.0755285085  0.6244951860  0.2563338439  0.3060081726
 [641]  0.3951944541 -0.1853099143  0.2345151032 -0.7130745637 -0.2948480528
 [646] -0.8222544496 -0.8220713414 -0.4494239843  0.2322277374 -0.2888576850
 [651]  0.1001363993  0.4856407448 -0.6796945405 -0.6015403974 -0.0368256151
 [656] -0.3296957170  0.7534713634 -0.9598483293 -1.0615757697 -0.6695753115
 [661] -0.0021322052 -1.1866994871 -0.2604748990  0.1898688070  0.6467342013
 [666] -1.0010040055  0.1571005135 -0.4005906645 -0.4976199645 -0.6588427121
 [671] -0.2899146002 -0.2394035714 -0.2636044741  0.2381811700 -1.2066643217
 [676]  0.8824445040  0.2579465255 -0.1791285729 -0.1086531349 -0.3485647073
 [681]  0.7696404195 -0.1842913053  0.5189536502  0.1343811060 -0.2498595215
 [686]  0.4418766168  0.0898697769 -0.5118410289 -0.0622517173 -0.4052262111
 [691] -0.0710689800 -0.6408296735  0.1596722104  0.5296352284 -0.2633418373
 [696]  0.2536953485  0.0699324945  0.4708037517 -0.5252015456  0.3348995868
 [701]  0.4382015231  0.5015705977  0.7912018440 -0.4907477657 -0.7925753441
 [706] -0.4533221598  0.1994455034  0.2067768615 -0.0789963338  0.2286117268
 [711]  0.1361612282  0.3285658536 -0.5571619812  0.0479481896 -0.7563465811
 [716] -0.8216474095 -0.4870553420 -0.0419298984  0.3050707855 -0.3081090810
 [721]  0.1188761750  0.9921188909  0.1745392107 -0.1316401596 -0.2584313498
 [726]  0.4254246902 -0.6923789354  0.7980166983 -0.1742167999 -0.0868964763
 [731]  0.0993911777 -0.2679526114  0.2868419412 -0.4772614407  0.1176819458
 [736]  0.2318801139 -0.0031514088  0.4667194973  0.4972959533  0.2684601445
 [741] -0.0810621261 -0.2582619337 -0.2582787771 -0.2966976250  0.0642220878
 [746] -1.1609825608 -0.5327875717  0.8739343493 -0.0848874049 -0.2486891677
 [751] -0.2498056054 -0.0504959647  0.4835329254 -0.5162364174  0.1410872210
 [756]  0.0009503781  0.0145925072 -0.7141484624  0.4154091448  0.4234869265
 [761] -0.2881739350  0.0131589548 -0.5283828657  0.2571329704  0.3669386958
 [766]  0.0963681125  0.0741806106  0.0048874507  0.2775412009 -0.6112666092
 [771]  0.0425242413  1.1010043842  0.4125459407  0.1254139432  0.0007407437
 [776]  0.7201937064  0.0466484981 -0.8905525665 -0.6298023074 -0.8156998062
 [781]  0.9931685981  0.4787455913  0.7971100627 -0.4573406638 -0.4383048937
 [786] -0.0817700560  0.1229442422  0.6778265139 -0.0904051828  0.2292768933
 [791] -0.4094593021  0.1797218328 -0.3122167209  0.2444187005  0.1268777921
 [796]  0.0610234396  0.1246747253 -0.2949389613  0.6655151180  0.2448870514
 [801]  0.3319783456  0.6037663114  0.0088513385 -0.0648552845 -0.2404215824
 [806] -0.3127903981  0.5445630176  0.0795087358  0.3429332094  0.0346470944
 [811]  0.4109665001 -0.2556579005  0.2276203084  0.2455660235 -0.4989669735
 [816] -0.5819341816  0.7442359021 -0.8370442123  0.4689764783  0.1410322639
 [821]  1.2291006393  0.2137079914  0.3797911390  0.5890752108 -0.4673800973
 [826]  0.1624209052  0.2295274689  0.1183338939  0.0224792797  0.0236198814
 [831] -0.5835419149  0.4549191045 -0.0559771473  0.3170125855  0.7866453817
 [836]  0.0195135947 -0.1430653498  0.5215675979 -0.1302075686  0.0266656021
 [841] -0.0595347597  0.4288958553 -0.4920433326  0.1138619829 -0.5589334777
 [846] -0.1502623237  0.8637835467  0.1226263959  0.5623009078 -0.4678671358
 [851]  1.0298485456  0.5942095376 -0.1257485914 -0.0180974300 -0.0236015241
 [856] -0.0861611499  0.5653096358  0.3519697921 -0.4997034021  0.0419798567
 [861] -1.2876880156 -0.9739515751 -0.0454564014 -0.0649767630 -0.6170849806
 [866]  0.1812938273 -0.6417503974 -0.4328576207  0.1504828489 -0.8354665606
 [871] -0.0527402975 -0.2560508943 -0.0293544710  1.2298115737  0.9026476666
 [876]  0.2719957143 -0.3447468760  0.7975520497 -0.9459577838 -1.0044810014
 [881]  0.3963271009  0.8044436146 -0.6867190893 -0.0921114723 -0.6818743823
 [886] -0.4987092853 -0.1971835572  0.0672135873 -0.4810550196 -0.1713231881
 [891]  0.1258905152 -0.5581080394  0.5910521104 -0.0175553640 -0.1558466549
 [896]  0.6872225821 -0.6550701199 -0.1830070193  0.5691142514  0.0924728750
 [901] -0.6151502623 -1.6268275554  0.4363394107  0.0744041452  0.6978201904
 [906]  0.2215111712 -0.0048717304  0.7677167470 -0.3865584284  0.1865355392
 [911] -0.1582511604 -0.2993472916  0.6704564088  0.2531962975  0.2315912520
 [916]  0.5765238762  0.1865254839 -0.2513900518 -0.2066723703  0.2467747099
 [921]  0.1497100318 -0.1582424734 -0.4942027971  0.7962676246 -0.1496829103
 [926]  0.2413568140  0.9665870630 -0.2722106805  0.2334373884  0.1463109578
 [931]  1.1309403591  0.0255555248 -0.2684932584  0.5360834112  0.1202286900
 [936]  0.2195463510  0.5280385858 -0.4474297717 -0.0591038128  0.7629280453
 [941]  0.2879301560  0.8656872176 -0.8802909615 -0.4804662676  0.2494187126
 [946] -0.3592565920  0.1119224073  0.3346713912 -0.3106855539  0.2488633799
 [951]  0.1465558021 -0.7637643520  0.8355315681 -0.0366155742 -0.0508553647
 [956] -0.5697999607 -0.4831308549 -0.1150948119 -0.1146994432 -1.1058945601
 [961] -0.0457119217  0.2290847788  0.7451380179 -0.1465931301  0.4757746440
 [966] -0.1644560133 -0.4539871994  0.4404870053  0.2610465902 -0.1396661727
 [971] -1.5217649230 -0.7899852413  0.2259720914 -0.0103538405  0.2368842544
 [976]  0.5659120298 -1.1179249432 -0.2212949766 -0.2608511799 -0.7433788580
 [981] -0.2360121324  0.4150402716  0.9560951450 -0.6003002073  0.0597550541
 [986] -0.2583302088  0.7348692413  0.3571349992  0.4711176827  0.5491337478
 [991]  0.8334880570 -0.2246854833 -0.0503128041  0.7843414754  0.6928823987
 [996]  0.7010564247 -0.4351908132 -0.0655267090  0.4906184118  0.6437725297

$beta.endogenous
[1] 0.5001857

$beta.exogenous
[1] NA

$std.endogenous
[1] 0.001478244

$std.exogenous
[1] NA

$n
[1] 1000

$degree
[1] 4

$criterion
[1] "AIC"

$ind
 [1]  1  2  4  5  8 10 12 13 15 17 18 19

$ind.b
 [1]  1  2  3  4  5  6  7  8 13 14 15 16 17 18 19 20 29 30 31 32 37 38 39 40 45
[26] 46 47 48 49 50 51 52 57 58 59 60 65 66 67 68 69 70 71 72 73 74 75 76

$res
   [1] -0.0675002356 -0.4708676590 -0.0309466949 -0.3174957476 -0.0566538277
   [6] -1.1423650680 -0.1555596474  0.1635036927  0.5280262343 -0.7050294742
  [11]  0.1793164015 -1.0504350624  0.1633014106  0.2586431712  0.6405304259
  [16]  0.2996184482 -0.9296636170  0.9786577437  0.1297977381  0.1152948042
  [21]  0.1793323269 -0.3590305989 -0.3186425550  0.1645273265 -0.9736341079
  [26]  0.0396455859 -0.7874140003  0.8738243909 -0.3048129109  0.1807691693
  [31]  0.7875563195 -0.5513188844 -0.1903913780 -0.0188067235  0.0119970037
  [36] -0.6840226590  0.2551826051  0.3024716218 -0.1972112701 -0.7924225732
  [41] -0.2805101872  0.2644461697  0.3133675061 -0.5767472215 -0.4547219829
  [46]  0.5379222865 -0.6713203869  0.1109204558  0.4673364996  0.6645119195
  [51]  0.4832781288 -0.6406945540 -0.4118884597 -0.8264440799 -0.4464960843
  [56] -0.0479062291  0.2585105800 -0.4868238666 -0.6700915885  0.2759655897
  [61]  0.7932695095  1.3534881438  0.0323323009  0.2059393190 -0.2184588492
  [66]  0.0039264100 -0.4478637801 -0.3831929514 -0.1947464257  0.7516125360
  [71] -1.0257133915 -0.5030120361  0.6233713768  0.3156746638 -0.2032510390
  [76] -0.3020894726 -0.2001753474  0.4831077959  0.3453740864  0.0260241662
  [81]  0.6451983793  0.6607078789 -0.9600208044 -0.3120456727 -0.6122176254
  [86] -0.3516776223  0.3064041523 -0.2683868024  0.2002489353 -0.6196141187
  [91]  0.1364618904  0.4181031199 -0.4872977575 -0.5294501457  0.2466647327
  [96] -0.2832565445  0.1006097597  0.2054049341 -0.3567598827  0.1876219297
 [101] -0.5040751452 -0.8560367065  0.1434257865 -0.6822270524  0.0695104868
 [106] -0.6264078536 -0.3753104322  0.4683522285 -0.5623776087  0.2699216547
 [111] -1.1813088358 -0.0178433274  0.0058127777 -0.1964827778  0.4164078515
 [116]  0.2166964189 -0.2833436956  0.7472248441  0.3292736924 -0.5902700037
 [121]  0.1363515570  0.2849225637 -0.5059224335 -0.4346695681  0.1224123348
 [126]  0.0935752101  1.1389503645  0.0831901794 -0.5683568558  0.4510231774
 [131] -0.8277631089  0.0091256927 -0.4558948319 -0.6161596707  0.8924746395
 [136]  0.2295721818 -0.1518161774  0.2776280914  0.3105954313 -0.7977071108
 [141] -0.0305442693 -0.0619828845 -0.2428732579  0.1730278237 -0.0922439171
 [146]  0.1637832615  0.7692275772 -0.3362849374  0.7369355333 -0.5800916156
 [151]  0.0147194085  0.4130124300 -0.7998221186  0.0640170600 -0.3198557741
 [156]  0.0782503997 -0.8395718817 -0.5020963571  0.8237470381 -0.6012553150
 [161]  0.0767753593 -0.0365649113 -0.1660389300  0.6165270302 -0.0573489910
 [166]  0.3074544994  0.1830831543 -0.0546677595  0.5410148907  1.3095794320
 [171]  0.6083118749  0.6831799207 -0.0003069195  0.2959676936 -0.1876136736
 [176]  0.3018989292 -0.5219510191 -0.0216189026  0.3476538708  0.5313994775
 [181] -0.5140878466 -0.2394848516 -0.1396930274  0.1351511581 -0.5701995884
 [186] -0.2414536672 -0.6621633136 -0.4495531615  0.0891070565 -0.4946964425
 [191] -0.4502532390 -0.3177573359 -0.8885748559 -0.4414687158  0.0982685164
 [196]  0.1156692353 -0.3491498109 -0.5114886909  1.0498661181 -0.2972016549
 [201]  0.4528709053  0.0680459979 -0.3099202622  0.5419793792  0.1428957140
 [206] -0.1450593291  0.4882589542  0.5749958607  0.6204966239  0.0419918070
 [211] -0.2223819032  0.0936183970 -0.8933714149 -0.5001830410  0.1336571124
 [216] -1.2775205077 -0.4024325525  1.2133853254  0.4717729354  0.3823150399
 [221] -0.7808404487  0.9620691081  0.6077581581 -0.4284178978  0.1160208671
 [226]  0.6427257752  0.0492895323 -0.3321386548 -0.6047678536  0.4252173288
 [231]  0.4795873504  0.4505029885  0.3876052525 -0.6609717985 -0.8147731388
 [236]  0.2176959573  1.2490126909  0.2049210748  0.0453385582  0.5145611214
 [241] -0.2003002945 -0.6337005701  0.7838202147 -0.2298766037 -0.2377141046
 [246] -0.7012839951  0.2818262127 -0.1594543266 -0.5005817787 -0.0931036651
 [251] -0.8236412637 -0.8518533669 -0.9045537895 -0.1970801705 -0.2911123829
 [256] -0.2249243875  0.4026425178 -0.6269352091  0.0945467469  0.2783549450
 [261] -0.0155860482  0.3196976468  0.2317455967  0.2810004569 -0.5515658738
 [266]  0.1890733469 -0.1556875888  0.0257302037 -0.3552392527 -0.7540109713
 [271] -0.6773524199 -0.2408306311 -0.0841327394  0.0947956476 -0.5464162964
 [276]  0.9492334033  0.2430039539  0.3819382348  0.0332428520 -0.5726138582
 [281]  0.5955818083  0.5866618350 -0.1124898423 -0.4360908886 -0.0327529443
 [286] -0.3692210319 -0.9267861978  0.5158713153  0.0239811775  0.1521011991
 [291]  0.4023902707  0.8733644542  0.9515807178  0.1342985739  0.6073476177
 [296] -0.3408240007  0.6276270185 -0.1153208577  0.4561699506 -0.2861027019
 [301] -0.0245176869 -0.4973663981 -0.1281894300  0.1404687431  0.7554950583
 [306]  0.3785159682  0.0071502274 -0.0215504571  0.2049496703  0.6826129326
 [311]  0.2522146976 -0.2820738579 -0.0012198081 -0.5878027073 -0.6839267003
 [316] -0.3375934188  0.2108018714 -0.4509303827 -0.3387174610 -0.1524591552
 [321]  0.1920108789 -0.1388366342  0.1429468998  0.1959458913 -0.8079601642
 [326]  1.2822445252 -0.1645948999  0.2691689795 -0.3626272087  0.0687466314
 [331] -0.1357434193 -0.4954518495  0.6171153825  0.0171316721  0.9718417038
 [336]  0.0852957027  0.1208364987 -0.6460789299  0.1643130713  0.1584774298
 [341] -0.4006566307 -0.7699963398 -0.4107494044  0.3662375707 -0.5932305314
 [346]  1.0897141867  0.4244749073 -0.1119035822 -0.4005325062  0.5913973899
 [351]  0.2760364191 -0.2153111029  0.4172149644 -0.1549865215  0.5252558152
 [356]  0.9665425977 -0.2900081869  0.2546760197  0.4767633494 -0.3453359619
 [361]  0.0744088657 -0.2216957107  0.4724837844 -0.4331536803 -0.2645039980
 [366] -0.0616771439  0.6168676350  0.2197626879  0.1371113711  0.6300005443
 [371] -0.2190796404 -0.0034264855  0.9883578119 -0.1435003584  0.8898596358
 [376]  0.1915650825  0.1224614154 -0.6056681167 -0.1910357200 -0.6302769223
 [381]  0.8018538281  0.4304662918 -0.0775666669  0.3774154364 -0.2995264786
 [386] -0.6282330491  0.2491381608 -0.6365079355  1.0047105101  0.0612519060
 [391]  0.1798551249 -0.0829887187  0.0926373766  0.5760790684  0.3972995848
 [396]  0.4172601750  0.0618666274 -1.1830225780  0.5399983232 -0.0179900076
 [401]  0.5121216478 -0.6040651984  0.5102739515 -0.6635638811 -0.5373533358
 [406]  0.1857155544  0.1649536340  0.5599649339 -0.6365766712 -0.0110589381
 [411]  0.5734632765 -0.2803871827 -0.7971319681  0.5761995551 -0.0138574787
 [416] -0.3470847897  0.7488132489  0.2559374546  0.1486144381  0.4986678191
 [421]  0.1584161687 -1.2859437632 -0.0880721686  0.0147647144  0.1891015688
 [426]  0.1325521089  0.4239248817 -0.4441481121 -0.5022342641 -0.3337985252
 [431] -1.0193604507 -0.1877970313  0.8001035379 -0.1204907313  0.0488122529
 [436] -0.0104795412 -0.8075575005 -0.0311345432  0.4974852441  0.4067061683
 [441]  0.4076327263 -0.0953392933 -0.2658757175 -0.3593046697  0.9232564600
 [446] -0.1997601723 -0.7641701891 -0.0801408058 -0.3658911472  0.5795294981
 [451] -0.5235156167  0.0362696866 -0.5429266714 -0.1847174270  0.1124596184
 [456]  0.3321447121  0.3116487211  0.2027727738  0.3174867830  0.0796283554
 [461] -0.3525636410  0.3630705907 -0.5036453381 -0.1987221850  0.3743868130
 [466] -0.1008294214 -0.3007105086  0.2861065610 -0.3979125303 -0.3507311976
 [471] -0.2752195144 -0.3652982675 -0.3305368716 -0.1803335624  0.2789447962
 [476] -1.3165217295 -0.3136631744 -0.3518553868 -0.1115636443  0.0504594930
 [481]  0.1555693032 -0.6625392007 -0.1530210516 -0.2646438757 -0.3157832975
 [486]  0.1472564875 -0.2318245664  0.6559932510  0.1062450753 -0.9653735616
 [491] -0.5613733418 -0.8936595814  0.1672981702  1.0151862987 -1.9374467687
 [496]  0.9637827339 -0.4514926157 -0.1552392242 -0.9605946391 -0.3308719916
 [501] -0.1690324357 -0.0582064677 -0.5501483546 -0.3552684668 -0.0240450791
 [506]  0.6310983571 -0.1534123759 -0.0667787172 -0.2702459568  0.6609846696
 [511]  0.0170925537 -0.4228630181 -0.2824399267  0.7476903429  0.2006353328
 [516] -0.0241600486  0.0776747080  0.2399031053 -0.1161943634 -0.3370531638
 [521] -0.4665672194 -0.2598169647 -0.3820056519  0.7781509275 -0.3971815891
 [526]  0.4706228606 -0.3867613903 -0.2930532869 -0.3301017652 -0.3388417132
 [531] -0.3380982659 -0.1731928808 -0.0446928576  0.2975360404 -0.2552807566
 [536] -0.0644528723  0.2383569055 -0.3151628957 -0.9722144743  0.1691081281
 [541]  0.3014990147  0.2851573073  0.6262049067 -0.3508749957 -0.6586847960
 [546] -0.3070554827  0.0048566146  0.0016472240 -0.3063980058 -0.1870152763
 [551] -0.0643007772  0.7009477457 -0.5538636920  0.2590013119 -0.1469263609
 [556] -0.1944818491  0.1086861969 -0.3458261886 -0.0506370238 -0.3181977233
 [561] -0.0701651771 -0.3506433249  0.2625205256  0.0120973464  0.3411904111
 [566]  0.1652711462  0.9886293208  0.4642310198  0.3409745262  0.9571361953
 [571]  0.6246618955  0.3881663734  0.7162803489 -0.5380355837  0.4524431309
 [576] -0.3538227144  0.3887885951  0.5248954741 -0.4511997049  0.4909386864
 [581] -0.1374109696  0.2712306134  0.1679927592  0.8530469544  0.4999393022
 [586] -0.4443296120 -0.0966899869 -0.5401679950 -0.1361737729 -0.1884890584
 [591]  0.0296945868 -0.0978739302  0.4657676967  0.3003411655  0.0082753285
 [596] -0.4947563090  0.5827539191  0.3773178123 -0.3082393901  0.1634646214
 [601] -0.3118276625 -0.1921336761  0.6429985376 -0.8183354452 -0.2900044969
 [606]  0.5044422026  1.2675101008  0.0491808251  0.7577816475 -0.1208782999
 [611] -1.0405994864  0.4221609711  0.2952649367  0.7992571276 -1.0295791535
 [616]  0.3074963028 -0.1006868892  0.3520123824  0.6634631283  0.1591782391
 [621]  0.2018660179  0.1249169913  0.9149576746 -0.2933345884  1.1858135076
 [626] -0.3243987322 -0.9360022554  0.6507787739  0.6754948429 -0.0172530666
 [631] -0.7678042142  0.8599505388 -0.8455994889  0.2990712949 -0.8791676616
 [636] -0.1379282268  1.0540478540  0.6326837835  0.2360722851  0.3205806791
 [641]  0.3835271757 -0.1810784299  0.2523124488 -0.7143983502 -0.3037614235
 [646] -0.8282620629 -0.8124506790 -0.4596858235  0.2251021917 -0.3129436325
 [651]  0.0932670954  0.4704855773 -0.6789953526 -0.6119770174 -0.0234412900
 [656] -0.3321334620  0.7382749437 -0.9766874537 -1.0740922160 -0.6639337996
 [661] -0.0062035192 -1.1930240444 -0.2341618378  0.1772131694  0.6339161603
 [666] -1.0054343566  0.1518610429 -0.4156138073 -0.5036669655 -0.6510757940
 [671] -0.3056724297 -0.2555523839 -0.2792609549  0.2399104269 -1.2229760483
 [676]  0.8743323953  0.2477139949 -0.1711496085 -0.0989824834 -0.3641703576
 [681]  0.7852456336 -0.2008981966  0.5066784312  0.1372865751 -0.2540440748
 [686]  0.4628194229  0.0683777083 -0.5167891723 -0.0643472377 -0.4037021663
 [691] -0.0945789345 -0.6333901945  0.1592145226  0.5148068807 -0.2793735299
 [696]  0.2464832593  0.0481381716  0.4729068680 -0.5393516893  0.3151962538
 [701]  0.4345983044  0.4957289911  0.7887068036 -0.4872044297 -0.8018078696
 [706] -0.4518009658  0.2191920476  0.1992292097 -0.0921082666  0.2320893543
 [711]  0.1256800847  0.3224350749 -0.5388421818  0.0650997666 -0.7559748269
 [716] -0.8421926230 -0.4819119390 -0.0434412505  0.3090186719 -0.3041429941
 [721]  0.1036413902  0.9952391936  0.1720890700 -0.1299235763 -0.2613163932
 [726]  0.4234673406 -0.6916910777  0.7714527898 -0.1769290857 -0.0864233153
 [731]  0.0918409305 -0.2831192800  0.2762203014 -0.4791109692  0.1206076638
 [736]  0.2187037043 -0.0045989550  0.4506332974  0.5058937186  0.2694611135
 [741] -0.1026282729 -0.2367369428 -0.2770708405 -0.3023777032  0.0793911935
 [746] -1.1328469733 -0.5178897724  0.8568363351 -0.0645939939 -0.2540956624
 [751] -0.2538855304 -0.0662708795  0.4832749176 -0.5200578933  0.1210740546
 [756]  0.0260667981  0.0287009522 -0.7189348008  0.3931756162  0.3949117809
 [761] -0.2704326545  0.0150765106 -0.5504171030  0.2542296022  0.3579633739
 [766]  0.0838170592  0.1137455534  0.0561452615  0.2601710642 -0.6167572244
 [771]  0.0369895563  1.0908688247  0.4033331563  0.1449643707  0.0140993744
 [776]  0.7134629229  0.0256264170 -0.9011982020 -0.6268795214 -0.8110573836
 [781]  0.9868989015  0.4764174860  0.7951434993 -0.4605940822 -0.4485984738
 [786] -0.1009216475  0.1404483951  0.6796940643 -0.0970117974  0.2176268546
 [791] -0.3899074311  0.1743927588 -0.3127410111  0.2598850321  0.1714102323
 [796]  0.0692351260  0.1066630455 -0.2867635580  0.6548273784  0.2311550705
 [801]  0.3214520530  0.6088115011  0.0004541204 -0.0581394963 -0.2560359964
 [806] -0.3206859059  0.5344298761  0.1104966662  0.3268984904  0.0160684039
 [811]  0.4179014727 -0.2486938025  0.2184404186  0.2372331980 -0.4773625826
 [816] -0.5721278083  0.7425749089 -0.8499901385  0.4664788429  0.1277079554
 [821]  1.2210496492  0.1914341721  0.3694788877  0.5789278732 -0.4749320929
 [826]  0.1511561047  0.2068265465  0.1348298032  0.0115928574  0.0027149035
 [831] -0.5938952731  0.4397829266 -0.0531357990  0.3115826209  0.7590793374
 [836]  0.0200473156 -0.1406173005  0.5185631505 -0.1456653996  0.0493960243
 [841] -0.0740307385  0.4223099288 -0.4923156370  0.1057807015 -0.5694490303
 [846] -0.1707881104  0.8429556762  0.1011830401  0.5752422271 -0.4611945495
 [851]  1.0063998174  0.5849576484 -0.1373777427 -0.0282051262 -0.0248568425
 [856] -0.0778013735  0.5464124965  0.3587337705 -0.5002777073  0.0302012322
 [861] -1.2794100536 -0.9789748005 -0.0549422712 -0.0848551766 -0.6265305040
 [866]  0.1857083657 -0.6504129440 -0.4143846035  0.1463439966 -0.8399040587
 [871] -0.0610851567 -0.2542656603 -0.0435754026  1.2215213795  0.8829399774
 [876]  0.2575552869 -0.3770089793  0.7786585455 -0.9220357911 -1.0226489953
 [881]  0.3764709884  0.7906353499 -0.6334904433 -0.0993377778 -0.6933961488
 [886] -0.5066669849 -0.2113099208  0.0563827116 -0.4755738494 -0.1818968516
 [891]  0.1178299537 -0.5612757377  0.5814912616 -0.0154147952 -0.1602941888
 [896]  0.6708434851 -0.6615467229 -0.1853321382  0.5560489912  0.0859667160
 [901] -0.5861200926 -1.6235114993  0.4359476131  0.0883313722  0.6719893502
 [906]  0.2222963661 -0.0022745676  0.7624879000 -0.3916765146  0.1717820846
 [911] -0.1650307982 -0.3018947820  0.6478712979  0.2409290349  0.2286151344
 [916]  0.5652899690  0.1832350455 -0.2539561608 -0.2084095816  0.2917183253
 [921]  0.1377267587 -0.1604267345 -0.4937393991  0.7960316417 -0.1663992063
 [926]  0.2312035767  0.9537508766 -0.2848092648  0.2114631532  0.1304691167
 [931]  1.1121438109  0.0100020675 -0.2667875777  0.5532587665  0.1159233788
 [936]  0.2298815576  0.5201349347 -0.4525769679 -0.0740972763  0.7434685817
 [941]  0.2697289273  0.8591598943 -0.8813830800 -0.4655287414  0.2462819771
 [946] -0.3630479878  0.1207887646  0.3786412172 -0.3194605771  0.2413053770
 [951]  0.1588068894 -0.7717680335  0.8222202641 -0.0375002917 -0.0486023096
 [956] -0.5561366547 -0.4849693598 -0.1221475611 -0.1230680905 -1.1063761448
 [961] -0.0195232631  0.2374121470  0.7336383233 -0.1639886810  0.4699662090
 [966] -0.1742622046 -0.4740288008  0.4757447002  0.2550546587 -0.1665987594
 [971] -1.5135459502 -0.7942096508  0.2229732364 -0.0281292493  0.2246120332
 [976]  0.5659112228 -1.1064959189 -0.2215633835 -0.2572853140 -0.7572528185
 [981] -0.2424447825  0.4168646295  0.9409171413 -0.5910134122  0.0680794787
 [986] -0.2471483846  0.7196797175  0.3423550789  0.4600191090  0.5249061668
 [991]  0.8307431667 -0.2391569910 -0.0464511191  0.7560258703  0.6864908125
 [996]  0.6904980988 -0.4491114245 -0.0645640792  0.4796489406  0.6333799342

naivereg documentation built on March 18, 2020, 5:09 p.m.

Related to naivereg in naivereg...