Metadata-Version: 2.1
Name: lost-years
Version: 0.2.0
Summary: Get Expected Number of Years Lost
Home-page: https://github.com/gojiplus/lost_years
Author: Suriyan Laohaprapanon, Gaurav Sood
Author-email: suriyant@gmail.com, gsood07@gmail.com
License: MIT
Description: Lost Years: Expected Number of Years Lost
        -----------------------------------------
        
        .. image:: https://travis-ci.org/gojiplus/lost_years.svg?branch=master
            :target: https://travis-ci.org/gojiplus/lost_years
        .. image:: https://ci.appveyor.com/api/projects/status/qfvbu8h99ymtw2ub?svg=true
            :target: https://ci.appveyor.com/project/gojiplus/lost_years
        .. image:: https://img.shields.io/pypi/v/lost_years.svg
            :target: https://pypi.python.org/pypi/lost_years
        .. image:: https://readthedocs.org/projects/lost-years/badge/?version=latest
            :target: http://lost-years.readthedocs.io/en/latest/?badge=latest
        .. image:: https://pepy.tech/badge/lost-years
            :target: https://pepy.tech/project/lost-years
        
        The mortality rate is puzzling to mortals. A better number is the expected number of years lost. (A yet better number would be quality-adjusted years lost.) To make it easier to calculate the expected years lost, we provide a Python package that uses the `SSA actuarial data <https://www.ssa.gov/oact/STATS/table4c6.html>`__ and `life table <https://www.lifetable.de/cgi-bin/data.php>`__ to estimate the expected years lost.
        
        The package exposes two functions: ``lost_years_ssa`` and ``lost_years_hld``: 
        
        * ``lost_years_ssa``
        
            * **Inputs:** 
        
                * The function expects 4 inputs: ``age, sex, and year``. If any of the inputs are not available, it errors out.
                * **Closest Year and Age Matching** By default, we match to the closest year; The year we match to is stored as ``ssa_year.`` Same for age. If the age provided is not available, we match to the closest age and store the matched age in the ``ssa_age`` column.
            
            * **What the function does**
                
                * Joins to the final SSA dataset stored `here <https://github.com/gojiplus/lost_years/blob/master/lost_years/data/ssa.csv>`__. The data are from `SSA actuarial data <https://www.ssa.gov/oact/STATS/table4c6.html>`__ 
                
                * While ``lost_years_ssa`` is technically only applicable for the US, we make it so that the function ignores the ``country`` argument and gives you the counterfactual of what the expected years lost would be if the person who died (or is predicted to die) was in the US. (You can of course do the same for HLD by changing the country.) 
                
        * ``lost_years_hld``
        
            * **Inputs:** 
        
                * The function expects 4 inputs: ``age, sex, year, and country``. If any of the inputs are not available, it errors out.
              
                * **Closest Year and Age Matching** By default, we match to the closest year; not all countries provide expected years left for all years or all ages. The year we match to is ``hld_year1``. Same for age. If the age provided is not available, we match to the closest age and store the matched age in the ``hld_age`` column.
        
            * **What the function does**
                
                * Joins to the international `life table <https://www.lifetable.de/cgi-bin/data.php>`__ data. 
        
                * HLD exposes more facets than age and sex. For some countries, for some periods, it also provides things like sociodemographic variables. To not lose information, we provide **multiple rows---corresponding to each sub-combination---per match**. 
        
            * **Output**
        
                * The original codebook for HLD is posted `here <https://github.com/gojiplus/lost_years/blob/master/lost_years/data/formats.pdf>`__. For more information, check `HLD <https://www.lifetable.de/cgi-bin/hld_codes.php>`__. 
        
                * To make it easier to use, we normalize the column names. The translation between HLD column names and new column names is posted `here <https://github.com/gojiplus/lost_years/blob/master/lost_years/data/hld_translation.csv>`__
        
        
        Application
        ~~~~~~~~~~~~~~~~
        
        We `illustrate the use of the package <lost_years/examples/corona_virus.ipynb>`__ by estimating the average number of years by which people's lives are shortened due to coronavirus. Using data from `Table 1 of the paper <http://weekly.chinacdc.cn/en/article/id/e53946e2-c6c4-41e9-9a9b-fea8db1a8f51>`__ that gives us the distribution of ages of people who died from COVID-19 in China, with conservative assumptions (assuming gender of the dead person to be male, taking the middle of age ranges) we find that people's lives are shortened by about 11 years on average. These estimates are conservative for one additional reason: there is likely an inverse correlation between people who die and their expected longevity. And note that given a bulk of the deaths are among older people, when people are more infirm, the quality adjusted years lost is likely yet more modest. Given that the last life tables from China are from 1981, we estimate the average number of years lost if people had the same profile as Americans. Using the most recent SSA data, we find that number to be 16. Compare this to deaths from road accidents, the modal reason for death among 5-24 and 25-44 ages in the US. Male life expectancy in the US at 25 is another ~ 52 years.
        
        Installation
        ~~~~~~~~~~~~
        
        We strongly recommend installing ``lost_years`` inside a Python virtual environment (see `venv documentation <https://docs.python.org/3/library/venv.html#creating-virtual-environments>`__)
        
        ::
        
            pip install lost_years
        
        Using lost_years
        ----------------
        
        From the command line
        ~~~~~~~~~~~~~~~~~~~~~
        
        * ``lost_years_ssa``
        
            ::
            
                usage: lost_years_ssa [-h] [-a AGE] [-s SEX] [-y YEAR] [-o OUTPUT] input
                
                Appends Lost Years data column(s) by age, sex and year
                
                positional arguments:
                  input                 Input file
                
                optional arguments:
                  -h, --help            show this help message and exit
                  -a AGE, --age AGE     Columns name of age in the input file(default=`age`)
                  -s SEX, --sex SEX     Columns name of sex in the input file(default=`sex`)
                  -y YEAR, --year YEAR  Columns name of year in the input file(default=`year`)
                  -o OUTPUT, --output OUTPUT
                                        Output file with Lost Years data column(s)
            
        
                
        * ``lost_years_hld``
        
            ::
            
                usage: lost_years_hld [-h] [-c COUNTRY] [-a AGE] [-s SEX] [-y YEAR]
                                      [-o OUTPUT] [--download-hld]
                                      input
                
                Appends Lost Years data column(s) by country, age, sex and year
                
                positional arguments:
                  input                 Input file
                
                optional arguments:
                  -h, --help            show this help message and exit
                  -c COUNTRY, --country COUNTRY
                                        Columns name of country in the input
                                        file(default=`country`)
                  -a AGE, --age AGE     Columns name of age in the input file(default=`age`)
                  -s SEX, --sex SEX     Columns name of sex in the input file(default=`sex`)
                  -y YEAR, --year YEAR  Columns name of year in the input file(default=`year`)
                  -o OUTPUT, --output OUTPUT
                                        Output file with Lost Years data column(s)
                  --download-hld        Download latest HLD from lifetable.de
        
        Example
        ~~~~~~~
        
        ::
        
            lost_years_hld lost_years/tests/input.csv
        
        As an External Library
        ~~~~~~~~~~~~~~~~~~~~~~
        
        Please also look at the Jupyter notebook `example.ipynb <lost_years/examples/example.ipynb>`__.
        
        As an External Library with Pandas DataFrame
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        
        ::
        
            >>> import pandas as pd
            >>> from lost_years import lost_years_ssa, lost_years_hld
            >>>
            >>> df = pd.read_csv('lost_years/tests/input.csv')
            >>> df
               year country  age sex
            0  2003     BRA   80   M
            1  2019     BLZ    5   M
            2  1999     PHL   62   F
            3  2001     THA    7   F
            4  2006     CHE   57   F
            5  2014     MNE   44   M
            6  2004     SLV   34   F
            7  2003     MKD   46   M
            8  2014     MKD    6   F
            9  1997     LBN   49   F
            >>>
            >>> lost_years_ssa(df)
               year country  age sex  ssa_age  ssa_year  ssa_life_expectancy
            0  2003     BRA   80   M       80      2004                 7.62
            1  2019     BLZ    5   M        5      2016                71.60
            2  1999     PHL   62   F       62      2004                21.89
            3  2001     THA    7   F        7      2004                73.56
            4  2006     CHE   57   F       57      2006                26.33
            5  2014     MNE   44   M       44      2014                34.95
            6  2004     SLV   34   F       34      2004                47.18
            7  2003     MKD   46   M       46      2004                31.90
            8  2014     MKD    6   F        6      2014                75.62
            9  1997     LBN   49   F       49      2004                33.15
            >>>
            >>> lost_years_hld(df)
               year country  age sex hld_country  ... hld_sex hld_age hld_age_interval hld_life_expectancy  hld_life_expectancy_orig
            0  2003     BRA   80   M         BRA  ...       1      80               99                5.18                      8.78
            0  2003     BRA   80   M         BRA  ...       1      80               99                5.18                      8.78
            1  2019     BLZ    5   M         BLZ  ...       1       5                5               65.79                     67.61
            2  1999     PHL   62   F         PHL  ...       2      60                5               20.07                     20.11
            2  1999     PHL   62   F         PHL  ...       2      60                5               19.57                      19.6
            3  2001     THA    7   F         THA  ...       2       5                5               71.56                        73
            4  2006     CHE   57   F         CHE  ...       2      57                1               28.66                      28.7
            5  2014     MNE   44   M         MNE  ...       1      44                1               29.31                     29.31
            6  2004     SLV   34   F         SLV  ...       2      35                5               41.90                      41.9
            7  2003     MKD   46   M         MKD  ...       1      46                1               28.36                     28.36
            8  2014     MKD    6   F         MKD  ...       2       6                1               72.26                     72.25
            9  1997     LBN   49   F         LBN  ...       2      50                5               27.48                      27.7
            
            [12 rows x 19 columns]
            >>>
            >>> help(lost_years_ssa)
            Help on method lost_years_ssa in module lost_years.ssa:
            
            lost_years_ssa(df, cols=None) method of builtins.type instance
                Appends Life expectancycolumn from SSA data to the input DataFrame
                based on age, sex and year in the specific cols mapping
            
                Args:
                    df (:obj:`DataFrame`): Pandas DataFrame containing the last name
                        column.
                    cols (dict or None): Column mapping for age, sex, and year
                        in DataFrame
                        (None for default mapping: {'age': 'age', 'sex': 'sex',
                                                    'year': 'year'})
                Returns:
                    DataFrame: Pandas DataFrame with life expectency column(s):-
                        'ssa_age', 'ssa_year', 'ssa_life_expectancy'
            >>>
            >>> help(lost_years_hld)
            Help on method lost_years_hld in module lost_years.hld:
            
            lost_years_hld(df, cols=None, download_latest=False) method of builtins.type instance
                Appends Life expectancy column from HLD data to the input DataFrame
                based on country, age, sex and year in the specific cols mapping
            
                Args:
                    df (:obj:`DataFrame`): Pandas DataFrame containing the last name
                        column.
                    cols (dict or None): Column mapping for country, age, sex, and year
                        in DataFrame
                        (None for default mapping: {'country': 'country', 'age': 'age',
                                                    'sex': 'sex', 'year': 'year'})
                Returns:
                    DataFrame: Pandas DataFrame with HLD data columns:-
                        'hld_country', 'hld_age', 'hld_sex', 'hld_year1', ...
            
        
        
        Documentation
        -------------
        
        For more information, please see `project documentation <http://lost_years.readthedocs.io/en/latest/>`__.
        
        Authors
        -------
        
        Suriyan Laohaprapanon and Gaurav Sood
        
        Contributor Code of Conduct
        ---------------------------
        
        The project welcomes contributions from everyone! In fact, it depends on
        it. To maintain this welcoming atmosphere, and to collaborate in a fun
        and productive way, we expect contributors to the project to abide by
        the `Contributor Code of
        Conduct <https://www.contributor-covenant.org/version/2/0/code_of_conduct/>`__.
        
        License
        -------
        
        The package is released under the `MIT
        License <https://opensource.org/licenses/MIT>`__.
        
Keywords: lost years,life expectency,human life table
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Provides-Extra: test
Provides-Extra: dev
