Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add method for matrices #49

Open
PaulSoderlind opened this issue May 13, 2020 · 2 comments
Open

add method for matrices #49

PaulSoderlind opened this issue May 13, 2020 · 2 comments

Comments

@PaulSoderlind
Copy link
Contributor

like vcov(::HAC,Jacobian::Matrix,momentCondition::Matrix;... )

Motivation: this would allow users to bypass DataFrames and GLM, but still use CovarianceMatrices.jl, which could increase the user base of the CovarianceMatrices.jl package.

Example based on the first linear regression in README.md:

bw = 2

v = vcov(BartlettKernel(bw),lm1,prewhite = false)

X     = [ones(T) x]
(T,K) = (size(X,1),size(X,2))
b     = X\y
res   = y - X*b

B   = inv(X'X)                                    #Jacobian of moment conditions
A   = lrvar(BartlettKernel(bw),res.*X)*T*(1+K/T)   #df adjustment is built into vcov
vPS = B*A*B

v and vPS are virtually the same.

As an alternative to create a method, this could perhaps just be added to the documentation.

@gragusa
Copy link
Owner

gragusa commented Jun 4, 2020

I have been thinking about this for a while. The alternative that I am exploring is to have a package called MomentConditionProblem where one defines MomentCondition and JacobianMomentCondition and then provide an interface to CovarianceMatrices.

@gragusa
Copy link
Owner

gragusa commented Sep 18, 2020

@PaulSoderlind, I think I have finished working on the master branch and I have done everything I wanted to do. The only thing left is your request. How would you like something like this:

sandwich(::HAC, H::Matrix, momentmatrix::Matrix; dof::Float64 = 0.0)

where dof is 0.0 (no adjustment) or k, in which case k degrees of freedom are subtracted to n.

vcov is something that I don't like (at least should be acov for asymptotic covariance). sandwich is a possibility.

Note: This is now implemented.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants