Metadata-Version: 1.1
Name: fastlogranktest
Version: 0.1.4
Summary: Perform the Log-Rank-Test very fast
Home-page: https://gitlab.lrz.de/computational-systems-medicine/fastlogranktest/tree/master/python/fastlogranktest
Author: Andreas Stelzer
Author-email: ga63nep@mytum.de
License: BSD
Description: ===============================
        fastlogranktest
        ===============================
        
        Perform the Log-Rank-Test very fast
        
        * Free software: BSD license
        
        
        Description
        -----------
        Calculate the Log-Rank-Test very fast
        
        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.
        
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
