You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The fuction _find_collinear_variables checks for multicollinearity using a cholesky decomposition. With many variables, it might become quite slow. One workaround is to jit compile it with numba.
s3alfisc
changed the title
Jit compile collinearity detection in _find_collinear_variables
Feols: Jit compile collinearity detection in _find_collinear_variablesMay 30, 2024
Context
The fuction
_find_collinear_variables
checks for multicollinearity using a cholesky decomposition. With many variables, it might become quite slow. One workaround is to jit compile it withnumba
.To do
Jit-compile _find_collinar_variables.
The text was updated successfully, but these errors were encountered: