gitextract_f7cy6ezx/ ├── ChangeLog ├── README ├── apop.m4.h ├── apop_arms.c ├── apop_asst.m4.c ├── apop_bootstrap.m4.c ├── apop_conversions.m4.c ├── apop_data.m4.c ├── apop_db.m4.c ├── apop_db_mysql.c ├── apop_db_sqlite.c ├── apop_fexact.c ├── apop_hist.m4.c ├── apop_internal.h ├── apop_linear_algebra.m4.c ├── apop_linear_constraint.m4.c ├── apop_mapply.m4.c ├── apop_mcmc.m4.c ├── apop_missing_data.m4.c ├── apop_mle.m4.c ├── apop_model.m4.c ├── apop_name.m4.c ├── apop_output.m4.c ├── apop_rake.m4.c ├── apop_regression.m4.c ├── apop_settings.c ├── apop_sort.m4.c ├── apop_stats.m4.c ├── apop_tests.m4.c ├── apop_update.m4.c ├── apop_vtables.c ├── asprintf.c ├── cmd/ │ ├── Makefile.am │ ├── apop_db_to_crosstab.c │ ├── apop_plot_query.c │ └── apop_text_to_db.c ├── configure ├── docs/ │ ├── Makefile.am │ ├── adjust │ ├── apop_data_fig.html │ ├── apop_data_fig.tex │ ├── documentation.h │ ├── doxygen.conf.in │ ├── edit_globals.sed │ ├── edit_group.sed │ ├── edit_outline.sed │ ├── edit_width.sed │ ├── foot.html │ ├── head.html │ ├── make_model_doc.awk │ ├── model.dot │ ├── structs.dot │ ├── tree.js │ ├── triangle.c │ └── typical.css ├── eg/ │ ├── Makefile.am │ ├── apop_map_row.c │ ├── banana.c │ ├── binning.c │ ├── boot_clt.c │ ├── cross_models.c │ ├── data_fill.c │ ├── db_fns.c │ ├── dconstrain.c │ ├── dot_products.c │ ├── draw_some_normals.c │ ├── draw_to_db.c │ ├── entropy_model.c │ ├── entropy_vector.c │ ├── f_test.c │ ├── faithful.c │ ├── fake_logit.c │ ├── fix_params.c │ ├── hills2.c │ ├── iv.c │ ├── jack.c │ ├── jacobian.c │ ├── kernel.c │ ├── ks_tests.c │ ├── logit.c │ ├── ls_tables.c │ ├── ml_imputation.c │ ├── normalization_demo.c │ ├── ols.c │ ├── ols2.c │ ├── ols_oneliner.c │ ├── parameterization.c │ ├── pmf_test.c │ ├── simple_subsets.c │ ├── some_cdfs.c │ ├── sql_to_html.c │ ├── t_test_by_rows.c │ ├── test_distances.c │ ├── test_fisher.c │ ├── test_harmonic.c │ ├── test_kl_divergence.c │ ├── test_pruning.c │ ├── test_ranks.c │ ├── test_regex.c │ ├── test_updating.c │ ├── text_demo.c │ └── transform.c ├── install/ │ ├── COPYING │ ├── Makefile.am │ ├── Readme-pkg │ ├── Readme-pkg-debian │ ├── acinclude.m4 │ ├── apophenia.pc.in │ ├── configure.ac │ ├── prep_variadics.m4 │ ├── push_pkg │ └── rpm.spec ├── model/ │ ├── Makefile.am │ ├── apop_bernoulli.c │ ├── apop_beta.c │ ├── apop_dirichlet.c │ ├── apop_exponential.c │ ├── apop_gamma.c │ ├── apop_kerneld.c │ ├── apop_loess.c │ ├── apop_multinomial.c │ ├── apop_multivariate_normal.c │ ├── apop_normal.c │ ├── apop_ols.c │ ├── apop_pmf.c │ ├── apop_poisson.c │ ├── apop_probit.c │ ├── apop_t.c │ ├── apop_uniform.c │ ├── apop_wishart.c │ ├── apop_yule.c │ └── apop_zipf.c ├── tests/ │ ├── Makefile.am │ ├── Readme │ ├── amash_vote_analysis.csv │ ├── data │ ├── data-mixed │ ├── db_tests.c │ ├── distribution_tests.c │ ├── error_test.c │ ├── factors.c │ ├── faith.data │ ├── lognormal_test.c │ ├── nist_tests.c │ ├── printing_sample │ ├── rake_test.c │ ├── sort_example.c │ ├── sort_tests.c │ ├── test_apop.c │ ├── test_data │ ├── test_data2 │ ├── test_data_fixed_width │ ├── test_data_nans │ ├── test_kernel_ll.c │ ├── update_via_rng.c │ └── utilities_test.in └── transform/ ├── Makefile.am ├── apop_coordinate_transform.c ├── apop_cross.c ├── apop_dconstrain.c ├── apop_fix_params.c └── apop_mixture.c