Source code for deepsurvk.datasets

# -*- coding: utf-8 -*-
import pandas as pd
import numpy as np
import h5py
from pkg_resources import resource_filename


#%%
def _load_dataset(filename, partition='complete', data_type='pandas', **kwargs):
    """
    Load an example dataset from deepsurvk.datasets.
    All datasets correspond to the ones used originally in [#katzman0]_.
    
    Parameters
    ----------
    filename: string
        Name of the dataset (e.g., 'whas.h5')
        
    partition: string
        Partition of the data to load. 
        
        Possible values are:
            * ``complete`` - The whole dataset (default)
            * ``training`` or ``train`` - Training partition as used in the original DeepSurv
            * ``testing`` or ``test`` - Testing partition as used in the original DeepSurv
            
    data_type: string
        Data type of the data. 
        
        Possible values are:
            * ``pandas`` or ``pd`` or ``dataframe`` or ``df``- pandas DataFrame (default)
            * ``numpy`` or ``np`` - NumPy array
            
        .. note:: 
            NumPy is supported as an option, but DeepSurvK is built
            with pandas in mind.
            
    Returns
    -------
    tuple of pandas DataFrames        
        * X - Features        
        * Y - Target variable        
        * E - Event variable
        
    References
    ----------
    .. [#katzman0] Katzman, Jared L., et al. "DeepSurv: personalized treatment recommender system using a Cox proportional hazards deep neural network." BMC medical research methodology 18.1 (2018): 24.
    """
    
    filename_ = resource_filename('deepsurvk', 'datasets/data/' + filename)
    
    # Read training data.
    with h5py.File(filename_, 'r') as f:
        X_train = f['train']['x'][()]
        E_train = f['train']['e'][()]
        Y_train = f['train']['t'][()].reshape(-1, 1)
    
    # Read testing data.
    with h5py.File(filename_, 'r') as f:
        X_test = f['test']['x'][()]
        E_test = f['test']['e'][()]
        Y_test = f['test']['t'][()].reshape(-1, 1)
        
    # Define data partitions.
    if partition == 'training' or partition == 'train':
        X = X_train
        Y = Y_train
        E = E_train
    elif partition == 'testing' or partition == 'test':
        X = X_test
        Y = Y_test
        E = E_test
    elif partition == 'complete':
        X = np.concatenate((X_train, X_test), axis=0)
        Y = np.concatenate((Y_train, Y_test), axis=0)
        E = np.concatenate((E_train, E_test), axis=0)
    else:
        raise ValueError('Invalid partition.')

    # If NumPy, do nothing (already in that format).
    if (data_type == 'numpy') or (data_type=='np') or (data_type=='array'):
        pass
    
    # Otherwise, convert to pandas DataFrame.
    elif (data_type == 'pandas') or (data_type=='pd') or (data_type=='dataframe') or (data_type=='df'):
        X, Y, E = _numpy_to_pandas(X, Y, E, filename)
        
    else:
        raise ValueError("Invalid data type.")
        
    return X, Y, E


#%%
def _numpy_to_pandas(X, Y, E, filename):
    """
    Convert a data NumPy array to pandas DataFrame.
    
    Parameters
    ----------
    X: NumPy array
        Feature matrix
    Y: NumPy array
        Output array
    E: NumPy array
        Event array
    filename: string
        Name of the dataset (e.g., 'whas.h5')
        
    Returns
    -------
    tuple
        Tuple with df_X, df_Y, and df_E
    """    
    # Get columns names and data types.
    column_names = _get_column_names(filename)
    data_types = _get_data_types(filename)
    
    # Create pandas DataFrames
    df_X = pd.DataFrame(data=X, columns=column_names)
    df_X = df_X.astype(data_types)
    
    df_Y = pd.DataFrame(data=Y, columns=['T'], dtype=np.float64)
    df_E = pd.DataFrame(data=E, columns=['E'], dtype=np.int32)
    
    return df_X, df_Y, df_E


#%%
def _get_column_names(filename):
    """
    Get the data column names (needed to create a pandas DataFrame).
    
    Parameters
    ----------
    filename: string
        Name of the dataset (e.g., 'whas.h5')
        
    Returns
    -------
    column_names: list
        Column names corresponding to the data.
    """
    # Remove file name extension.
    filename = filename.split('.h5')[0]

    # Define column names for each dataset.
    if filename=='metabric':
        column_names = ['gene1', 'gene2', 'gene3', 'gene4', 'radio', 'horm', 'chemo', 'er_status', 'age']
    elif filename=='rgbsg':
        column_names = ['horm_treatment', 'grade', 'menopause' ,'age' ,'n_positive_nodes', 'progesterone' ,'estrogen']
    elif filename=='simulated_gaussian':
        column_names = ['x1', 'x2', 'x3', 'x4', 'x5', 'x6', 'x7', 'x8', 'x9', 'x10']
    elif filename=='simulated_linear':
        column_names = ['x1', 'x2', 'x3', 'x4', 'x5', 'x6', 'x7', 'x8', 'x9', 'x10']
    elif filename=='simulated_treatment':
        column_names = ['x1', 'x2', 'x3', 'x4', 'x5', 'x6', 'x7', 'x8', 'x9', 'x10', 'treatment']
    elif filename=='support':
        column_names = ['age', 'sex', 'race', 'n_comorbidities', 'diabetes', 'dementia', 'cancer', 'blood_pressure', 'heart_rate', 'respiration_rate', 'temperature', 'white_blood_cell', 'serum_sodium', 'serum_creatinine']
    elif filename=='whas':
        column_names = ['shock', 'age', 'sex', 'bmi', 'chf', 'recurrent']
    
    return column_names



#%%
def _get_data_types(filename):
    """
    Get the right data types of the columns (needed to create a pandas DataFrame).
    
    Parameters
    ----------
    filename: string
        Name of the dataset (e.g., 'whas.h5')
        
    Returns
    -------
    data_types: dictionary
        Each key corresponds to the column name.
        Each value corresponds to the data type.
    """
    # Remove file name extension.
    filename = filename.split('.h5')[0]
    
    # Assign data type for each column for each dataset.
    if filename=='metabric':
        data_types_ = ['float64', 'float64', 'float64', 'float64', 'int32', 'int32', 'int32', 'int32', 'float64']
    elif filename=='rgbsg':
        data_types_ = ['int32', 'int32', 'int32', 'int32' ,'int32', 'int32', 'int32']
    elif filename=='simulated_gaussian':
        data_types_ = ['float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64']
    elif filename=='simulated_linear':
        data_types_ = ['float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64']
    elif filename=='simulated_treatment':
        data_types_ = ['float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'float64', 'int32']
    elif filename=='support':
        data_types_ = ['float64', 'int32', 'int32', 'int32', 'int32', 'int32', 'int32', 'int32', 'int32', 'int32', 'float64', 'int32', 'float64', 'float64']
    elif filename=='whas':
        data_types_ = ['int32', 'int32', 'int32', 'float64', 'int32', 'int32']
    
    # Create dictionary.
    keys = _get_column_names(filename)
    data_types = dict(zip(keys, data_types_))
    
    return data_types


#%%
[docs]def load_metabric(partition='complete', **kwargs): """ Data from the Molecular Taxonomy of Breast Cancer International Consortium (METABRIC), which uses gene and protein expression profiles to determine new breast cancer subgroups It consists of clinical features of 1980 patients, of which 57.72% have an observed death due to breast cancer with a median survival time of 116 months. However, the file only contains data of 1904 patients. For more information, see [#curtis]_ as well as the accompanying README. Parameters ---------- partition: string Partition of the data to load. Possible values are: * ``complete`` - The whole dataset (default) * ``training`` or ``train`` - Training partition as used in the original DeepSurv * ``testing`` or ``test`` - Testing partition as used in the original DeepSurv data_type: string Data type of the data. Possible values are: * ``pandas`` or ``pd`` or ``dataframe`` or ``df``- pandas DataFrame (default) * ``numpy`` or ``np`` - NumPy array .. note:: NumPy is supported as an option, but DeepSurvK is built with pandas in mind. Returns ------- tuple of pandas DataFrames * X - Features * Y - Target variable * E - Event variable References ---------- .. [#curtis] Curtis, Christina, et al. "The genomic and transcriptomic architecture of 2,000 breast tumours reveals novel subgroups." Nature 486.7403 (2012): 346-352. """ return _load_dataset('metabric.h5', partition=partition, **kwargs)
#%%
[docs]def load_rgbsg(partition='complete', **kwargs): """ The training partition belongs to the Rotterdam tumor bank dataset [#foekens]_. It contains records of 1546 patients with node-positive breast cancer. Nearly 90% of the patients have an observed death time. The testing partitiong belongs to the German Breast Cancer Study Group (GBSG) [#schumacher]_. It contains records for 686 patients (of which 56 % are censored) in a randomized clinical trial that studied the effects of chemotherapy and hormone treatment on survival rate. For more information, see [#foekens]_ and [#schumacher]_, as well as the accompanying README. Parameters ---------- partition: string Partition of the data to load. Possible values are: * ``complete`` - The whole dataset (default) * ``training`` or ``train`` - Training partition as used in the original DeepSurv * ``testing`` or ``test`` - Testing partition as used in the original DeepSurv data_type: string Data type of the data. Possible values are: * ``pandas`` or ``pd`` or ``dataframe`` or ``df``- pandas DataFrame (default) * ``numpy`` or ``np`` - NumPy array .. note:: NumPy is supported as an option, but DeepSurvK is built with pandas in mind. Returns ------- tuple of pandas DataFrames * X - Features * Y - Target variable * E - Event variable References ---------- .. [#foekens] Foekens, John A., et al. "The urokinase system of plasminogen activation and prognosis in 2780 breast cancer patients." Cancer research 60.3 (2000): 636-643. .. [#schumacher] Schumacher, M., et al. "Randomized 2 x 2 trial evaluating hormonal treatment and the duration of chemotherapy in node-positive breast cancer patients. German Breast Cancer Study Group." Journal of Clinical Oncology 12.10 (1994): 2086-2093. """ return _load_dataset('rgbsg.h5', partition=partition, **kwargs)
#%%
[docs]def load_simulated_gaussian(partition='complete', **kwargs): """ Synthetic data with a Gaussian (non-linear) log-risk function. For more information, see [#katzman1]_ as well as the accompanying README. Parameters ---------- partition: string Partition of the data to load. Possible values are: * ``complete`` - The whole dataset (default) * ``training`` or ``train`` - Training partition as used in the original DeepSurv * ``testing`` or ``test`` - Testing partition as used in the original DeepSurv data_type: string Data type of the data. Possible values are: * ``pandas`` or ``pd`` or ``dataframe`` or ``df``- pandas DataFrame (default) * ``numpy`` or ``np`` - NumPy array .. note:: NumPy is supported as an option, but DeepSurvK is built with pandas in mind. Returns ------- tuple of pandas DataFrames * X - Features * Y - Target variable * E - Event variable References ---------- .. [#katzman1] Katzman, Jared L., et al. "DeepSurv: personalized treatment recommender system using a Cox proportional hazards deep neural network." BMC medical research methodology 18.1 (2018): 24. """ return _load_dataset('simulated_gaussian.h5', partition=partition, **kwargs)
#%%
[docs]def load_simulated_linear(partition='complete', **kwargs): """ Synthetic data with a linear log-risk function. For more information, see [#katzman2]_ as well as the accompanying README. Parameters ---------- partition: string Partition of the data to load. Possible values are: * ``complete`` - The whole dataset (default) * ``training`` or ``train`` - Training partition as used in the original DeepSurv * ``testing`` or ``test`` - Testing partition as used in the original DeepSurv data_type: string Data type of the data. Possible values are: * ``pandas`` or ``pd`` or ``dataframe`` or ``df``- pandas DataFrame (default) * ``numpy`` or ``np`` - NumPy array .. note:: NumPy is supported as an option, but DeepSurvK is built with pandas in mind. Returns ------- tuple of pandas DataFrames * X - Features * Y - Target variable * E - Event variable References ---------- .. [#katzman2] Katzman, Jared L., et al. "DeepSurv: personalized treatment recommender system using a Cox proportional hazards deep neural network." BMC medical research methodology 18.1 (2018): 24. """ return _load_dataset('simulated_linear.h5', partition=partition, **kwargs)
#%%
[docs]def load_simulated_treatment(partition='complete', **kwargs): """ Synthetic data similar to the simulated_gaussian one, with an additional column representing treatment. For more information, see [#katzman3]_ as well as the accompanying README. Parameters ---------- partition: string Partition of the data to load. Possible values are: * ``complete`` - The whole dataset (default) * ``training`` or ``train`` - Training partition as used in the original DeepSurv * ``testing`` or ``test`` - Testing partition as used in the original DeepSurv data_type: string Data type of the data. Possible values are: * ``pandas`` or ``pd`` or ``dataframe`` or ``df``- pandas DataFrame (default) * ``numpy`` or ``np`` - NumPy array .. note:: NumPy is supported as an option, but DeepSurvK is built with pandas in mind. Returns ------- tuple of pandas DataFrames * X - Features * Y - Target variable * E - Event variable References ---------- .. [#katzman3] Katzman, Jared L., et al. "DeepSurv: personalized treatment recommender system using a Cox proportional hazards deep neural network." BMC medical research methodology 18.1 (2018): 24. """ return _load_dataset('simulated_treatment.h5', partition=partition, **kwargs)
#%%
[docs]def load_support(partition='complete', **kwargs): """ Data from the Study to Understand Prognoses Preferences Outcomes and Risks of Treatment (SUPPORT), which studied the survival time of seriously ill hospitalized adults. Originally, it consists of 14 clinical features of 9105 patients. However, patients with missing features were dropped, leaving a total of 8873 patients. For more information, see [#knaus]_ as well as the accompanying README. Parameters ---------- partition: string Partition of the data to load. Possible values are: * ``complete`` - The whole dataset (default) * ``training`` or ``train`` - Training partition as used in the original DeepSurv * ``testing`` or ``test`` - Testing partition as used in the original DeepSurv data_type: string Data type of the data. Possible values are: * ``pandas`` or ``pd`` or ``dataframe`` or ``df``- pandas DataFrame (default) * ``numpy`` or ``np`` - NumPy array .. note:: NumPy is supported as an option, but DeepSurvK is built with pandas in mind. Returns ------- tuple of pandas DataFrames * X - Features * Y - Target variable * E - Event variable References ---------- .. [#knaus] Knaus, William A., et al. "The SUPPORT prognostic model: Objective estimates of survival for seriously ill hospitalized adults." Annals of internal medicine 122.3 (1995): 191-203. """ return _load_dataset('support.h5', partition=partition, **kwargs)
#%%
[docs]def load_whas(partition='complete', **kwargs): """ Data from the Worcester Heart Attack Study (WHAS), which investigates the effects of a patient's factors on acute myocardial infraction (MI) survival. It consists of 1638 observations and 5 features: age, sex, body-mass-index (BMI), left heart failure complications (CHF), and order of MI (MIORD). For more information, see [#hosmer]_ as well as the accompanying README. Parameters ---------- partition: string Partition of the data to load. Possible values are: * ``complete`` - The whole dataset (default) * ``training`` or ``train`` - Training partition as used in the original DeepSurv * ``testing`` or ``test`` - Testing partition as used in the original DeepSurv data_type: string Data type of the data. Possible values are: * ``pandas`` or ``pd`` or ``dataframe`` or ``df``- pandas DataFrame (default) * ``numpy`` or ``np`` - NumPy array .. note:: NumPy is supported as an option, but DeepSurvK is built with pandas in mind. Returns ------- tuple of pandas DataFrames * X - Features * Y - Target variable * E - Event variable References ---------- .. [#hosmer] Hosmer Jr, David W., Stanley Lemeshow, and Susanne May. Applied survival analysis: regression modeling of time-to-event data. Vol. 618. John Wiley & Sons, 2011. """ return _load_dataset('whas.h5', partition=partition, **kwargs)