metacountregressor 0.1.65__py3-none-any.whl → 0.1.73__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- metacountregressor/main.py +1 -0
- metacountregressor/metaheuristics.py +2 -2
- {metacountregressor-0.1.65.dist-info → metacountregressor-0.1.73.dist-info}/METADATA +9 -16
- metacountregressor-0.1.73.dist-info/RECORD +18 -0
- {metacountregressor-0.1.65.dist-info → metacountregressor-0.1.73.dist-info}/WHEEL +2 -1
- metacountregressor-0.1.73.dist-info/top_level.txt +1 -0
- metacountregressor/data/1848.csv +0 -1849
- metacountregressor/data/4000.csv +0 -4746
- metacountregressor/data/Copy of 190613_HV Crash Data 2007-2017 Dates.xlsx +0 -0
- metacountregressor/data/Ex-16-3.csv +0 -276
- metacountregressor/data/Ex-16-3variables.csv +0 -276
- metacountregressor/data/Indiana_data.csv +0 -339
- metacountregressor/data/MichiganData.csv +0 -33972
- metacountregressor/data/Stage5A.csv +0 -1849
- metacountregressor/data/Stage5A_1848_All_Initial_Columns.csv +0 -1849
- metacountregressor/data/ThaiAccident.csv +0 -20230
- metacountregressor/data/artificial_1h_mixed_corr_2023_MOOF.csv +0 -1001
- metacountregressor/data/artificial_ZA.csv +0 -20001
- metacountregressor/data/artificial_mixed_corr_2023_MOOF.csv +0 -2001
- metacountregressor/data/artificial_mixed_corr_2023_MOOF_copy.csv +0 -2001
- metacountregressor/data/latex_summary_output.tex +0 -2034
- metacountregressor/data/rqc40516_MotorcycleQUT_engineer_crash.csv +0 -8287
- metacountregressor/data/rural_int.csv +0 -37081
- metacountregressor/data/sum_stats.R +0 -83
- metacountregressor/data/summary_output.txt +0 -302
- metacountregressor/plt_style.txt +0 -52
- metacountregressor/requirements.txt +0 -16
- metacountregressor/requirements_new.txt +0 -145
- metacountregressor/set_data.csv +0 -8440
- metacountregressor-0.1.65.dist-info/RECORD +0 -40
- {metacountregressor-0.1.65.dist-info → metacountregressor-0.1.73.dist-info}/LICENSE.txt +0 -0
    
        metacountregressor/main.py
    CHANGED
    
    
| @@ -75,10 +75,10 @@ def dict_mean(dict_list, | |
| 75 75 |  | 
| 76 76 | 
             
            def pareto_logger(pareto_set, iteration, complexity, folder=None):
         | 
| 77 77 | 
             
                if folder is not None:
         | 
| 78 | 
            -
                    name = folder + '/ | 
| 78 | 
            +
                    name = folder + '/pareto_logger_complex' + str(complexity) + ".csv"
         | 
| 79 79 |  | 
| 80 80 | 
             
                else:
         | 
| 81 | 
            -
                    name = ' | 
| 81 | 
            +
                    name = 'pareto_logger_complex' + str(complexity) + ".csv"
         | 
| 82 82 |  | 
| 83 83 | 
             
                st22 = pd.DataFrame(pareto_set)
         | 
| 84 84 | 
             
                st22.to_csv(name, mode='a', index=False, header=True)
         | 
| @@ -1,22 +1,16 @@ | |
| 1 1 | 
             
            Metadata-Version: 2.1
         | 
| 2 2 | 
             
            Name: metacountregressor
         | 
| 3 | 
            -
            Version: 0.1. | 
| 4 | 
            -
            Summary:  | 
| 5 | 
            -
             | 
| 3 | 
            +
            Version: 0.1.73
         | 
| 4 | 
            +
            Summary: Extensions for a Python package for estimation of count models.
         | 
| 5 | 
            +
            Home-page: https://github.com/zahern/CountDataEstimation
         | 
| 6 | 
            +
            Author: Zeke Ahern
         | 
| 6 7 | 
             
            Author-email: zeke.ahern@hdr.qut.edu.au
         | 
| 7 | 
            -
             | 
| 8 | 
            -
             | 
| 9 | 
            -
            Classifier: Programming Language :: Python :: 3.10
         | 
| 10 | 
            -
            Requires-Dist: latextable (>=1.0.0,<2.0.0)
         | 
| 11 | 
            -
            Requires-Dist: matplotlib (>=3.7.1,<4.0.0)
         | 
| 12 | 
            -
            Requires-Dist: numpy (>=1.24.3,<2.0.0)
         | 
| 13 | 
            -
            Requires-Dist: pandas (>=2.0.2,<3.0.0)
         | 
| 14 | 
            -
            Requires-Dist: psutil (>=5.9.5,<6.0.0)
         | 
| 15 | 
            -
            Requires-Dist: scikit-learn (>=1.2.2,<2.0.0)
         | 
| 16 | 
            -
            Requires-Dist: scipy (>=1.10.1,<2.0.0)
         | 
| 17 | 
            -
            Requires-Dist: statsmodels (>=0.14.0,<0.15.0)
         | 
| 18 | 
            -
            Requires-Dist: tabulate (>=0.9.0,<0.10.0)
         | 
| 8 | 
            +
            License: QUT
         | 
| 9 | 
            +
            Requires-Python: >=3.10
         | 
| 19 10 | 
             
            Description-Content-Type: text/markdown
         | 
| 11 | 
            +
            License-File: LICENSE.txt
         | 
| 12 | 
            +
            Requires-Dist: numpy >=1.13.1
         | 
| 13 | 
            +
            Requires-Dist: scipy >=1.0.0
         | 
| 20 14 |  | 
| 21 15 | 
             
            <div style="display: flex; align-items: center;">
         | 
| 22 16 | 
             
                <img src="https://github.com/zahern/data/raw/main/m.png" alt="My Image" style="width: 200px; margin-right: 20px;">
         | 
| @@ -271,4 +265,3 @@ Or using BibTex as follows: | |
| 271 265 | 
             
               year = {2023},
         | 
| 272 266 | 
             
            }
         | 
| 273 267 |  | 
| 274 | 
            -
             | 
| @@ -0,0 +1,18 @@ | |
| 1 | 
            +
            metacountregressor/__init__.py,sha256=UM4zaqoAcZVWyx3SeL9bRS8xpQ_iLZU9fIIARWmfjis,2937
         | 
| 2 | 
            +
            metacountregressor/_device_cust.py,sha256=759fnKmTYccJm4Lpi9_1reurh6OB9d6q9soPR0PltKc,2047
         | 
| 3 | 
            +
            metacountregressor/halton.py,sha256=jhovA45UBoZYU9g-hl6Lb2sBIx_ZBTNdPrpgkzR9fng,9463
         | 
| 4 | 
            +
            metacountregressor/helperprocess.py,sha256=nlabPUz_hf8SbFONn2wBKwcVJusTKcynPaxkEYvTWlU,9052
         | 
| 5 | 
            +
            metacountregressor/main.py,sha256=RCi4ZM4AOP-bauiYFqkaMIkEiGFBje1Z2q8z3OUsc3A,17153
         | 
| 6 | 
            +
            metacountregressor/main_old.py,sha256=eTS4ygq27MnU-dZ_j983Ucb-D5XfbVF8OJQK2hVVLZc,24123
         | 
| 7 | 
            +
            metacountregressor/metaheuristics.py,sha256=l2fsbT2HTI1Bo6XtsZVnw0MK1bGlvRY-e4hirpLy6ZE,105448
         | 
| 8 | 
            +
            metacountregressor/pareto_file.py,sha256=whySaoPAUWYjyI8zo0hwAOa3rFk6SIUlHSpqZiLur0k,23096
         | 
| 9 | 
            +
            metacountregressor/pareto_logger__plot.py,sha256=mEU2QN4wmsM7t39GJ_XhJ_jjsdl09JOmG0U2jICrAkI,30037
         | 
| 10 | 
            +
            metacountregressor/setup.py,sha256=8w6IqX0tJsbYrOI1BJLIJCIvOnunKli5I9fsF5PhHv4,919
         | 
| 11 | 
            +
            metacountregressor/single_objective_finder.py,sha256=jVG7GJBqzSP4_riYr-kMMKy_LE3SlGmKMunNhHYxgRg,8011
         | 
| 12 | 
            +
            metacountregressor/solution.py,sha256=fQaoo71zIxfOKLC6oTE9BnAm5OJRqRZnQ7a9nPIc9cM,284973
         | 
| 13 | 
            +
            metacountregressor/test_generated_paper2.py,sha256=pwOoRzl1jJIIOUAAvbkT6HmmTQ81mwpsshn9SLdKOg8,3927
         | 
| 14 | 
            +
            metacountregressor-0.1.73.dist-info/LICENSE.txt,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
         | 
| 15 | 
            +
            metacountregressor-0.1.73.dist-info/METADATA,sha256=uW0ZHMKl4srC4MFjY9QBQ8WaUvXLBFqh_tv6dPbvT78,14341
         | 
| 16 | 
            +
            metacountregressor-0.1.73.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
         | 
| 17 | 
            +
            metacountregressor-0.1.73.dist-info/top_level.txt,sha256=zGG7UC5WIpr76gsFUpwJ4En2aCcoNTONBaS3OewwjR0,19
         | 
| 18 | 
            +
            metacountregressor-0.1.73.dist-info/RECORD,,
         | 
| @@ -0,0 +1 @@ | |
| 1 | 
            +
            metacountregressor
         |