├── .DS_Store ├── CMG ├── Include │ └── cmg.h ├── MATLAB │ ├── Auxiliary │ │ └── ldlchol.m │ ├── Hierarchy │ │ ├── MexFunctions │ │ │ ├── MakeHierarchyMex.m │ │ │ ├── MakeHierarchyMex_debug.m │ │ │ ├── diagconjugate.m │ │ │ ├── graphprofile.m │ │ │ ├── laplacian2.m │ │ │ ├── perturbtril.m │ │ │ ├── splitforest.m │ │ │ ├── update_groups.m │ │ │ └── vpack.m │ │ ├── effective_degrees.m │ │ ├── hierarchy.m │ │ ├── inv_permutation.m │ │ ├── laplacian.m │ │ ├── laplacian_cmg.m │ │ ├── process_hierarchy.m │ │ ├── process_sparse_matrix.m │ │ └── steiner_group.m │ ├── Solver │ │ ├── MakeSolverMex.m │ │ ├── MakeSolverMex_debug.m │ │ ├── mx_d_preconditioner.c │ │ ├── mx_read_hierarchy.c │ │ └── mx_s_preconditioner.c │ ├── cholGsparse.m │ ├── cmg_dd.m │ ├── cmg_sdd.m │ └── outer-loop │ │ ├── inverse_power.m │ │ └── pcg_f.m ├── MakeCMG.m ├── README.txt ├── Source │ ├── Hierarchy │ │ ├── adjacency.c │ │ ├── adjacency_cmg.c │ │ ├── diagconjugate.c │ │ ├── forest_components.c │ │ ├── graphprofile.c │ │ ├── laplacian2.c │ │ ├── perturbtril.c │ │ ├── splitforest.c │ │ ├── update_groups.c │ │ └── vpack.c │ ├── Solver │ │ ├── ldl_solve.c │ │ ├── preconditioner.c │ │ ├── rmvec.c │ │ ├── spmv.c │ │ ├── sspmv.c │ │ ├── vmv.c │ │ ├── vpv.c │ │ ├── vpvmv.c │ │ └── vvmul.c │ └── outer-loop │ │ ├── daxpy.c │ │ ├── dpcg.c │ │ ├── dspmv.c │ │ ├── dsvinw.c │ │ ├── dvinw.c │ │ └── dvtof.c └── col_pfun.m ├── Icon ├── README.md ├── codes ├── .DS_Store ├── AM_CI.m ├── Include │ └── cmg.h ├── MATLAB │ ├── Auxiliary │ │ └── ldlchol.m │ ├── Hierarchy │ │ ├── MexFunctions │ │ │ ├── MakeHierarchyMex.m │ │ │ ├── MakeHierarchyMex_debug.m │ │ │ ├── adjacency_cmg.mexa64 │ │ │ ├── adjacency_cmg.mexmaci64 │ │ │ ├── diagconjugate.m │ │ │ ├── diagconjugate.mexa64 │ │ │ ├── diagconjugate.mexmaci64 │ │ │ ├── forest_components.mexa64 │ │ │ ├── forest_components.mexmaci64 │ │ │ ├── graphprofile.m │ │ │ ├── graphprofile.mexa64 │ │ │ ├── graphprofile.mexmaci64 │ │ │ ├── laplacian2.m │ │ │ ├── laplacian2.mexa64 │ │ │ ├── laplacian2.mexmaci64 │ │ │ ├── perturbtril.m │ │ │ ├── perturbtril.mexa64 │ │ │ ├── perturbtril.mexmaci64 │ │ │ ├── splitforest.m │ │ │ ├── splitforest.mexa64 │ │ │ ├── splitforest.mexmaci64 │ │ │ ├── update_groups.m │ │ │ ├── update_groups.mexa64 │ │ │ ├── update_groups.mexmaci64 │ │ │ ├── vpack.m │ │ │ ├── vpack.mexa64 │ │ │ └── vpack.mexmaci64 │ │ ├── effective_degrees.m │ │ ├── hierarchy.m │ │ ├── inv_permutation.m │ │ ├── laplacian.m │ │ ├── laplacian_cmg.m │ │ ├── process_hierarchy.m │ │ ├── process_sparse_matrix.m │ │ └── steiner_group.m │ ├── Solver │ │ ├── MakeSolverMex.m │ │ ├── MakeSolverMex_debug.m │ │ ├── mx_d_preconditioner.c │ │ ├── mx_d_preconditioner.mexa64 │ │ ├── mx_d_preconditioner.mexmaci64 │ │ ├── mx_read_hierarchy.c │ │ ├── mx_s_preconditioner.c │ │ ├── mx_s_preconditioner.mexa64 │ │ └── mx_s_preconditioner.mexmaci64 │ ├── cholGsparse.m │ ├── cmg_dd.m │ ├── cmg_sdd.m │ └── outer-loop │ │ ├── inverse_power.m │ │ └── pcg_f.m ├── MakeCMG.m ├── Source │ ├── Hierarchy │ │ ├── adjacency.c │ │ ├── adjacency_cmg.c │ │ ├── diagconjugate.c │ │ ├── forest_components.c │ │ ├── graphprofile.c │ │ ├── laplacian2.c │ │ ├── perturbtril.c │ │ ├── splitforest.c │ │ ├── update_groups.c │ │ └── vpack.c │ ├── Solver │ │ ├── ldl_solve.c │ │ ├── preconditioner.c │ │ ├── rmvec.c │ │ ├── spmv.c │ │ ├── sspmv.c │ │ ├── vmv.c │ │ ├── vpv.c │ │ ├── vpvmv.c │ │ └── vvmul.c │ └── outer-loop │ │ ├── daxpy.c │ │ ├── dpcg.c │ │ ├── dspmv.c │ │ ├── dsvinw.c │ │ ├── dvinw.c │ │ └── dvtof.c ├── andrews_correction_complete.m ├── bounds_variance_person_effects_stayers.m ├── build_adj.m ├── check_clustering.m ├── col_pfun.m ├── connected_set.m ├── construc_W.m ├── construc_W_FD.m ├── diff_means.m ├── do_Pii.m ├── eff_res.m ├── eff_res_FAST_FE_ONLY.m ├── eigAux.m ├── eig_x1bar.m ├── group_equally.m ├── index_constr.m ├── input_lambda_P_FE_fast.m ├── installCMG.m ├── kss_computation.m ├── kss_quadratic_form.m ├── kss_terms.m ├── lchol_iter.m ├── leave_out_COMPLETE.m ├── leave_out_FD.m ├── leave_out_KSS.m ├── leave_out_estimation_two_way.m ├── leave_out_estimation_two_way_FD.m ├── leverages.m ├── lincom_KSS.m ├── llr_fit.m ├── mat │ └── test.txt ├── pruning_unbal_v3.m ├── sigma_for_stayers.m ├── stacked_Fdelta.m ├── tabulation_10K.mat ├── trace_Atilde_sqr.m ├── trace_Atilde_sqr_FD.m └── variance_person_effects_stayers.m ├── data ├── .DS_Store ├── lincom.csv └── test.csv └── doc ├── .DS_Store ├── .ipynb_checkpoints ├── Leave Out Correction for Two-Way Models-checkpoint.ipynb ├── Leave Out Estimation of Variance Components in Two-Way Models using MATLAB-checkpoint.ipynb ├── Untitled-checkpoint.ipynb ├── Untitled1-checkpoint.ipynb ├── salvami-checkpoint.ipynb └── vignette-checkpoint.ipynb ├── KSS_slides_AEAs.pdf ├── Leave Out Estimation of Variance Components in Two-Way Models using MATLAB.ipynb ├── VIGNETTE.aux ├── VIGNETTE.bbl ├── VIGNETTE.blg ├── VIGNETTE.ipynb ├── VIGNETTE.log ├── VIGNETTE.out ├── VIGNETTE.pdf ├── VIGNETTE.synctex.gz ├── VIGNETTE.tex ├── VIGNETTE.toc ├── improved_JLA.aux ├── improved_JLA.bbl ├── improved_JLA.blg ├── improved_JLA.log ├── improved_JLA.out ├── improved_JLA.pdf ├── improved_JLA.synctex.gz ├── improved_JLA.tex ├── lit.bib └── matlab.sty /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/.DS_Store -------------------------------------------------------------------------------- /CMG/Include/cmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Include/cmg.h -------------------------------------------------------------------------------- /CMG/MATLAB/Auxiliary/ldlchol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Auxiliary/ldlchol.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/MakeHierarchyMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/MakeHierarchyMex.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/MakeHierarchyMex_debug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/MakeHierarchyMex_debug.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/diagconjugate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/diagconjugate.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/graphprofile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/graphprofile.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/laplacian2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/laplacian2.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/perturbtril.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/perturbtril.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/splitforest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/splitforest.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/update_groups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/update_groups.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/MexFunctions/vpack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/MexFunctions/vpack.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/effective_degrees.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/effective_degrees.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/hierarchy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/hierarchy.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/inv_permutation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/inv_permutation.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/laplacian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/laplacian.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/laplacian_cmg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/laplacian_cmg.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/process_hierarchy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/process_hierarchy.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/process_sparse_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/process_sparse_matrix.m -------------------------------------------------------------------------------- /CMG/MATLAB/Hierarchy/steiner_group.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Hierarchy/steiner_group.m -------------------------------------------------------------------------------- /CMG/MATLAB/Solver/MakeSolverMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Solver/MakeSolverMex.m -------------------------------------------------------------------------------- /CMG/MATLAB/Solver/MakeSolverMex_debug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Solver/MakeSolverMex_debug.m -------------------------------------------------------------------------------- /CMG/MATLAB/Solver/mx_d_preconditioner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Solver/mx_d_preconditioner.c -------------------------------------------------------------------------------- /CMG/MATLAB/Solver/mx_read_hierarchy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Solver/mx_read_hierarchy.c -------------------------------------------------------------------------------- /CMG/MATLAB/Solver/mx_s_preconditioner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/Solver/mx_s_preconditioner.c -------------------------------------------------------------------------------- /CMG/MATLAB/cholGsparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/cholGsparse.m -------------------------------------------------------------------------------- /CMG/MATLAB/cmg_dd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/cmg_dd.m -------------------------------------------------------------------------------- /CMG/MATLAB/cmg_sdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/cmg_sdd.m -------------------------------------------------------------------------------- /CMG/MATLAB/outer-loop/inverse_power.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/outer-loop/inverse_power.m -------------------------------------------------------------------------------- /CMG/MATLAB/outer-loop/pcg_f.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MATLAB/outer-loop/pcg_f.m -------------------------------------------------------------------------------- /CMG/MakeCMG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/MakeCMG.m -------------------------------------------------------------------------------- /CMG/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/README.txt -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/adjacency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/adjacency.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/adjacency_cmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/adjacency_cmg.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/diagconjugate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/diagconjugate.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/forest_components.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/forest_components.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/graphprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/graphprofile.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/laplacian2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/laplacian2.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/perturbtril.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/perturbtril.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/splitforest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/splitforest.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/update_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/update_groups.c -------------------------------------------------------------------------------- /CMG/Source/Hierarchy/vpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Hierarchy/vpack.c -------------------------------------------------------------------------------- /CMG/Source/Solver/ldl_solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/ldl_solve.c -------------------------------------------------------------------------------- /CMG/Source/Solver/preconditioner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/preconditioner.c -------------------------------------------------------------------------------- /CMG/Source/Solver/rmvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/rmvec.c -------------------------------------------------------------------------------- /CMG/Source/Solver/spmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/spmv.c -------------------------------------------------------------------------------- /CMG/Source/Solver/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/sspmv.c -------------------------------------------------------------------------------- /CMG/Source/Solver/vmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/vmv.c -------------------------------------------------------------------------------- /CMG/Source/Solver/vpv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/vpv.c -------------------------------------------------------------------------------- /CMG/Source/Solver/vpvmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/vpvmv.c -------------------------------------------------------------------------------- /CMG/Source/Solver/vvmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/Solver/vvmul.c -------------------------------------------------------------------------------- /CMG/Source/outer-loop/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/outer-loop/daxpy.c -------------------------------------------------------------------------------- /CMG/Source/outer-loop/dpcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/outer-loop/dpcg.c -------------------------------------------------------------------------------- /CMG/Source/outer-loop/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/outer-loop/dspmv.c -------------------------------------------------------------------------------- /CMG/Source/outer-loop/dsvinw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/outer-loop/dsvinw.c -------------------------------------------------------------------------------- /CMG/Source/outer-loop/dvinw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/outer-loop/dvinw.c -------------------------------------------------------------------------------- /CMG/Source/outer-loop/dvtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/Source/outer-loop/dvtof.c -------------------------------------------------------------------------------- /CMG/col_pfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/CMG/col_pfun.m -------------------------------------------------------------------------------- /Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/README.md -------------------------------------------------------------------------------- /codes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/.DS_Store -------------------------------------------------------------------------------- /codes/AM_CI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/AM_CI.m -------------------------------------------------------------------------------- /codes/Include/cmg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Include/cmg.h -------------------------------------------------------------------------------- /codes/MATLAB/Auxiliary/ldlchol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Auxiliary/ldlchol.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/MakeHierarchyMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/MakeHierarchyMex.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/MakeHierarchyMex_debug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/MakeHierarchyMex_debug.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/adjacency_cmg.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/adjacency_cmg.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/adjacency_cmg.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/adjacency_cmg.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/diagconjugate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/diagconjugate.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/diagconjugate.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/diagconjugate.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/diagconjugate.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/diagconjugate.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/forest_components.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/forest_components.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/forest_components.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/forest_components.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/graphprofile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/graphprofile.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/graphprofile.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/graphprofile.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/graphprofile.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/graphprofile.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/laplacian2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/laplacian2.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/laplacian2.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/laplacian2.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/laplacian2.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/laplacian2.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/perturbtril.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/perturbtril.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/perturbtril.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/perturbtril.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/perturbtril.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/perturbtril.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/splitforest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/splitforest.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/splitforest.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/splitforest.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/splitforest.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/splitforest.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/update_groups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/update_groups.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/update_groups.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/update_groups.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/update_groups.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/update_groups.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/vpack.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/vpack.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/vpack.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/vpack.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/MexFunctions/vpack.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/MexFunctions/vpack.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/effective_degrees.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/effective_degrees.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/hierarchy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/hierarchy.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/inv_permutation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/inv_permutation.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/laplacian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/laplacian.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/laplacian_cmg.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/laplacian_cmg.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/process_hierarchy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/process_hierarchy.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/process_sparse_matrix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/process_sparse_matrix.m -------------------------------------------------------------------------------- /codes/MATLAB/Hierarchy/steiner_group.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Hierarchy/steiner_group.m -------------------------------------------------------------------------------- /codes/MATLAB/Solver/MakeSolverMex.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/MakeSolverMex.m -------------------------------------------------------------------------------- /codes/MATLAB/Solver/MakeSolverMex_debug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/MakeSolverMex_debug.m -------------------------------------------------------------------------------- /codes/MATLAB/Solver/mx_d_preconditioner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/mx_d_preconditioner.c -------------------------------------------------------------------------------- /codes/MATLAB/Solver/mx_d_preconditioner.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/mx_d_preconditioner.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Solver/mx_d_preconditioner.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/mx_d_preconditioner.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/Solver/mx_read_hierarchy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/mx_read_hierarchy.c -------------------------------------------------------------------------------- /codes/MATLAB/Solver/mx_s_preconditioner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/mx_s_preconditioner.c -------------------------------------------------------------------------------- /codes/MATLAB/Solver/mx_s_preconditioner.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/mx_s_preconditioner.mexa64 -------------------------------------------------------------------------------- /codes/MATLAB/Solver/mx_s_preconditioner.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/Solver/mx_s_preconditioner.mexmaci64 -------------------------------------------------------------------------------- /codes/MATLAB/cholGsparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/cholGsparse.m -------------------------------------------------------------------------------- /codes/MATLAB/cmg_dd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/cmg_dd.m -------------------------------------------------------------------------------- /codes/MATLAB/cmg_sdd.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/cmg_sdd.m -------------------------------------------------------------------------------- /codes/MATLAB/outer-loop/inverse_power.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/outer-loop/inverse_power.m -------------------------------------------------------------------------------- /codes/MATLAB/outer-loop/pcg_f.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MATLAB/outer-loop/pcg_f.m -------------------------------------------------------------------------------- /codes/MakeCMG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/MakeCMG.m -------------------------------------------------------------------------------- /codes/Source/Hierarchy/adjacency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/adjacency.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/adjacency_cmg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/adjacency_cmg.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/diagconjugate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/diagconjugate.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/forest_components.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/forest_components.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/graphprofile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/graphprofile.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/laplacian2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/laplacian2.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/perturbtril.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/perturbtril.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/splitforest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/splitforest.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/update_groups.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/update_groups.c -------------------------------------------------------------------------------- /codes/Source/Hierarchy/vpack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Hierarchy/vpack.c -------------------------------------------------------------------------------- /codes/Source/Solver/ldl_solve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/ldl_solve.c -------------------------------------------------------------------------------- /codes/Source/Solver/preconditioner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/preconditioner.c -------------------------------------------------------------------------------- /codes/Source/Solver/rmvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/rmvec.c -------------------------------------------------------------------------------- /codes/Source/Solver/spmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/spmv.c -------------------------------------------------------------------------------- /codes/Source/Solver/sspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/sspmv.c -------------------------------------------------------------------------------- /codes/Source/Solver/vmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/vmv.c -------------------------------------------------------------------------------- /codes/Source/Solver/vpv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/vpv.c -------------------------------------------------------------------------------- /codes/Source/Solver/vpvmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/vpvmv.c -------------------------------------------------------------------------------- /codes/Source/Solver/vvmul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/Solver/vvmul.c -------------------------------------------------------------------------------- /codes/Source/outer-loop/daxpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/outer-loop/daxpy.c -------------------------------------------------------------------------------- /codes/Source/outer-loop/dpcg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/outer-loop/dpcg.c -------------------------------------------------------------------------------- /codes/Source/outer-loop/dspmv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/outer-loop/dspmv.c -------------------------------------------------------------------------------- /codes/Source/outer-loop/dsvinw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/outer-loop/dsvinw.c -------------------------------------------------------------------------------- /codes/Source/outer-loop/dvinw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/outer-loop/dvinw.c -------------------------------------------------------------------------------- /codes/Source/outer-loop/dvtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/Source/outer-loop/dvtof.c -------------------------------------------------------------------------------- /codes/andrews_correction_complete.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/andrews_correction_complete.m -------------------------------------------------------------------------------- /codes/bounds_variance_person_effects_stayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/bounds_variance_person_effects_stayers.m -------------------------------------------------------------------------------- /codes/build_adj.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/build_adj.m -------------------------------------------------------------------------------- /codes/check_clustering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/check_clustering.m -------------------------------------------------------------------------------- /codes/col_pfun.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/col_pfun.m -------------------------------------------------------------------------------- /codes/connected_set.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/connected_set.m -------------------------------------------------------------------------------- /codes/construc_W.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/construc_W.m -------------------------------------------------------------------------------- /codes/construc_W_FD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/construc_W_FD.m -------------------------------------------------------------------------------- /codes/diff_means.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/diff_means.m -------------------------------------------------------------------------------- /codes/do_Pii.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/do_Pii.m -------------------------------------------------------------------------------- /codes/eff_res.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/eff_res.m -------------------------------------------------------------------------------- /codes/eff_res_FAST_FE_ONLY.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/eff_res_FAST_FE_ONLY.m -------------------------------------------------------------------------------- /codes/eigAux.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/eigAux.m -------------------------------------------------------------------------------- /codes/eig_x1bar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/eig_x1bar.m -------------------------------------------------------------------------------- /codes/group_equally.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/group_equally.m -------------------------------------------------------------------------------- /codes/index_constr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/index_constr.m -------------------------------------------------------------------------------- /codes/input_lambda_P_FE_fast.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/input_lambda_P_FE_fast.m -------------------------------------------------------------------------------- /codes/installCMG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/installCMG.m -------------------------------------------------------------------------------- /codes/kss_computation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/kss_computation.m -------------------------------------------------------------------------------- /codes/kss_quadratic_form.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/kss_quadratic_form.m -------------------------------------------------------------------------------- /codes/kss_terms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/kss_terms.m -------------------------------------------------------------------------------- /codes/lchol_iter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/lchol_iter.m -------------------------------------------------------------------------------- /codes/leave_out_COMPLETE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/leave_out_COMPLETE.m -------------------------------------------------------------------------------- /codes/leave_out_FD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/leave_out_FD.m -------------------------------------------------------------------------------- /codes/leave_out_KSS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/leave_out_KSS.m -------------------------------------------------------------------------------- /codes/leave_out_estimation_two_way.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/leave_out_estimation_two_way.m -------------------------------------------------------------------------------- /codes/leave_out_estimation_two_way_FD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/leave_out_estimation_two_way_FD.m -------------------------------------------------------------------------------- /codes/leverages.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/leverages.m -------------------------------------------------------------------------------- /codes/lincom_KSS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/lincom_KSS.m -------------------------------------------------------------------------------- /codes/llr_fit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/llr_fit.m -------------------------------------------------------------------------------- /codes/mat/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/mat/test.txt -------------------------------------------------------------------------------- /codes/pruning_unbal_v3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/pruning_unbal_v3.m -------------------------------------------------------------------------------- /codes/sigma_for_stayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/sigma_for_stayers.m -------------------------------------------------------------------------------- /codes/stacked_Fdelta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/stacked_Fdelta.m -------------------------------------------------------------------------------- /codes/tabulation_10K.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/tabulation_10K.mat -------------------------------------------------------------------------------- /codes/trace_Atilde_sqr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/trace_Atilde_sqr.m -------------------------------------------------------------------------------- /codes/trace_Atilde_sqr_FD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/trace_Atilde_sqr_FD.m -------------------------------------------------------------------------------- /codes/variance_person_effects_stayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/codes/variance_person_effects_stayers.m -------------------------------------------------------------------------------- /data/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/data/.DS_Store -------------------------------------------------------------------------------- /data/lincom.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/data/lincom.csv -------------------------------------------------------------------------------- /data/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/data/test.csv -------------------------------------------------------------------------------- /doc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/.DS_Store -------------------------------------------------------------------------------- /doc/.ipynb_checkpoints/Leave Out Correction for Two-Way Models-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/.ipynb_checkpoints/Leave Out Correction for Two-Way Models-checkpoint.ipynb -------------------------------------------------------------------------------- /doc/.ipynb_checkpoints/Leave Out Estimation of Variance Components in Two-Way Models using MATLAB-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/.ipynb_checkpoints/Leave Out Estimation of Variance Components in Two-Way Models using MATLAB-checkpoint.ipynb -------------------------------------------------------------------------------- /doc/.ipynb_checkpoints/Untitled-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/.ipynb_checkpoints/Untitled-checkpoint.ipynb -------------------------------------------------------------------------------- /doc/.ipynb_checkpoints/Untitled1-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/.ipynb_checkpoints/Untitled1-checkpoint.ipynb -------------------------------------------------------------------------------- /doc/.ipynb_checkpoints/salvami-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/.ipynb_checkpoints/salvami-checkpoint.ipynb -------------------------------------------------------------------------------- /doc/.ipynb_checkpoints/vignette-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/.ipynb_checkpoints/vignette-checkpoint.ipynb -------------------------------------------------------------------------------- /doc/KSS_slides_AEAs.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/KSS_slides_AEAs.pdf -------------------------------------------------------------------------------- /doc/Leave Out Estimation of Variance Components in Two-Way Models using MATLAB.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/Leave Out Estimation of Variance Components in Two-Way Models using MATLAB.ipynb -------------------------------------------------------------------------------- /doc/VIGNETTE.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.aux -------------------------------------------------------------------------------- /doc/VIGNETTE.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.bbl -------------------------------------------------------------------------------- /doc/VIGNETTE.blg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.blg -------------------------------------------------------------------------------- /doc/VIGNETTE.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.ipynb -------------------------------------------------------------------------------- /doc/VIGNETTE.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.log -------------------------------------------------------------------------------- /doc/VIGNETTE.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.out -------------------------------------------------------------------------------- /doc/VIGNETTE.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.pdf -------------------------------------------------------------------------------- /doc/VIGNETTE.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.synctex.gz -------------------------------------------------------------------------------- /doc/VIGNETTE.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.tex -------------------------------------------------------------------------------- /doc/VIGNETTE.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/VIGNETTE.toc -------------------------------------------------------------------------------- /doc/improved_JLA.aux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/improved_JLA.aux -------------------------------------------------------------------------------- /doc/improved_JLA.bbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/improved_JLA.bbl -------------------------------------------------------------------------------- /doc/improved_JLA.blg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/improved_JLA.blg -------------------------------------------------------------------------------- /doc/improved_JLA.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/improved_JLA.log -------------------------------------------------------------------------------- /doc/improved_JLA.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/improved_JLA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/improved_JLA.pdf -------------------------------------------------------------------------------- /doc/improved_JLA.synctex.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/improved_JLA.synctex.gz -------------------------------------------------------------------------------- /doc/improved_JLA.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/improved_JLA.tex -------------------------------------------------------------------------------- /doc/lit.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/lit.bib -------------------------------------------------------------------------------- /doc/matlab.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsaggio87/LeaveOutTwoWay/HEAD/doc/matlab.sty --------------------------------------------------------------------------------