Literature DB >> 27612635

A robust data scaling algorithm to improve classification accuracies in biomedical data.

Xi Hang Cao1, Ivan Stojkovic1,2, Zoran Obradovic3.   

Abstract

BACKGROUND: Machine learning models have been adapted in biomedical research and practice for knowledge discovery and decision support. While mainstream biomedical informatics research focuses on developing more accurate models, the importance of data preprocessing draws less attention. We propose the Generalized Logistic (GL) algorithm that scales data uniformly to an appropriate interval by learning a generalized logistic function to fit the empirical cumulative distribution function of the data. The GL algorithm is simple yet effective; it is intrinsically robust to outliers, so it is particularly suitable for diagnostic/classification models in clinical/medical applications where the number of samples is usually small; it scales the data in a nonlinear fashion, which leads to potential improvement in accuracy.
RESULTS: To evaluate the effectiveness of the proposed algorithm, we conducted experiments on 16 binary classification tasks with different variable types and cover a wide range of applications. The resultant performance in terms of area under the receiver operation characteristic curve (AUROC) and percentage of correct classification showed that models learned using data scaled by the GL algorithm outperform the ones using data scaled by the Min-max and the Z-score algorithm, which are the most commonly used data scaling algorithms.
CONCLUSION: The proposed GL algorithm is simple and effective. It is robust to outliers, so no additional denoising or outlier detection step is needed in data preprocessing. Empirical results also show models learned from data scaled by the GL algorithm have higher accuracy compared to the commonly used data scaling algorithms.

Entities:  

Keywords:  Classification model; Data normalization; Data scaling; Empirical cumulative distribution function; Generalized logistic function; Outlier

Mesh:

Year:  2016        PMID: 27612635      PMCID: PMC5016890          DOI: 10.1186/s12859-016-1236-x

Source DB:  PubMed          Journal:  BMC Bioinformatics        ISSN: 1471-2105            Impact factor:   3.169


Background

There is an increasing interest in research and development of machine learning and data mining techniques for aid in biomedical studies as well as in clinical decision making [1-4]. Typically, statistical learning methods are performed on the data of observed cases to yield diagnostic or prognostic models that can be applied in future cases in order to infer the diagnosis or predict the outcome. Such learned models might be used to assist physicians in guiding their decisions, and are sometimes shown to outperform the experts’ prediction accuracy [5]. Furthermore, such models can discover previously unrecognized relations between the variables and outcome improving knowledge and understanding of the condition. Such discoveries may result in improved treatments or preventive strategies. Given that predictive models compute predictions based on information of a particular patient, they are also promising tools for achieving the goal of personalized medicine. Predictive models have huge potential because of their ability to generalize from data. Even though predictive models lack the skills of a human expert, they can handle much larger amounts of data and can potentially find subtle patterns in the data that a human could not. Predictive models rely heavily on training data, and are dependent on data quality. Ideally, a model should extract the existing signal from the data and disregard any spurious patterns (noise). Unfortunately, this is not an easy task, since data are often far from perfect; some of the imperfections include irrelevant variables, small numbers of samples, missing values, and outliers. Therefore, data preprocessing is common and necessary in order to increase the ability of the predictive models to extract useful information. There are various approaches targeting different aspects of data imperfection; such as imputations for missing values, smoothing for removing the superimposed noise, or excluding the outlier examples. Then there are various transformations of variables, from common scaling and centering of the data values, to more advanced feature engineering techniques. Each of those techniques can make a significant improvement in predictive model performance when learned on the transformed data.

Data scaling in classification modeling

In the machine learning and data mining community, data scaling and data normalization refer to the same data preprocessing procedure, and these two terminologies are used interchangeably; their aim is to consolidate or transfer the data into ranges and forms that are appropriate for modeling and mining [6]. Models trained on scaled data usually have significantly higher performance compared to the models trained on unscaled data, so data scaling is regarded as an essential step in data preprocessing. Data scaling is particularly important for methods that utilize distance measures, such as nearest neighbor classification and clustering. In addition, artificial Neural Network models require the input data to be normalized, so that the learning process can be more stable and faster [7]. Confusions of gene expression normalization In medicine, gene expression data obtained from microarray technology are widely used for disease/cancer diagnosises. Usually, a normalization step is conducted for the purpose of identifying and removing sources of systematic variation in the measured fluorescence [8], before the data are ready for analysis. However, the gene expression normalization step is not equivalent to the data scaling step that we study in this context. In most cases, a normalized gene expression dataset needs to be processed/scaled by a data scaling step before learning a classification model. The models that are learned from gene expression data with scaling usually outperform the models that are learned from gene expression data without scaling, with considerable margins.

Commonly used data scaling algorithms

Two data scaling algorithms are widely used: Min-max algorithm and Z-score algorithm. Min-max algorithm In the Min-max algorithm, the original data are linearly transformed. We denote x and x as the minimum and the maximum of a variable in the samples. The Min-max algorithm maps a value, v, of this variable to a value, v′, using the following formula: The Min-max algorithm scales a variable in the training samples in the interval of [ x, x] to [-1, 1] (or [0, 1]) by using a linear mapping. However, when the unseen/testing samples fall outside of the training data range of the variable, the scaled values will be out of the bounds of the interval [-1, 1] (or [0, 1]), and that may pose problems in some applications; in addition, it is very sensitive to outliers, as shown in latter sections. Z-score algorithm In the Z-score algorithm, the new value, v′, of a variable, is scaled from the original value, v, using the formula: where and σ are the mean and standard deviation of the variable values in the training samples, respectively. After the scaling, the new values will have value 0 as the mean, and value 1 as the standard deviation. This algorithm does not map the original data into an interval, and it is also sensitive to outliers. When the number of examples is small, especially in scenarios in biomedical research, the mean and standard deviation calculated from the data may not be able to approximate the true mean and standard deviation well, so future input values will be scaled poorly.

Methods

The idea of the GL algorithm for data scaling is adapted from the histogram equalization technique, and it can map both the original and future data into a desired interval. The algorithm has no assumption on the sample distribution and utilizes generalized logistic functions to approximate cumulative density functions. Since it maps data into a uniformly distributed range of values, the points that were previously densely concentrated on some interval become more discernible, which allows more room for representation of the subtle differences between them. In addition, the GL algorithm reduces the distance of outliers from other samples, which makes the algorithm robust to the outliers. This advantage is particularly significant in diagnostic/classification modeling in medicine and healthcare, where the number of samples is usually small, and outliers have a huge impact on the model training, leading to poor accuracy. In a preliminary study [9], the GL algorithm was effective in classifying tasks with microarray gene expression data. In this manuscript we have significantly extended our preliminary work in the following ways: providing a thorough description of the proposed GL algorithm as well as intuitive and qualitative explanations of scenarios where the new algorithm is superior to the Min-max and Z-score algorithms; extending the GL algorithm to include a much better and more general parameter initialization for the non-convex optimization, which is a critical part of the algorithm for fitting the generalized logistic function to the empirical cumulative distribution function; empirically demonstrating that the GL algorithm is not only effective in gene expression classification tasks, but also in a broad variety of different diagnostic/classification tasks with different types of variables.

Data scaling formula

We model the values of a variable in the samples as a random variable (r.v.) X. In the GL algorithm, the scaled value v′ of a value, v, is obtained by where P(·) is the cumulative density function (CDF) of the r.v. X. Using a CDF as a mapping can be also seen in the Histogram Equalization technique [10] in the field of Digital Image Processing for image contrast enhancement. The difference of the GL algorithm versus the Histogram Equalization technique is that we do not only use the CDF to scale the data, but also learn/approximate the functional expression of the CDF, so that it can be used to scale unseen values.

Approximation of the cumulative density function

From the data, we do not know the exact functional form of the cumulative density function (CDF) of an variable whose value is represented by the r.v. X; therefore, we need to approximate the CDF. We can find the empirical cumulative density function (ECDF) using the formula where is the ECDF at a value v, n is the number of samples, and x is the value of the variable in the i sample. Unfortunately, in most cases, the ECDF has no functional form expression. Moreover, the original data tend to be noisy, so the ECDF is usually very bumpy. Therefore, we use a generalized logistic (GL) function to approximate the ECDF. It has been proven that a logistic function can be used to accuractely approximate the CDF of a normal distribution [11]. In this algorithm, we do not make any assumption on the distribution of the data; therefore, we use a more general form of the logistic function, called the generalized logistic (GL) function Compared to the logistic function used in [11], this GL function provides the flexibility to approximate a more variety of distributions. One of the notable properties of (5) is that it maps the values in the interval (∞,−∞) to the interval (0,1). This property makes our GL algorithm robust to outliers, and guarantees that the scaled data will be in (0,1). In order to approximate the ECDF, we need to learn the parameters Q, B, M, and ν from the data, so that the GL function could best fit the ECDF. The sum of squared differences of the GL function and the ECDF can be represented by The best set of parameters is the minimizer of η, so the key to find the most appropriate GL function to approximate the ECDF is to solve an optimization problem Because (5) and (6) are differentiable, the derivatives of η with respect to the parameters can be easily obtained, as shown in the following: Therefore, a local minimum of (7) can be solved efficiently by any gradient descent optimization algorithms.

Parameter initialization

The optimization problem described in (7) is non-convex, so in order to achieve a good local minimum (or even global minimum) of the objective function, the values of the parameters should be carefully initialized; i.e. determine B0,M0,Q0,ν0, which are the initialization of the parameters for the gradient descent iterations. By looking at the structure of the GL function, we can see that parameter M determines the “center” of the GL curve; therefore, parameter M, should be close to the median of the sample values. We first arrive at: where x denotes the median value of the variable in the samples. From , we have , noting that we replace M0 by x because of (8). We obtain: It is reasonable to assume that the minimum value in the samples will be scaled to a value close to 0.1, that is , we have , where x denotes the minimum value of the variable in the samples. We obtain: Now, ν0 and B0 are dependent on Q0. We further assume that the maximum value in the sample will be scaled to a value close to 0.9, that is , thus , where x denotes the maximum value of the variable in the samples. Combining (9) and (10), we obtain the following equation in terms of Q0: and the most suitable value for Q0 is the root of Eq. (11). The root can be resolved numerically and quickly by using the Newton’s method. With this initialization, we could find a set of parameters which make the GL function fit the ECDF well, as shown in Fig. 1.
Fig. 1

Fitting of the ECDF using the GL algorithm An example showing the approximation of an ECDF using a generalized logistic (GL) function

Fitting of the ECDF using the GL algorithm An example showing the approximation of an ECDF using a generalized logistic (GL) function

Qualitative comparisons of data scaling algorithms

In this section, we will intuitively and qualitatively discuss the scenarios where the GL algorithm is superior to the commonly used data scaling algorithms. The GL algorithm is robust to outliers During the data collection period, the data might be corrupted for various reasons; e.g., system error, human error, sample contamination, etc. Therefore, a data de-noising or outlier detection procedure may be necessary in the data preprocessing step. The GL algorithm is intrinsically capable of handling situations where there are noisy samples and outliers in the samples. As Fig. 2a–c show, in the situation that there are no outliers in samples, all data scaling algorithms perform similarly. However, when an outlier exists in the data, as shown in Fig. 2d–e, the Min-max algorithm and the Z-score algorithm are affected by the outlier - the original values in the normal range are squeezed after the scaling. In contrast, the outlier’s impact to the GL algorithm is neglectable, as shown in Fig. 2f. Outliers are samples deviate strongly from the majority of (normal) samples, so the number of outliers will be always much smaller than the number of normal samples, and therefore, the contribution of outliers to the CDF of the samples is neglectable. However, outliers do not necessarily need to be the result of measurement errors, but may also occur due to variability, and represent completely valid instances. There are applications that are particularly concerned with such anomalies in the observations as they may carry valuable information about some rare modality of the processes responsible for its generation. For such applications, algorithms for outlier detection are utilized to interrogate the data and bring the focus to the rare signal in the data, and our data preprocessing algorithm is inappropriate to use for such purposes. Nevertheless, regardless of the outliers’ origin (error or variability), for the supervised task of classification, outliers are typically detrimental for classification accuracy, and their removal/correction is very welcome, if not necessary [12].
Fig. 2

Behavior of data scaling algorithms with/without outliers. Top panels a–c: when there is no outlier in the data, the behavior of the Min-max algorithm, Z-score algorithm and the GL algorithm is very similar. Bottom panel d–f: when there is an outlier in the data, the behaviors of the Min-max algorithm and Z-score algorithm are significantly affected, but the impact of the outlier on the GL algorithm is neglectable

Behavior of data scaling algorithms with/without outliers. Top panels a–c: when there is no outlier in the data, the behavior of the Min-max algorithm, Z-score algorithm and the GL algorithm is very similar. Bottom panel d–f: when there is an outlier in the data, the behaviors of the Min-max algorithm and Z-score algorithm are significantly affected, but the impact of the outlier on the GL algorithm is neglectable The GL algorithm can improve classification accuracy One of the complications which leads to poor classification accuracy is that the samples in different classes are dense and “crowded” near the decision boundary (otherwise, the accuracy would be expected to be high). Therefore, although in the training stage, the model can perfectly distinguish samples in different classes, in the testing stage, the model may make mistakes. Figure 3a shows an artificially generated data of two groups (red v.s. blue), and we can imagine those samples are used to test the classifier. Although the two groups of data are separable, a trained classifier may make mistakes because these data are not seen in the training. One way to improve the classification in the test is to enlarge the separation the data from two groups near the decision boundary. The intuition is that if the separation of two groups is by a large margin, it allows a wider variety of decision boundaries to separate the data. Because the Min-max algorithm and the Z-score algorithm are linear mappings, after the data are scaled, their relative distance will not change (Fig. 3b and c). In contrast, the GL algorithm is a nonlinear mapping; it will enlarge the distance of the dense samples that are located near the decision boundary, and squeeze the samples that are located away from the decision boundary (Fig. 3d). This effect reduces the classifier’s potential of making mistakes, thus improving the accuracy.
Fig. 3

An 2D illustration on how the GL algorithm can affect the classification accuracy. a raw data without scaling; b data scaled by the Min-max algorithm; c data scaled by the Z-score algorithm; d data scaled by the GL algorithm

An 2D illustration on how the GL algorithm can affect the classification accuracy. a raw data without scaling; b data scaled by the Min-max algorithm; c data scaled by the Z-score algorithm; d data scaled by the GL algorithm Descriptions of datasets We have included 16 datasets in our experiments. The tasks associated with the datasets cover a broad variety of diagnostic/classification problems in biomedical research. The information of the datasets, including the number of samples, variable types, and tasks, are summarized in Table 1. Among them, LSVT, Pima Indian diabetes, Parkinsons, Wdbc, Breast tissue, and Indian liver were downloaded from the UCI dataset repository (https://archive.ics.uci.edu/ml/datasets.html). These 6 datasets were selected because the majority of their variables are continuous, so that the data scaling algorithms could be applied (non-continuous variables were deleted). If a dataset was originally associated with a multiclass classification task, we will formulate a binary classification task as one-class-vs-others. The datasets, Breast cancer, Colon cancer, Lung cancer, Prostate cancer, and Myeloma were made available by Stantnikov et al. [13], and we downloaded the datasets from the supplementary material website (http://www.gems-system.org/). The datasets DLBCL and Leukemia were downloaded from the Kent Ridge Bio-medical Dataset Repository (http://datam.i2r.a-star.edu.sg/datasets/krbd); we removed the variables with missing values in the DLBCL dataset, so 715 variables were used in our experiments. The datasets GSE 25869, GSE 27899IL, and GSE 29490, were downloaded from the Gene Expression Omnibus Repository [14]. We converted the datasets to .mat format, and made them available to the public; please refer to Section “Availability of data and material” for details.
Table 1

Summary of datasets used in experiments (sorted by the no. of subjects in ascending order)

DatasetNo. of subjects (pos/neg)Var. typeNo. of var.Task
GSE 27899IL [15]10/10DNA methylation27578diagnose ulcerative colitis
Prostate cancer [16]14/9microarray gene expression15009diagnose prostate cancer
Colon cancer [16]15/11microarray gene expression15009diagnose colon cancer
Lung cancer [16]20/7microarray gene expression15009diagnose lung cancer
Breast cancer [16]17/15microarray gene expression15009diagnose breast cancer
Leukemia [17]11/27microarray gene expression7129diagnose leukemia
GSE 29490 [18]20/7DNA methylation26916diagnose colorectal carchinoma
GSE 25869 [19]14/9DNA methylation27570diagnose gastric cancer
Breast tissue [20]21/85impedance measurements9diagnose breast tumor
LSVT [21]42/84wavelet and frequency based measurements310assessment of treatments in Parkinson
DLBCL [22]88/72microarray gene expression715diagnose DLBCL
Myeloma [23]137/36microarray gene expression12625diagnose bone lesions
Parkinsons [24]147/48vocal based measurements22diagnose Parkinson disease
Wdbc [25]212/357nuclear feature from image30diagnose breast tumor
Indian liver [26]414/165biochemistry based measurements9diagnose liver disease
Pima Indians diabetes [27]268/500clinical measurements8diagnose diabetes
Summary of datasets used in experiments (sorted by the no. of subjects in ascending order) Evaluation methods To assess how different data scaling algorithms affect classification performances, we used Logistic Regression (LR) and Support Vector Machine (SVM) as the classification models. These two classification models have been used extensively in biological and medical research due to their simplicity and accessibility. The program code of the experiments was implemented in MATLAB 8.4. The results were obtained using 5-fold cross-validations. One of the performance metrics we used was the area under the receiver operation characteristic curve (AUROC), which has been commonly used for binary classification performance evaluations; one of the advantages of AUROC is that its value does not depend on a classification score threshold. To have a more complete comparison of different data scaling methods and classification models, we also used accuracy (proportion of correct classifications). The threshold we used to determine the class labels (and thus, the accuracy) of the testing set samples was obtained by selecting a score which could maximize the accuracy in the training set; if multiple, or a range of scores could achieve the maximum accuracy, we would select the minimum. The mean value and 95 % confidence interval of the AUROC of each binary classification task can be found in Table 2, and the mean value and 95 % confidence interval of the proportion of correct classifications can be found in Table 3. Due to the large number of variables, the AUROC’s and accuracies of datasets GSE 25869, GSE 27899IL, and GSE 29490 on Logistic Regression model were not available.
Table 2

Results of 16 datasets (16 binary classification tasks) using different data scaling algorithms and classification models

datasetMethodNoneMinmaxZscoreGL
GSE27899ILLRNA ± NANA ± NANA ± NANA ± NA
SVM0.768 ± 0.1040.814 ± 0.0840.814 ± 0.074 0.824 ± 0.058
Prostate CancerLR0.464 ± 0.0000.749 ± 0.1300.689 ± 0.156 0.761 ± 0.108
SVM0.573 ± 0.1980.725 ± 0.2320.713 ± 0.244 0.822 ± 0.194
Colon CancerLR0.500 ± 0.0000.895 ± 0.0920.892 ± 0.082 0.962 ± 0.046
SVM0.670 ± 0.1840.940 ± 0.0580.937 ± 0.050 0.981 ± 0.020
Lung CancerLR0.450 ± 0.0000.839 ± 0.0960.834 ± 0.108 0.890 ± 0.050
SVM0.397 ± 0.2740.716 ± 0.1360.710 ± 0.152 0.774 ± 0.182
Breast CancerLR0.324 ± 0.0000.809 ± 0.038 0.821 ± 0.020 0.819 ± 0.022
SVM0.708 ± 0.1580.793 ± 0.0520.795 ± 0.042 0.812 ± 0.038
LeukemiaLR0.500 ± 0.0000.988 ± 0.0140.990 ± 0.006 1.000 ± 0.000
SVM0.935 ± 0.0340.992 ± 0.0100.991 ± 0.008 1.000 ± 0.000
GSE29490LRNA ± NANA ± NANA ± NANA ± NA
SVM0.983 ± 0.0120.984 ± 0.0340.985 ± 0.034 0.994 ± 0.004
GSE25869LRNA ± NANA ± NANA ± NANA ± NA
SVM0.935 ± 0.0240.937 ± 0.0200.938 ± 0.016 0.943 ± 0.014
Breast tissueLR0.520 ± 0.0060.961 ± 0.032 0.961 ± 0.044 0.940 ± 0.054
SVM0.713 ± 0.1080.968 ± 0.0060.970 ± 0.014 0.972 ± 0.010
LSVTLR0.500 ± 0.0000.875 ± 0.0080.846 ± 0.022 0.921 ± 0.012
SVM0.500 ± 0.0000.879 ± 0.0120.863 ± 0.014 0.919 ± 0.020
DLBCLLR0.601 ± 0.0380.608 ± 0.0380.610 ± 0.048 0.660 ± 0.062
SVM0.616 ± 0.0500.622 ± 0.0520.619 ± 0.052 0.654 ± 0.054
MyelomaLR0.500 ± 0.0000.729 ± 0.0440.739 ± 0.072 0.746 ± 0.038
SVM0.573 ± 0.0980.748 ± 0.0520.747 ± 0.054 0.750 ± 0.054
ParkinsonsLR0.875 ± 0.0120.896 ± 0.0540.893 ± 0.058 0.906 ± 0.048
SVM0.882 ± 0.0100.875 ± 0.0100.885 ± 0.024 0.891 ± 0.018
WdbcLR0.942 ± 0.0020.982 ± 0.0040.978 ± 0.006 0.993 ± 0.004
SVM0.990 ± 0.0020.994 ± 0.0020.993 ± 0.004 0.995 ± 0.000
Indian LiverLR0.680 ± 0.0020.743 ± 0.0080.742 ± 0.008 0.746 ± 0.010
SVM0.636 ± 0.0680.696 ± 0.0080.692 ± 0.034 0.695 ± 0.008
Pima Indians DiabetesLR0.604 ± 0.0040.827 ± 0.0040.827 ± 0.004 0.834 ± 0.006
SVM0.826 ± 0.0040.828 ± 0.0060.828 ± 0.006 0.834 ± 0.006

The performances are measured by the average Area Under the ROC in 5-fold cross-validations. The means and 95 % confidence intervals are included. Column names: None - no data scaling; Minmax - Min-max algorithm; Z-score - Z-score algorithm; GL - GL algorithm. Best performances are emphasized in bold

Table 3

Results of 16 datasets (16 binary classification tasks) using different data scaling algorithms and classification models

datasetMethodNoneMinmaxZscoreGL
GSE27899ILLRNA ± NANA ± NANA ± NANA ± NA
SVM0.770 ± 0.054 0.780 ± 0.134 0.780 ± 0.134 0.780 ± 0.134
Prostate CancerLR0.609 ± 0.0000.757 ± 0.1320.722 ± 0.078 0.765 ± 0.100
SVM0.635 ± 0.0780.748 ± 0.1560.748 ± 0.156 0.835 ± 0.114
Colon CancerLR0.577 ± 0.0000.877 ± 0.0640.877 ± 0.064 0.923 ± 0.054
SVM0.677 ± 0.1780.900 ± 0.0420.915 ± 0.034 0.946 ± 0.042
Lung CancerLR0.741 ± 0.0000.859 ± 0.0620.852 ± 0.052 0.896 ± 0.062
SVM0.778 ± 0.0520.859 ± 0.0340.859 ± 0.034 0.867 ± 0.040
Breast CancerLR0.773 ± 0.0000.918 ± 0.040 0.955 ± 0.000 0.955 ± 0.000
SVM0.827 ± 0.0400.909 ± 0.0000.909 ± 0.000 0.936 ± 0.050
LeukemiaLR0.710 ± 0.0000.956 ± 0.0300.965 ± 0.030 1.000 ± 0.000
SVM0.939 ± 0.0300.965 ± 0.0300.965 ± 0.030 1.000 ± 0.000
GSE29490LRNA ± NANA ± NANA ± NANA ± NA
SVM0.942 ± 0.0340.954 ± 0.0340.958 ± 0.034 0.979 ± 0.000
GSE25869LRNA ± NANA ± NANA ± NANA ± NA
SVM0.891 ± 0.0380.891 ± 0.0440.894 ± 0.034 0.897 ± 0.034
Breast tissueLR0.778 ± 0.0160.930 ± 0.010 0.930 ± 0.016 0.927 ± 0.016
SVM0.681 ± 0.2200.932 ± 0.0240.926 ± 0.020 0.942 ± 0.008
LSVTLR0.500 ± 0.0000.870 ± 0.0120.824 ± 0.038 0.915 ± 0.002
SVM0.500 ± 0.0000.873 ± 0.0360.858 ± 0.036 0.908 ± 0.006
DLBCLLR0.567 ± 0.0140.571 ± 0.0140.579 ± 0.032 0.602 ± 0.074
SVM0.594 ± 0.0820.592 ± 0.0640.585 ± 0.044 0.600 ± 0.100
MyelomaLR0.792 ± 0.0000.805 ± 0.0200.804 ± 0.018 0.805 ± 0.026
SVM0.794 ± 0.0060.809 ± 0.0140.807 ± 0.026 0.813 ± 0.020
ParkinsonsLR0.865 ± 0.006 0.894 ± 0.022 0.891 ± 0.0160.868 ± 0.006
SVM0.880 ± 0.016 0.884 ± 0.006 0.877 ± 0.0200.868 ± 0.016
WdbcLR0.878 ± 0.0020.965 ± 0.0100.963 ± 0.012 0.971 ± 0.012
SVM0.960 ± 0.0100.979 ± 0.0040.976 ± 0.002 0.980 ± 0.008
Indian LiverLR0.716 ± 0.0020.727 ± 0.0140.733 ± 0.008 0.736 ± 0.006
SVM0.719 ± 0.0060.720 ± 0.0140.718 ± 0.010 0.720 ± 0.008
Pima Indians DiabetesLR0.490 ± 0.0700.738 ± 0.0100.738 ± 0.010 0.740 ± 0.012
SVM0.734 ± 0.052 0.765 ± 0.008 0.753 ± 0.0400.748 ± 0.034

The performances are measured by the average proportion of correct classification in 5-fold cross-validations. The means and 95 % confidence intervals are included. Column names: None - no data scaling; Minmax - Min-max algorithm; Zscore - Z-score algorithm; GL - GL algorithm. Best performances are emphasized in bold

Results of 16 datasets (16 binary classification tasks) using different data scaling algorithms and classification models The performances are measured by the average Area Under the ROC in 5-fold cross-validations. The means and 95 % confidence intervals are included. Column names: None - no data scaling; Minmax - Min-max algorithm; Z-score - Z-score algorithm; GL - GL algorithm. Best performances are emphasized in bold Results of 16 datasets (16 binary classification tasks) using different data scaling algorithms and classification models The performances are measured by the average proportion of correct classification in 5-fold cross-validations. The means and 95 % confidence intervals are included. Column names: None - no data scaling; Minmax - Min-max algorithm; Zscore - Z-score algorithm; GL - GL algorithm. Best performances are emphasized in bold

Results and discussions

In most of the classification tasks, models learned with unscaled data have the worst performances. This is consistent with our expectations. In general, an appropriate data processing step (i.e., data scaling) is able to improve the accuracy of a model. Comparing the GL algorithm to the Z-score algorithm and the Min-max algorithm, in most tasks, models learned with the data scaled by the GL algorithm achieved the best average AUROC’s and the best average accuracies. Specifically, in the experiments, out of the 29 task-model cases (16 tasks; 2 models per task, but LR was not available in 3 tasks), the GL algorithm achieve the best AUROC’s in 27 cases and the best accuracies in 25 cases. The advantage of the GL algorithm was more notable in datasets with a small number of samples, such as colon, lung, and prostate, in which the existence of outliers may significantly affects the model performance. For example, in the colon cancer diagnostic task, while using the SVM classifier, the model learned using GL scaled data achieved a 0.822 AUROC, while the best AUROC achieved by the SVM classifier from other data scaling methods was 0.725; it was a 13.4 % of improvement. The improvements of AUROC using the data scaled by the GL algorithm were less notable in the tasks Parkinsons, Wdbc, Indian liver, and Pima Indians Diabetes. One of the reasons was that the number of samples in those data sets was relatively large, so the negative effects of outliers became less significant; another possible reason was that before the contributors uploaded the data set, they might have performed a preprocessing step to correct/remove abnormal samples. It is worthwhile to point out that, in three task-model cases (i.e., RL and SVM in the Parkinsons task, and SVM in the Pima Indians Diabetes task), although the GL algorithm achieved the best AUROC’s, it did not achieve the best accuracies. That might be due to the the threshold selection rule in our experiments; while the AUROC’s of different task-model cases were close, the ranking of the accuracies would be very sensitive to the selected threshold.

Conclusion

In this article, we present a simple yet effective data scaling algorithm, the GL algorithm, to scale data to an appropriate interval for diagnostic and classification modeling. In the GL algorithm, the values of a variable are scaled in the (0,1) interval using the cumulative density function of the variable. Since obtaining the functional expression of the CDF is difficult, a generalized logistic GL function is used to fit the empirical cumulative distribution function, and the optimized GL function is used for data scaling. The GL algorithm is intrinsically robust to outliers, so it is particularly suitable for diagnostic/classification models in clinical/medical applications, where the number of samples is usually small; it scales the data in a nonlinear fashion, which leads to improvement of accuracy. Experimental results show that models learned using data scaled by the GL algorithm generally outperform the ones using the Min-max algorithm and the Z-score algorithm, which are currently the most commonly used data scaling algorithms.
  17 in total

1.  Gene Expression Omnibus: NCBI gene expression and hybridization array data repository.

Authors:  Ron Edgar; Michael Domrachev; Alex E Lash
Journal:  Nucleic Acids Res       Date:  2002-01-01       Impact factor: 16.971

Review 2.  Prognostic factors in advanced cancer patients: evidence-based clinical recommendations--a study by the Steering Committee of the European Association for Palliative Care.

Authors:  Marco Maltoni; Augusto Caraceni; Cinzia Brunelli; Bert Broeckaert; Nicholas Christakis; Steffen Eychmueller; Paul Glare; Maria Nabal; Antonio Viganò; Philip Larkin; Franco De Conno; Geoffrey Hanks; Stein Kaasa
Journal:  J Clin Oncol       Date:  2005-09-01       Impact factor: 44.544

3.  GEMS: a system for automated cancer diagnosis and biomarker discovery from microarray gene expression data.

Authors:  Alexander Statnikov; Ioannis Tsamardinos; Yerbolat Dosbayev; Constantin F Aliferis
Journal:  Int J Med Inform       Date:  2005-08       Impact factor: 4.046

Review 4.  Machine learning applications in proteomics research: how the past can boost the future.

Authors:  Pieter Kelchtermans; Wout Bittremieux; Kurt De Grave; Sven Degroeve; Jan Ramon; Kris Laukens; Dirk Valkenborg; Harald Barsnes; Lennart Martens
Journal:  Proteomics       Date:  2014-01-21       Impact factor: 3.984

5.  Aberrant up-regulation of LAMB3 and LAMC2 by promoter demethylation in gastric cancer.

Authors:  Oh-Hyung Kwon; Jong-Lyul Park; Mirang Kim; Jeong-Hwan Kim; Han-Chul Lee; Hee-Jin Kim; Seung-Moo Noh; Kyu-Sang Song; Hyang-Sook Yoo; Sang-Gi Paik; Seon-Young Kim; Yong Sung Kim
Journal:  Biochem Biophys Res Commun       Date:  2011-02-21       Impact factor: 3.575

6.  Multiclass cancer diagnosis using tumor gene expression signatures.

Authors:  S Ramaswamy; P Tamayo; R Rifkin; S Mukherjee; C H Yeang; M Angelo; C Ladd; M Reich; E Latulippe; J P Mesirov; T Poggio; W Gerald; M Loda; E S Lander; T R Golub
Journal:  Proc Natl Acad Sci U S A       Date:  2001-12-11       Impact factor: 11.205

7.  Suitability of dysphonia measurements for telemonitoring of Parkinson's disease.

Authors:  Max A Little; Patrick E McSharry; Eric J Hunter; Jennifer Spielman; Lorraine O Ramig
Journal:  IEEE Trans Biomed Eng       Date:  2009-04       Impact factor: 4.538

8.  A functional methylome map of ulcerative colitis.

Authors:  Robert Häsler; Zhe Feng; Liselotte Bäckdahl; Martina E Spehlmann; Andre Franke; Andrew Teschendorff; Vardhman K Rakyan; Thomas A Down; Gareth A Wilson; Andrew Feber; Stephan Beck; Stefan Schreiber; Philip Rosenstiel
Journal:  Genome Res       Date:  2012-07-23       Impact factor: 9.043

9.  A genome-wide DNA methylation study in colorectal carcinoma.

Authors:  Muhammad G Kibriya; Maruf Raza; Farzana Jasmine; Shantanu Roy; Rachelle Paul-Brutus; Ronald Rahaman; Charlotte Dodsworth; Muhammad Rakibuz-Zaman; Mohammed Kamal; Habibul Ahsan
Journal:  BMC Med Genomics       Date:  2011-06-23       Impact factor: 3.063

Review 10.  Machine learning applications in cancer prognosis and prediction.

Authors:  Konstantina Kourou; Themis P Exarchos; Konstantinos P Exarchos; Michalis V Karamouzis; Dimitrios I Fotiadis
Journal:  Comput Struct Biotechnol J       Date:  2014-11-15       Impact factor: 7.271

View more
  10 in total

1.  Sensor Screening Methodology for Virtually Sensing Transmission Input Loads of a Wind Turbine Using Machine Learning Techniques and Drivetrain Simulations.

Authors:  Baher Azzam; Ralf Schelenz; Georg Jacobs
Journal:  Sensors (Basel)       Date:  2022-05-11       Impact factor: 3.847

2.  Cancer Classification Based on Support Vector Machine Optimized by Particle Swarm Optimization and Artificial Bee Colony.

Authors:  Lingyun Gao; Mingquan Ye; Changrong Wu
Journal:  Molecules       Date:  2017-11-29       Impact factor: 4.411

3.  Direct Prediction of the Toxic Gas Diffusion Rule in a Real Environment Based on LSTM.

Authors:  Fei Qian; Li Chen; Jun Li; Chao Ding; Xianfu Chen; Jian Wang
Journal:  Int J Environ Res Public Health       Date:  2019-06-17       Impact factor: 3.390

4.  How to support the application of multiple criteria decision analysis? Let us start with a comprehensive taxonomy.

Authors:  Marco Cinelli; Miłosz Kadziński; Michael Gonzalez; Roman Słowiński
Journal:  Omega       Date:  2020       Impact factor: 7.084

5.  A Machine Learning-Based Aging Measure Among Middle-Aged and Older Chinese Adults: The China Health and Retirement Longitudinal Study.

Authors:  Xingqi Cao; Guanglai Yang; Xurui Jin; Liu He; Xueqin Li; Zhoutao Zheng; Zuyun Liu; Chenkai Wu
Journal:  Front Med (Lausanne)       Date:  2021-12-01

6.  Rationale and performances of a data-driven method for computing the duration of pharmacological prescriptions using secondary data sources.

Authors:  Laura Pazzagli; David Liang; Morten Andersen; Marie Linder; Abdul Rauf Khan; Maurizio Sessa
Journal:  Sci Rep       Date:  2022-04-15       Impact factor: 4.379

7.  Using Social Media to Predict Food Deserts in the United States: Infodemiology Study of Tweets.

Authors:  Nekabari Sigalo; Beth St Jean; Vanessa Frias-Martinez
Journal:  JMIR Public Health Surveill       Date:  2022-07-05

8.  Prediction of Oil Palm Yield Using Machine Learning in the Perspective of Fluctuating Weather and Soil Moisture Conditions: Evaluation of a Generic Workflow.

Authors:  Nuzhat Khan; Mohamad Anuar Kamaruddin; Usman Ullah Sheikh; Mohd Hafiz Zawawi; Yusri Yusup; Muhammed Paend Bakht; Norazian Mohamed Noor
Journal:  Plants (Basel)       Date:  2022-06-27

9.  Reproducibility and Repeatability of Coronary Computed Tomography Angiography (CCTA) Image Segmentation in Detecting Atherosclerosis: A Radiomics Study.

Authors:  Mardhiyati Mohd Yunus; Akmal Sabarudin; Muhammad Khalis Abdul Karim; Puteri N E Nohuddin; Isa Azzaki Zainal; Mohd Shahril Mohd Shamsul; Ahmad Khairuddin Mohamed Yusof
Journal:  Diagnostics (Basel)       Date:  2022-08-19

10.  Quantifying the impact of public omics data.

Authors:  Yasset Perez-Riverol; Andrey Zorin; Gaurhari Dass; Manh-Tu Vu; Pan Xu; Mihai Glont; Juan Antonio Vizcaíno; Andrew F Jarnuczak; Robert Petryszak; Peipei Ping; Henning Hermjakob
Journal:  Nat Commun       Date:  2019-08-05       Impact factor: 14.919

  10 in total

北京卡尤迪生物科技股份有限公司 © 2022-2023.