Metadata-Version: 1.1
Name: fastlogranktest
Version: 0.2.0
Summary: Perform the Log-Rank-Test very fast
Home-page: https://github.com/compsysmed/fastlogranktest.git
Author: Andreas Stelzer, Manuela Lautizi, Tim Kacprowski, Research group of computational systems medicine Chair of Experimental Bioinformatics TU Munich
Author-email: ga63nep@mytum.de, manuela.lautizi@wzw.tum.de, tim.kacprowski@wzw.tum.de
License: BSD
Description: ===============================
        fastlogranktest
        ===============================
        
        Perform the Log-Rank-Test very fast
        
        * Free software: BSD license
        
        
        Description
        -----------
        Calculate the Log-Rank-Test very fast
        
        Installation
        ------------
        pip install fastlogranktest
        
        (if it fails, make sure python-dev is installed and try the installation again.
        
        linux: sudo apt-get install python-dev)
        
        Usage
        --------
        logrank_test(groupa, groupb, groupacensored, groupbcensored)
        
        Arguments
        ---------
        groupa:	
        list of group a's survival times
        
        groupb:	
        list of group b's survival times
        
        groupacensored:	
        list of censored information of group a's survival times
        
        groupbcensored:	
        list of censored information of group b's survival times
        
        Value
        --------
        p-value
        
        Description
        ------------
        Calculate multiple Log-Rank-Tests very fast using threading
        
        Usage
        --------
        multi_logrank_test(groupas, groupbs, groupacensoreds, groupbcensoreds, threadnumber = NULL)
        
        Arguments
        ---------
        groupas:	
        list of lists of groupa's survival times
        
        groupbs:	
        list of lists of groupb's survival times
        
        groupacensoreds:	
        list of lists of censored information of groupa's survival times
        
        groupbcensoreds:	
        list of lists of censored information of groupb's survival times
        
        threadnumber:	
        (optional) set the number of threads used for this function
        
        Value
        --------
        list of p-values (same order as input)
        
        
        
        History
        -------
        
        0.1.0 (2019-10-21)
        ---------------------
        
        * First release on PyPI.
        
        0.1.1 (2019-10-22)
        ---------------------
        
        * Updated programm instructions.
        
        0.1.2 (2019-11-05)
        ---------------------
        
        * Updated programm instructions again.
        
        0.1.3 (2019-11-05)
        ---------------------
        
        * Updated link to gitlab.
        
        0.1.4 (2019-11-07)
        ---------------------
        
        * Improvements for Linux compatibility.
        
        0.1.5 (2019-11-07)
        ---------------------
        
        * Improvements for Linux compatibility.
        
        0.1.6 (2019-11-07)
        ---------------------
        
        * Improvements for Linux compatibility.
        
        0.1.7 (2019-11-07)
        ---------------------
        
        * Improvements for Linux compatibility.
        
        0.1.8 (2019-11-07)
        ---------------------
        
        * Improvements for Linux compatibility.
        
        0.1.9 (2019-11-07)
        ---------------------
        
        * Improvements for Linux compatibility.
        
        0.2.0 (2019-02-01)
        ---------------------
        
        * Updated installation and author information.
Keywords: fastlogranktest
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
