├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Makefile.global ├── NEWS.md ├── README.md ├── RELEASE.md ├── carto-package.json ├── check-compatibility.sh ├── check-up-to-date-with-master.sh ├── doc ├── 02_moran.md ├── 03_overlap_sum.md ├── 04_markov.md ├── 04_pyAgg.md ├── 07_gravity.md ├── 08_interpolation.md ├── 09_voronoi.md ├── 11_kmeans.md ├── 12_segmentation.md ├── 13_PIA.md ├── 14_densify.md ├── 15_tinmap.md ├── 16_getis_ord_gstar.md ├── 18_outliers.md ├── 19_contour.md ├── 21_gwr.md └── docs_template.md ├── release ├── .gitignore ├── crankshaft--0.0.1--0.0.2.sql ├── crankshaft--0.0.1.sql ├── crankshaft--0.0.2--0.0.1.sql ├── crankshaft--0.0.2--0.0.3.sql ├── crankshaft--0.0.2.sql ├── crankshaft--0.0.3--0.0.2.sql ├── crankshaft--0.0.3--0.0.4.sql ├── crankshaft--0.0.3.sql ├── crankshaft--0.0.4--0.0.3.sql ├── crankshaft--0.0.4--0.1.0.sql ├── crankshaft--0.0.4.sql ├── crankshaft--0.1.0--0.0.4.sql ├── crankshaft--0.1.0--0.2.0.sql ├── crankshaft--0.1.0.sql ├── crankshaft--0.2.0--0.3.0.sql ├── crankshaft--0.2.0.sql ├── crankshaft--0.3.0--0.3.1.sql ├── crankshaft--0.3.0.sql ├── crankshaft--0.3.1--0.4.0.sql ├── crankshaft--0.3.1.sql ├── crankshaft--0.4.0--0.4.1.sql ├── crankshaft--0.4.0.sql ├── crankshaft--0.4.1--0.4.2.sql ├── crankshaft--0.4.1.sql ├── crankshaft--0.4.2--0.5.0.sql ├── crankshaft--0.4.2.sql ├── crankshaft--0.5.0--0.5.1.sql ├── crankshaft--0.5.0.sql ├── crankshaft--0.5.1--0.5.2.sql ├── crankshaft--0.5.1.sql ├── crankshaft--0.5.2--0.6.0.sql ├── crankshaft--0.5.2.sql ├── crankshaft--0.6.0--0.6.1.sql ├── crankshaft--0.6.0.sql ├── crankshaft--0.6.1--0.7.0.sql ├── crankshaft--0.6.1.sql ├── crankshaft--0.7.0--0.8.0.sql ├── crankshaft--0.7.0.sql ├── crankshaft--0.8.0--0.8.1.sql ├── crankshaft--0.8.0.sql ├── crankshaft--0.8.1--0.8.2.sql ├── crankshaft--0.8.1.sql ├── crankshaft--0.8.2--0.9.0.sql ├── crankshaft--0.8.2.sql ├── crankshaft--0.9.0.sql ├── crankshaft.control └── python │ ├── .gitignore │ ├── 0.0.1 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ └── moran.py │ │ └── random_seeds.py │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── moran.json │ │ └── neighbors.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ └── test_clustering_moran.py │ ├── 0.0.2 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ └── moran.py │ │ └── random_seeds.py │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── moran.json │ │ └── neighbors.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ └── test_clustering_moran.py │ ├── 0.0.3 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ └── random_seeds.py │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── moran.json │ │ └── neighbors.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ └── test_pysal_utils.py │ ├── 0.0.4 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ └── random_seeds.py │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── moran.json │ │ └── neighbors.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ └── test_pysal_utils.py │ ├── 0.1.0 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.2.0 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.3.0 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.3.1 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── setup.py │ │ ├── setup.py-r │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.4.0 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── setup.py │ │ ├── setup.py-r │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.4.1 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── setup.py │ │ ├── setup.py-r │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.4.2 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ ├── setup.py-r │ │ └── test │ │ ├── fixtures │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_cluster_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.5.0 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── getis.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.5.1 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── getis.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.5.2 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── getis.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.6.0 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── centers │ │ │ └── median_center.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── optimization │ │ │ └── optim.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── regression │ │ │ ├── __init__.py │ │ │ ├── glm │ │ │ │ ├── GLM_validate_estimation.ipynb │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── family.py │ │ │ │ ├── glm.py │ │ │ │ ├── iwls.py │ │ │ │ ├── links.py │ │ │ │ ├── tests │ │ │ │ │ └── test_glm.py │ │ │ │ ├── utils.py │ │ │ │ └── varfuncs.py │ │ │ ├── gwr │ │ │ │ ├── __init__.py │ │ │ │ └── base │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── diagnostics.py │ │ │ │ │ ├── gwr.py │ │ │ │ │ ├── kernels.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── sel_bw.py │ │ │ │ │ └── tests │ │ │ │ │ ├── test_gwr.py │ │ │ │ │ ├── test_kernels.py │ │ │ │ │ └── test_sel_bw.py │ │ │ └── gwr_cs.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── getis.json │ │ ├── gwr_packed_data.json │ │ ├── gwr_packed_knowns.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_regression_gwr.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.6.1 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── regression │ │ │ ├── __init__.py │ │ │ ├── glm │ │ │ │ ├── GLM_validate_estimation.ipynb │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── family.py │ │ │ │ ├── glm.py │ │ │ │ ├── iwls.py │ │ │ │ ├── links.py │ │ │ │ ├── tests │ │ │ │ │ └── test_glm.py │ │ │ │ ├── utils.py │ │ │ │ └── varfuncs.py │ │ │ ├── gwr │ │ │ │ ├── __init__.py │ │ │ │ └── base │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── diagnostics.py │ │ │ │ │ ├── gwr.py │ │ │ │ │ ├── kernels.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── sel_bw.py │ │ │ │ │ └── tests │ │ │ │ │ ├── test_gwr.py │ │ │ │ │ ├── test_kernels.py │ │ │ │ │ └── test_sel_bw.py │ │ │ └── gwr_cs.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── getis.json │ │ ├── gwr_packed_data.json │ │ ├── gwr_packed_knowns.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_regression_gwr.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.7.0 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── regression │ │ │ ├── __init__.py │ │ │ ├── glm │ │ │ │ ├── GLM_validate_estimation.ipynb │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── family.py │ │ │ │ ├── glm.py │ │ │ │ ├── iwls.py │ │ │ │ ├── links.py │ │ │ │ ├── tests │ │ │ │ │ └── test_glm.py │ │ │ │ ├── utils.py │ │ │ │ └── varfuncs.py │ │ │ ├── gwr │ │ │ │ ├── __init__.py │ │ │ │ └── base │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── diagnostics.py │ │ │ │ │ ├── gwr.py │ │ │ │ │ ├── kernels.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── sel_bw.py │ │ │ │ │ └── tests │ │ │ │ │ ├── test_gwr.py │ │ │ │ │ ├── test_kernels.py │ │ │ │ │ └── test_sel_bw.py │ │ │ └── gwr_cs.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── getis.json │ │ ├── gwr_packed_data.json │ │ ├── gwr_packed_knowns.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_regression_gwr.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.8.0 │ └── crankshaft │ │ ├── crankshaft │ │ ├── .analysis_data_provider.py.swp │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── centers │ │ │ └── median_center.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── regression │ │ │ ├── __init__.py │ │ │ ├── glm │ │ │ │ ├── GLM_validate_estimation.ipynb │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── family.py │ │ │ │ ├── glm.py │ │ │ │ ├── iwls.py │ │ │ │ ├── links.py │ │ │ │ ├── tests │ │ │ │ │ └── test_glm.py │ │ │ │ ├── utils.py │ │ │ │ └── varfuncs.py │ │ │ ├── gwr │ │ │ │ ├── __init__.py │ │ │ │ └── base │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── diagnostics.py │ │ │ │ │ ├── gwr.py │ │ │ │ │ ├── kernels.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── sel_bw.py │ │ │ │ │ └── tests │ │ │ │ │ ├── test_gwr.py │ │ │ │ │ ├── test_kernels.py │ │ │ │ │ └── test_sel_bw.py │ │ │ └── gwr_cs.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ ├── setup.py-r │ │ └── test │ │ ├── fixtures │ │ ├── getis.json │ │ ├── gwr_packed_data.json │ │ ├── gwr_packed_knowns.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_regression_gwr.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.8.1 │ └── crankshaft │ │ ├── crankshaft │ │ ├── .analysis_data_provider.py.swp │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── centers │ │ │ └── median_center.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── regression │ │ │ ├── __init__.py │ │ │ ├── glm │ │ │ │ ├── GLM_validate_estimation.ipynb │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── family.py │ │ │ │ ├── glm.py │ │ │ │ ├── iwls.py │ │ │ │ ├── links.py │ │ │ │ ├── tests │ │ │ │ │ └── test_glm.py │ │ │ │ ├── utils.py │ │ │ │ └── varfuncs.py │ │ │ ├── gwr │ │ │ │ ├── __init__.py │ │ │ │ └── base │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── diagnostics.py │ │ │ │ │ ├── gwr.py │ │ │ │ │ ├── kernels.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── sel_bw.py │ │ │ │ │ └── tests │ │ │ │ │ ├── test_gwr.py │ │ │ │ │ ├── test_kernels.py │ │ │ │ │ └── test_sel_bw.py │ │ │ └── gwr_cs.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ ├── setup.py-r │ │ └── test │ │ ├── fixtures │ │ ├── getis.json │ │ ├── gwr_packed_data.json │ │ ├── gwr_packed_knowns.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ └── neighbors_markov.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_regression_gwr.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ ├── 0.8.2 │ └── crankshaft │ │ ├── crankshaft │ │ ├── __init__.py │ │ ├── analysis_data_provider.py │ │ ├── clustering │ │ │ ├── __init__.py │ │ │ ├── getis.py │ │ │ ├── kmeans.py │ │ │ └── moran.py │ │ ├── pysal_utils │ │ │ ├── __init__.py │ │ │ └── pysal_utils.py │ │ ├── random_seeds.py │ │ ├── regression │ │ │ ├── __init__.py │ │ │ ├── glm │ │ │ │ ├── GLM_validate_estimation.ipynb │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── family.py │ │ │ │ ├── glm.py │ │ │ │ ├── iwls.py │ │ │ │ ├── links.py │ │ │ │ ├── tests │ │ │ │ │ └── test_glm.py │ │ │ │ ├── utils.py │ │ │ │ └── varfuncs.py │ │ │ ├── gwr │ │ │ │ ├── __init__.py │ │ │ │ └── base │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── diagnostics.py │ │ │ │ │ ├── gwr.py │ │ │ │ │ ├── kernels.py │ │ │ │ │ ├── search.py │ │ │ │ │ ├── sel_bw.py │ │ │ │ │ └── tests │ │ │ │ │ ├── test_gwr.py │ │ │ │ │ ├── test_kernels.py │ │ │ │ │ └── test_sel_bw.py │ │ │ └── gwr_cs.py │ │ ├── segmentation │ │ │ ├── __init__.py │ │ │ └── segmentation.py │ │ └── space_time_dynamics │ │ │ ├── __init__.py │ │ │ └── markov.py │ │ ├── requirements.txt │ │ ├── setup.py │ │ └── test │ │ ├── fixtures │ │ ├── data.json │ │ ├── getis.json │ │ ├── gwr_packed_data.json │ │ ├── gwr_packed_knowns.json │ │ ├── kmeans.json │ │ ├── markov.json │ │ ├── model_data.json │ │ ├── moran.json │ │ ├── neighbors.json │ │ ├── neighbors_getis.json │ │ ├── neighbors_markov.json │ │ ├── predict_data.json │ │ ├── segmentation_result.json │ │ └── true_result.json │ │ ├── helper.py │ │ ├── mock_plpy.py │ │ ├── test_clustering_getis.py │ │ ├── test_clustering_kmeans.py │ │ ├── test_clustering_moran.py │ │ ├── test_pysal_utils.py │ │ ├── test_regression_gwr.py │ │ ├── test_segmentation.py │ │ └── test_space_time_dynamics.py │ └── 0.9.0 │ └── crankshaft │ ├── crankshaft │ ├── __init__.py │ ├── analysis_data_provider.py │ ├── clustering │ │ ├── __init__.py │ │ ├── getis.py │ │ ├── kmeans.py │ │ └── moran.py │ ├── pysal_utils │ │ ├── __init__.py │ │ └── pysal_utils.py │ ├── random_seeds.py │ ├── regression │ │ ├── __init__.py │ │ ├── glm │ │ │ ├── GLM_validate_estimation.ipynb │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── family.py │ │ │ ├── glm.py │ │ │ ├── iwls.py │ │ │ ├── links.py │ │ │ ├── tests │ │ │ │ └── test_glm.py │ │ │ ├── utils.py │ │ │ └── varfuncs.py │ │ ├── gwr │ │ │ ├── __init__.py │ │ │ └── base │ │ │ │ ├── __init__.py │ │ │ │ ├── diagnostics.py │ │ │ │ ├── gwr.py │ │ │ │ ├── kernels.py │ │ │ │ ├── search.py │ │ │ │ ├── sel_bw.py │ │ │ │ └── tests │ │ │ │ ├── test_gwr.py │ │ │ │ ├── test_kernels.py │ │ │ │ └── test_sel_bw.py │ │ └── gwr_cs.py │ ├── segmentation │ │ ├── __init__.py │ │ └── segmentation.py │ └── space_time_dynamics │ │ ├── __init__.py │ │ └── markov.py │ ├── requirements.txt │ ├── setup.py │ └── test │ ├── fixtures │ ├── data.json │ ├── getis.json │ ├── gwr_packed_data.json │ ├── gwr_packed_knowns.json │ ├── kmeans.json │ ├── markov.json │ ├── model_data.json │ ├── moran.json │ ├── neighbors.json │ ├── neighbors_getis.json │ ├── neighbors_markov.json │ ├── predict_data.json │ ├── segmentation_result.json │ └── true_result.json │ ├── helper.py │ ├── mock_plpy.py │ ├── test_clustering_getis.py │ ├── test_clustering_kmeans.py │ ├── test_clustering_moran.py │ ├── test_pysal_utils.py │ ├── test_regression_gwr.py │ ├── test_segmentation.py │ └── test_space_time_dynamics.py └── src ├── pg ├── .gitignore ├── Makefile ├── crankshaft.control ├── sql │ ├── 00_header.sql │ ├── 01_version.sql │ ├── 03_random_seeds.sql │ ├── 04_py_agg.sql │ ├── 05_segmentation.sql │ ├── 07_gravity.sql │ ├── 08_interpolation.sql │ ├── 09_voronoi.sql │ ├── 10_moran.sql │ ├── 11_kmeans.sql │ ├── 11_markov.sql │ ├── 13_PIA.sql │ ├── 14_densify.sql │ ├── 15_tinmap.sql │ ├── 16_getis.sql │ ├── 18_outliers.sql │ ├── 19_contour.sql │ ├── 20_overlap_sum.sql │ ├── 21_gwr.sql │ ├── 30_dot_density.sql │ ├── 90_permissions.sql │ └── cdb_utils.sql └── test │ ├── expected │ ├── 01_install_test.out │ ├── 02_moran_test.out │ ├── 03_overlap_sum_test.out │ ├── 04_dot_density_test.out │ ├── 05_markov_test.out │ ├── 06_segmentation_test.out │ ├── 07_gravity_test.out │ ├── 08_interpolation_test.out │ ├── 09_voronoi_test.out │ ├── 11_kmeans_test.out │ ├── 13_pia_test.out │ ├── 14_densify_test.out │ ├── 15_tinmap_test.out │ ├── 16_getis_test.out │ ├── 18_outliers_test.out │ ├── 19_contour_test.out │ └── 21_gwr_test.out │ ├── fixtures │ ├── getis_data.sql │ ├── gwr_georgia.sql │ ├── markov_usjoin_example.sql │ ├── ml_values.sql │ ├── polyg_values.sql │ ├── ppoints.sql │ └── ppoints2.sql │ └── sql │ ├── 01_install_test.sql │ ├── 02_moran_test.sql │ ├── 03_overlap_sum_test.sql │ ├── 04_dot_density_test.sql │ ├── 05_markov_test.sql │ ├── 06_segmentation_test.sql │ ├── 07_gravity_test.sql │ ├── 08_interpolation_test.sql │ ├── 09_voronoi_test.sql │ ├── 11_kmeans_test.sql │ ├── 13_pia_test.sql │ ├── 14_densify_test.sql │ ├── 15_tinmap_test.sql │ ├── 16_getis_test.sql │ ├── 18_outliers_test.sql │ ├── 19_contour_test.sql │ ├── 21_gwr_test.sql │ └── 90_permissions.sql └── py ├── Makefile ├── README.md └── crankshaft ├── crankshaft ├── __init__.py ├── analysis_data_provider.py ├── clustering │ ├── __init__.py │ ├── getis.py │ ├── kmeans.py │ └── moran.py ├── pysal_utils │ ├── __init__.py │ └── pysal_utils.py ├── random_seeds.py ├── regression │ ├── __init__.py │ ├── glm │ │ ├── GLM_validate_estimation.ipynb │ │ ├── __init__.py │ │ ├── base.py │ │ ├── family.py │ │ ├── glm.py │ │ ├── iwls.py │ │ ├── links.py │ │ ├── tests │ │ │ └── test_glm.py │ │ ├── utils.py │ │ └── varfuncs.py │ ├── gwr │ │ ├── __init__.py │ │ └── base │ │ │ ├── __init__.py │ │ │ ├── diagnostics.py │ │ │ ├── gwr.py │ │ │ ├── kernels.py │ │ │ ├── search.py │ │ │ ├── sel_bw.py │ │ │ └── tests │ │ │ ├── test_gwr.py │ │ │ ├── test_kernels.py │ │ │ └── test_sel_bw.py │ └── gwr_cs.py ├── segmentation │ ├── __init__.py │ └── segmentation.py └── space_time_dynamics │ ├── __init__.py │ └── markov.py ├── requirements.txt ├── setup.py └── test ├── fixtures ├── data.json ├── getis.json ├── gwr_packed_data.json ├── gwr_packed_knowns.json ├── kmeans.json ├── markov.json ├── model_data.json ├── moran.json ├── neighbors.json ├── neighbors_getis.json ├── neighbors_markov.json ├── predict_data.json ├── segmentation_result.json └── true_result.json ├── helper.py ├── mock_plpy.py ├── test_clustering_getis.py ├── test_clustering_kmeans.py ├── test_clustering_moran.py ├── test_pysal_utils.py ├── test_regression_gwr.py ├── test_segmentation.py └── test_space_time_dynamics.py /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | envs/ 2 | *.pyc 3 | .DS_Store 4 | .idea/ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/Makefile.global -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/RELEASE.md -------------------------------------------------------------------------------- /carto-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/carto-package.json -------------------------------------------------------------------------------- /check-compatibility.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/check-compatibility.sh -------------------------------------------------------------------------------- /check-up-to-date-with-master.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/check-up-to-date-with-master.sh -------------------------------------------------------------------------------- /doc/02_moran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/02_moran.md -------------------------------------------------------------------------------- /doc/03_overlap_sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/03_overlap_sum.md -------------------------------------------------------------------------------- /doc/04_markov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/04_markov.md -------------------------------------------------------------------------------- /doc/04_pyAgg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/04_pyAgg.md -------------------------------------------------------------------------------- /doc/07_gravity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/07_gravity.md -------------------------------------------------------------------------------- /doc/08_interpolation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/08_interpolation.md -------------------------------------------------------------------------------- /doc/09_voronoi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/09_voronoi.md -------------------------------------------------------------------------------- /doc/11_kmeans.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/11_kmeans.md -------------------------------------------------------------------------------- /doc/12_segmentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/12_segmentation.md -------------------------------------------------------------------------------- /doc/13_PIA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/13_PIA.md -------------------------------------------------------------------------------- /doc/14_densify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/14_densify.md -------------------------------------------------------------------------------- /doc/15_tinmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/15_tinmap.md -------------------------------------------------------------------------------- /doc/16_getis_ord_gstar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/16_getis_ord_gstar.md -------------------------------------------------------------------------------- /doc/18_outliers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/18_outliers.md -------------------------------------------------------------------------------- /doc/19_contour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/19_contour.md -------------------------------------------------------------------------------- /doc/21_gwr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/21_gwr.md -------------------------------------------------------------------------------- /doc/docs_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/doc/docs_template.md -------------------------------------------------------------------------------- /release/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/crankshaft--0.0.1--0.0.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.1--0.0.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.2--0.0.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.2--0.0.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.2--0.0.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.2--0.0.3.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.3--0.0.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.3--0.0.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.3--0.0.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.3--0.0.4.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.3.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.4--0.0.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.4--0.0.3.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.4--0.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.4--0.1.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.0.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.0.4.sql -------------------------------------------------------------------------------- /release/crankshaft--0.1.0--0.0.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.1.0--0.0.4.sql -------------------------------------------------------------------------------- /release/crankshaft--0.1.0--0.2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.1.0--0.2.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.1.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.2.0--0.3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.2.0--0.3.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.2.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.3.0--0.3.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.3.0--0.3.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.3.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.3.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.3.1--0.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.3.1--0.4.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.3.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.3.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.4.0--0.4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.4.0--0.4.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.4.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.4.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.4.1--0.4.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.4.1--0.4.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.4.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.4.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.4.2--0.5.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.4.2--0.5.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.4.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.4.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.5.0--0.5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.5.0--0.5.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.5.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.5.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.5.1--0.5.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.5.1--0.5.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.5.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.5.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.5.2--0.6.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.5.2--0.6.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.5.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.5.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.6.0--0.6.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.6.0--0.6.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.6.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.6.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.6.1--0.7.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.6.1--0.7.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.6.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.6.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.7.0--0.8.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.7.0--0.8.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.7.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.7.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.8.0--0.8.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.8.0--0.8.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.8.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.8.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.8.1--0.8.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.8.1--0.8.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.8.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.8.1.sql -------------------------------------------------------------------------------- /release/crankshaft--0.8.2--0.9.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.8.2--0.9.0.sql -------------------------------------------------------------------------------- /release/crankshaft--0.8.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.8.2.sql -------------------------------------------------------------------------------- /release/crankshaft--0.9.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft--0.9.0.sql -------------------------------------------------------------------------------- /release/crankshaft.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/crankshaft.control -------------------------------------------------------------------------------- /release/python/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- 1 | from moran import * 2 | -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.0.1/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.1/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- 1 | from moran import * 2 | -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.0.2/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.2/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- 1 | from pysal_utils import * 2 | -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.0.3/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.3/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- 1 | from pysal_utils import * 2 | -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.0.4/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.0.4/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.1.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.1.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.2.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.2.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.3.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/setup.py-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/setup.py-r -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.3.1/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.3.1/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/setup.py-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/setup.py-r -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.4.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/setup.py-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/setup.py-r -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.4.1/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.1/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/setup.py-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/setup.py-r -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/test_cluster_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/test_cluster_kmeans.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.4.2/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.4.2/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/analysis_data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/analysis_data_provider.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.5.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/analysis_data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/analysis_data_provider.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.5.1/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.1/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/analysis_data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/analysis_data_provider.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.5.2/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.5.2/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/analysis_data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/analysis_data_provider.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/centers/median_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/centers/median_center.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/optimization/optim.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/glm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/glm/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/glm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/glm/base.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/glm/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/glm/family.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/glm/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/glm/glm.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/glm/iwls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/glm/iwls.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/glm/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/glm/links.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/glm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/glm/utils.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/gwr/__init__.py: -------------------------------------------------------------------------------- 1 | from base import * 2 | -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/regression/gwr_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/crankshaft/regression/gwr_cs.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/fixtures/gwr_packed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/fixtures/gwr_packed_data.json -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/test_regression_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/test_regression_gwr.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.6.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/regression/__init__.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/glm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/regression/glm/base.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/glm/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/regression/glm/family.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/glm/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/regression/glm/glm.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/glm/iwls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/regression/glm/iwls.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/glm/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/regression/glm/links.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/glm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/regression/glm/utils.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/gwr/__init__.py: -------------------------------------------------------------------------------- 1 | from base import * 2 | -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/regression/gwr_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/crankshaft/regression/gwr_cs.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/fixtures/gwr_packed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/fixtures/gwr_packed_data.json -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/test_regression_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/test_regression_gwr.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.6.1/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.6.1/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/regression/__init__.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/glm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/regression/glm/base.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/glm/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/regression/glm/family.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/glm/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/regression/glm/glm.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/glm/iwls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/regression/glm/iwls.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/glm/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/regression/glm/links.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/glm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/regression/glm/utils.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/gwr/__init__.py: -------------------------------------------------------------------------------- 1 | from base import * 2 | -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/regression/gwr_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/crankshaft/regression/gwr_cs.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/fixtures/gwr_packed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/fixtures/gwr_packed_data.json -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/test_regression_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/test_regression_gwr.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.7.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.7.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/centers/median_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/centers/median_center.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/regression/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/glm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/regression/glm/base.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/glm/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/regression/glm/family.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/glm/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/regression/glm/glm.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/glm/iwls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/regression/glm/iwls.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/glm/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/regression/glm/links.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/glm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/regression/glm/utils.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/gwr/__init__.py: -------------------------------------------------------------------------------- 1 | from base import * 2 | -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/regression/gwr_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/crankshaft/regression/gwr_cs.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/setup.py-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/setup.py-r -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/fixtures/gwr_packed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/fixtures/gwr_packed_data.json -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/test_regression_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/test_regression_gwr.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.8.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/centers/median_center.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/centers/median_center.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/regression/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/glm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/regression/glm/base.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/glm/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/regression/glm/family.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/glm/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/regression/glm/glm.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/glm/iwls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/regression/glm/iwls.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/glm/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/regression/glm/links.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/glm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/regression/glm/utils.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/gwr/__init__.py: -------------------------------------------------------------------------------- 1 | from base import * 2 | -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/regression/gwr_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/crankshaft/regression/gwr_cs.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- 1 | from segmentation import * 2 | -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/setup.py-r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/setup.py-r -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/fixtures/gwr_packed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/fixtures/gwr_packed_data.json -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/test_regression_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/test_regression_gwr.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.8.1/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.1/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/regression/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/glm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/regression/glm/base.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/glm/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/regression/glm/family.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/glm/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/regression/glm/glm.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/glm/iwls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/regression/glm/iwls.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/glm/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/regression/glm/links.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/glm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/regression/glm/utils.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/gwr/__init__.py: -------------------------------------------------------------------------------- 1 | from base import * 2 | -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/regression/gwr_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/regression/gwr_cs.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/crankshaft/segmentation/__init__.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/data.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/gwr_packed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/gwr_packed_data.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/model_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/model_data.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/predict_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/predict_data.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/fixtures/true_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/fixtures/true_result.json -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/test_regression_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/test_regression_gwr.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.8.2/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.8.2/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/regression/__init__.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/glm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/regression/glm/base.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/glm/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/regression/glm/family.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/glm/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/regression/glm/glm.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/glm/iwls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/regression/glm/iwls.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/glm/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/regression/glm/links.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/glm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/regression/glm/utils.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/gwr/__init__.py: -------------------------------------------------------------------------------- 1 | from .base import * 2 | -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/regression/gwr_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/regression/gwr_cs.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/crankshaft/segmentation/__init__.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/requirements.txt -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/setup.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/data.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/gwr_packed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/gwr_packed_data.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/model_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/model_data.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/predict_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/predict_data.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/fixtures/true_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/fixtures/true_result.json -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/helper.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/test_regression_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/test_regression_gwr.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /release/python/0.9.0/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/release/python/0.9.0/crankshaft/test/test_space_time_dynamics.py -------------------------------------------------------------------------------- /src/pg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/.gitignore -------------------------------------------------------------------------------- /src/pg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/Makefile -------------------------------------------------------------------------------- /src/pg/crankshaft.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/crankshaft.control -------------------------------------------------------------------------------- /src/pg/sql/00_header.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/00_header.sql -------------------------------------------------------------------------------- /src/pg/sql/01_version.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/01_version.sql -------------------------------------------------------------------------------- /src/pg/sql/03_random_seeds.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/03_random_seeds.sql -------------------------------------------------------------------------------- /src/pg/sql/04_py_agg.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/04_py_agg.sql -------------------------------------------------------------------------------- /src/pg/sql/05_segmentation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/05_segmentation.sql -------------------------------------------------------------------------------- /src/pg/sql/07_gravity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/07_gravity.sql -------------------------------------------------------------------------------- /src/pg/sql/08_interpolation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/08_interpolation.sql -------------------------------------------------------------------------------- /src/pg/sql/09_voronoi.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/09_voronoi.sql -------------------------------------------------------------------------------- /src/pg/sql/10_moran.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/10_moran.sql -------------------------------------------------------------------------------- /src/pg/sql/11_kmeans.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/11_kmeans.sql -------------------------------------------------------------------------------- /src/pg/sql/11_markov.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/11_markov.sql -------------------------------------------------------------------------------- /src/pg/sql/13_PIA.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/13_PIA.sql -------------------------------------------------------------------------------- /src/pg/sql/14_densify.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/14_densify.sql -------------------------------------------------------------------------------- /src/pg/sql/15_tinmap.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/15_tinmap.sql -------------------------------------------------------------------------------- /src/pg/sql/16_getis.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/16_getis.sql -------------------------------------------------------------------------------- /src/pg/sql/18_outliers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/18_outliers.sql -------------------------------------------------------------------------------- /src/pg/sql/19_contour.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/19_contour.sql -------------------------------------------------------------------------------- /src/pg/sql/20_overlap_sum.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/20_overlap_sum.sql -------------------------------------------------------------------------------- /src/pg/sql/21_gwr.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/21_gwr.sql -------------------------------------------------------------------------------- /src/pg/sql/30_dot_density.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/30_dot_density.sql -------------------------------------------------------------------------------- /src/pg/sql/90_permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/90_permissions.sql -------------------------------------------------------------------------------- /src/pg/sql/cdb_utils.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/sql/cdb_utils.sql -------------------------------------------------------------------------------- /src/pg/test/expected/01_install_test.out: -------------------------------------------------------------------------------- 1 | \set ECHO none 2 | -------------------------------------------------------------------------------- /src/pg/test/expected/02_moran_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/02_moran_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/03_overlap_sum_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/03_overlap_sum_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/04_dot_density_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/04_dot_density_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/05_markov_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/05_markov_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/06_segmentation_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/06_segmentation_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/07_gravity_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/07_gravity_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/08_interpolation_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/08_interpolation_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/09_voronoi_test.out: -------------------------------------------------------------------------------- 1 | \pset format unaligned 2 | \set ECHO none 3 | within_tolerance 4 | t 5 | (1 row) 6 | -------------------------------------------------------------------------------- /src/pg/test/expected/11_kmeans_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/11_kmeans_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/13_pia_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/13_pia_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/14_densify_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/14_densify_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/15_tinmap_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/15_tinmap_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/16_getis_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/16_getis_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/18_outliers_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/18_outliers_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/19_contour_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/19_contour_test.out -------------------------------------------------------------------------------- /src/pg/test/expected/21_gwr_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/expected/21_gwr_test.out -------------------------------------------------------------------------------- /src/pg/test/fixtures/getis_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/fixtures/getis_data.sql -------------------------------------------------------------------------------- /src/pg/test/fixtures/gwr_georgia.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/fixtures/gwr_georgia.sql -------------------------------------------------------------------------------- /src/pg/test/fixtures/markov_usjoin_example.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/fixtures/markov_usjoin_example.sql -------------------------------------------------------------------------------- /src/pg/test/fixtures/ml_values.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/fixtures/ml_values.sql -------------------------------------------------------------------------------- /src/pg/test/fixtures/polyg_values.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/fixtures/polyg_values.sql -------------------------------------------------------------------------------- /src/pg/test/fixtures/ppoints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/fixtures/ppoints.sql -------------------------------------------------------------------------------- /src/pg/test/fixtures/ppoints2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/fixtures/ppoints2.sql -------------------------------------------------------------------------------- /src/pg/test/sql/01_install_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/01_install_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/02_moran_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/02_moran_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/03_overlap_sum_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/03_overlap_sum_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/04_dot_density_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/04_dot_density_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/05_markov_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/05_markov_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/06_segmentation_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/06_segmentation_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/07_gravity_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/07_gravity_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/08_interpolation_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/08_interpolation_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/09_voronoi_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/09_voronoi_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/11_kmeans_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/11_kmeans_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/13_pia_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/13_pia_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/14_densify_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/14_densify_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/15_tinmap_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/15_tinmap_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/16_getis_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/16_getis_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/18_outliers_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/18_outliers_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/19_contour_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/19_contour_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/21_gwr_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/21_gwr_test.sql -------------------------------------------------------------------------------- /src/pg/test/sql/90_permissions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/pg/test/sql/90_permissions.sql -------------------------------------------------------------------------------- /src/py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/Makefile -------------------------------------------------------------------------------- /src/py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/README.md -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/__init__.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/analysis_data_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/analysis_data_provider.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/clustering/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/clustering/__init__.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/clustering/getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/clustering/getis.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/clustering/kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/clustering/kmeans.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/clustering/moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/clustering/moran.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/pysal_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/pysal_utils/__init__.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/pysal_utils/pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/pysal_utils/pysal_utils.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/random_seeds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/random_seeds.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/__init__.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/__init__.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/base.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/family.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/glm.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/iwls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/iwls.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/links.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/tests/test_glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/tests/test_glm.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/utils.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/glm/varfuncs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/glm/varfuncs.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr/__init__.py: -------------------------------------------------------------------------------- 1 | from .base import * 2 | -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr/base/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/gwr/base/__init__.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr/base/diagnostics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/gwr/base/diagnostics.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr/base/gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/gwr/base/gwr.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr/base/kernels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/gwr/base/kernels.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr/base/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/gwr/base/search.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr/base/sel_bw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/gwr/base/sel_bw.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr/base/tests/test_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/gwr/base/tests/test_gwr.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/regression/gwr_cs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/regression/gwr_cs.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/segmentation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/segmentation/__init__.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/segmentation/segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/segmentation/segmentation.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/space_time_dynamics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/space_time_dynamics/__init__.py -------------------------------------------------------------------------------- /src/py/crankshaft/crankshaft/space_time_dynamics/markov.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/crankshaft/space_time_dynamics/markov.py -------------------------------------------------------------------------------- /src/py/crankshaft/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/requirements.txt -------------------------------------------------------------------------------- /src/py/crankshaft/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/setup.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/data.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/getis.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/gwr_packed_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/gwr_packed_data.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/gwr_packed_knowns.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/gwr_packed_knowns.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/kmeans.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/kmeans.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/markov.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/model_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/model_data.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/moran.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/moran.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/neighbors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/neighbors.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/neighbors_getis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/neighbors_getis.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/neighbors_markov.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/neighbors_markov.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/predict_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/predict_data.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/segmentation_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/segmentation_result.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/fixtures/true_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/fixtures/true_result.json -------------------------------------------------------------------------------- /src/py/crankshaft/test/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/helper.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/mock_plpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/mock_plpy.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/test_clustering_getis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/test_clustering_getis.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/test_clustering_kmeans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/test_clustering_kmeans.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/test_clustering_moran.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/test_clustering_moran.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/test_pysal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/test_pysal_utils.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/test_regression_gwr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/test_regression_gwr.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/test_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/test_segmentation.py -------------------------------------------------------------------------------- /src/py/crankshaft/test/test_space_time_dynamics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CartoDB/crankshaft/HEAD/src/py/crankshaft/test/test_space_time_dynamics.py --------------------------------------------------------------------------------