Literature DB >> 24564916

A new approach to enhance the performance of decision tree for classifying gene expression data.

Md Hassan, Ramamohanarao Kotagiri.   

Abstract

BACKGROUND: Gene expression data classification is a challenging task due to the large dimensionality and very small number of samples. Decision tree is one of the popular machine learning approaches to address such classification problems. However, the existing decision tree algorithms use a single gene feature at each node to split the data into its child nodes and hence might suffer from poor performance specially when classifying gene expression dataset.
RESULTS: By using a new decision tree algorithm where, each node of the tree consists of more than one gene, we enhance the classification performance of traditional decision tree classifiers. Our method selects suitable genes that are combined using a linear function to form a derived composite feature. To determine the structure of the tree we use the area under the Receiver Operating Characteristics curve (AUC). Experimental analysis demonstrates higher classification accuracy using the new decision tree compared to the other existing decision trees in literature.
CONCLUSION: We experimentally compare the effect of our scheme against other well known decision tree techniques. Experiments show that our algorithm can substantially boost the classification performance of the decision tree.

Entities:  

Year:  2013        PMID: 24564916      PMCID: PMC4044984          DOI: 10.1186/1753-6561-7-S7-S3

Source DB:  PubMed          Journal:  BMC Proc        ISSN: 1753-6561


Introduction

There are a lot of diseases available which needs to investigate more to understand them better. Due to lack of understanding of diseases e.g. breast cancer, often different outcome is shown for the same treatment applied to patients with similar clinical symptoms. Patient specific treatment could be one of the solutions to overcome this, however the varying outcome might be due to the limited knowledge about the relationship between treatment, disease development and clinical symptoms. The advent of gene expression data has opened up an opportunity to better understand diseases. However, to analyze the sheer amount of gene expression data is somehow complex and challenging due to the large dimension and small number of samples. The ultimate aim of analysis the data is to better diagnose and prognosticate diseases which in turn would provide an insight understanding the clinically relevant disease categories. Hence, an automated but simple computational technique is required to develop to classify diseases accurately using such high dimensional gene expression data. Among the existing machine learning techniques, decision tree is a well known and easy to understand classification technique [1,2]. Its construction cost scales well for many features and instances and it is easily interpretable and require few parameter settings. Unfortunately, not many studies are available that used decision tree to classify gene expression data. This may be attributed due to the poor performance because of the limitation of dealing with high dimension but small number of instances. In bioinformatics, one of the general goals is to apply computers for analysis of gene expression data and classify them to appropriate diseases/disease status accurately. In this paper we describe our own modest efforts towards this goal through developing a new decision tree. Decision tree is typically induced by selecting the gene feature for a node that has the least impurity when compared to the other gene features in the dataset. The gene expression dataset at the node is split into its child nodes using the selected gene feature such that the impurity is reduced as far as possible. Thus there are two phases and two issues that need to be considered while inducing a decision tree given the gene expression dataset with class levels. The phases are described in brief here: - Node selection: A decision tree is induced first by choosing a node as a root of the tree. For example, to classify the two types of lesion benign and malignant, we identified that the gene TFF3 can discriminate the patients with the least impurity. Hence, TFF3 gene is selected as root of the tree that divides the complete dataset into two or more subgroups with an aim to classify the dataset. The classification performance varies with varying choice of impurity measurement that would guide to induce the decision tree. - Splitting threshold: Once the node is selected, the dataset needs to be partitioned by choosing an optimal threshold value of the selected node. For example, we divide the complete dataset into two groups where in one group TFF3 >0.54 (i.e., the splitting threshold = 0.54) and in another group TFF3 ≤ 0.54. And we achieve the best classification performance for the above mentioned threshold among the performances by choosing other threshold values. Thus, the optimal splitting threshold for the node TFF3 will be 0.54. The issues in inducing decision tree are described in brief here: - Stopping criteria In the process of inducing a decision tree the stopping criteria must be chosen to stop growing the tree at a suitable level, such that a better classification performance is achieved. - Labeling terminal nodes Terminal/leaf nodes are those nodes at which point growing of the tree is stopped, i.e., terminal nodes do not have any children. Usually class label (e.g., benign or malignant) is decided based on the labeling of the terminal nodes. Several techniques have been applied over time to measure the impurity and the most popular ones are the entropy-like uncertainty measures (i.e., gain ratio, information gain and gini index). Recently, Hossain et al. [3,4] developed a decision tree called ROC-tree, where Area Under Curve (AUC) is applied as an alternative to the entropy-like uncertainty to attain an accurate classification of gene expression data. However, like other existing decision trees in ROC-tree, each node is formed using a single gene feature. The feature that has the maximum AUC value with respect to the associated data is selected for a node. However, when more than one gene are combined using a linear function at each node of the tree, it can provide potentially even higher AUC value at each node compared to the single gene. Hence using multiple gene features for decision making at each node can improve performance substantially. In this paper we combined two genes together at each of the node of a decision tree to classify gene expression data. We call such trees as bi-variate decision trees. We further motivate with the following example: Example 1 Let us consider a gene expression dataset consisting of a large number of gene features A1, A2, A3, ......, A200 which is 0.6. This feature having the highest AUC among the all gene features, is selected as the node of the ROC-tree. However, a linear combination of A450 and A29 (here, we consider a function to map the multiple gene features to a derived feature) provides an AUC of 0.75 that is higher than the maximum AUC of any single gene feature. Instead of building a tree using A200 as a node decision variable we propose to use the linear combination of A450 and A29 as the node of the tree. As shown above, the limitation of ROC-tree is, it only uses one gene at one node. In this paper, to alleviate this problem, we consider more than one gene expression at each node. In order to use multiple gene features at each node, we use least square estimation (LSE) to map the multiple features to one derived feature. Which is used to estimate the AUC value as in ROC-tree. To split the dataset at the node we consider using a loss function known as Hinge-Rank-Loss [5]. Since, in this paper we restrict to use two gene features as a node to induce the decision tree, we call the new decision tree as bi-variate ROC-tree (BVROC-tree).

Preliminaries

The receiver operating characteristic Curve

A receiver operating characteristics (ROC) curve, first used in signal detection theory, is used to evaluate the discriminative performance of a binary classifier. This is achieved by plotting the curve of the sensitivity vs. (1 − specificity) for the binary classifier system by varying the discrimination threshold. The area under the ROC curve (AUC) can be computed using the trapezoidal integration. The maximum value of AUC can be 1 which indicates perfect classification whereas a value close to 0 indicates poor performance.

ROC-tree

Previous work known as ROC-tree [3,4] has established the use of an ROC curve for node selection, to identify the discriminative features in the dataset and to induce a decision tree. First, the ROC curve is plotted for each of the pairs formed by each of the features and the class label. This means treating a single feature as a classifier and calculating the classification in terms of the sensitivity and specificity by varying the operating point. For each feature, the AUC is calculated and the feature with the highest AUC is selected for the node of the tree. The splitting threshold is chosen by taking each value of the selected feature from the dataset, and then attempting to classify based on a chosen value and calculating the misclassification rate for that value. The value with the minimum misclassification rate is finally chosen as the splitting threshold.

Bi-variate ROC-tree: BVROC-tree

We now describe in more detail, the steps in our algorithm for building the BVROC-tree.

Selection of more than one feature as node of the tree

In ROC-tree a single feature is selected for a node that provides the maximum AUC among the all other features. According to the following theorem, if we map any single feature to a derived feature using any monotonic function f(.) the area under curve is not affected. Theorem 1 The AUC(A) = AUC(f(A)), where, AUC(A) is area under curve using a single feature A and f(.) is any monotonic function. The implication of the theorem 1 is in building a bi-variate decision tree we do not need to consider mapping of any single feature. However, to use more than one feature at each node the set of features is mapped to a single feature using a linear function f(.) as in Eq. 1. here, Ds = the dataset with several features selected from the training dataset D. represents the co-efficient and is the set of derived single feature values. The values of the co-efficient are obtained by applying the least square estimation (LSE) formula. Let us consider, D= the dataset that contains all the values of the multiple selected features {A, A}. Thus, the values of is obtained using Eq. 2. where, and , m = total number of data instances. Initially, the ROC curve is plotted for each of the pairs formed by each of the features along with the class label and the corresponding AUC is computed. The feature that has the highest AUC is identified. Let us assume this feature is A. This selected feature is then paired with each feature in the remaining feature set and the corresponding linear co-efficient is computed using LSE formula. For one such pair {A, A}, the co-efficient is calculated using Eq. 2. We compute the values of by using the co-efficient values in Eq. 1. Then the AUC for the pair of {Y, } is calculated. This AUC value indicates the level of influence of the corresponding pair of features in classifying the dataset. The feature set with the highest AUC value is selected as the node of the tree. Algorithm 1 presents pseudo code for selecting the most influential feature paired with another feature that has the highest AUC value, as a node in building the decision tree. Algorithm 1: selectGenes: Selects the best combination of gene features based on AUC Input: the training dataset: D, desired class labels Y, the best AUC value so far: bestAUC, the set of gene features that has generated bestAUC: GENE, the maximum number of gene features to be mapped onto a single value: limit Comment(for BVROC-tree limit = 2) Output: the derived single feature values: , the set of the features that generates the best AUC: selectedGenes, the best AUC: bestAUC if |GENE| >= limit then selectedGenes = GENE; bestAUC = bestAUC; = the value obtained for selectedGenes; return; end if GENE=∅ then for each gene feature Ain D do calculate for the pair of {A, Y}; end bestAUC = max(); GENE = the ith gene feature Athat generates bestAUC; else for each gene feature Apaired with the gene feature or gene feature set GENE do if Ais not in GENE then D= The dataset of all values for the gene features: A∪ gene; ; ; calculate for the pair of ; end end bestAUC = max(); selectedGenes = the gene features A∪ GENE that generate bestAUC; = the value obtained for gene features A∪ gene; end [, selectedGenes, bestAUC] = SELECTGENES(D, Y, bestAUC, selectedGenes, limit); Based on selection of a suitable splitting threshold (to be discussed shortly) for the selected set of genes, the dataset is then divided into two subsets. Each of the subsets is then used to further induce the tree in a similar way. Example 2 Let us consider a dataset D of m examples, where each example comprises k gene features: A1, A2, A3, ..., A1 ≤ β ≤ k and β ≠ α paired with the initially selected feature Aα. Consider (where ) is the set of linear co-efficients for this pair of features {A}. The predicted class labels are , where The AUC{Y, }. If, AUC{A} is selected as the node. If, AUC.

Splitting threshold

Splitting threshold is the value of the selected feature that discriminates the classes. This is an important step in inducing the tree to select the best threshold value such that misclassification of instances is minimum. To select the splitting threshold we use the HRL function [4,5] in our BVROC-tree. The HRL is a loss function which measures the loss or degree of error of a given classifier's output for a splitting threshold value. Consider a classifier whose output is real numbers. Assume that there are 8 data instances and the corresponding classified outputs by the classifier are: , while the desired class labels for the corresponding instances are . The outputs are ranked according to the values as in Table 1:
Table 1
Output in actual ordering:-1-0.4-0.7-0.90.010.50.91
Output (sorted):-1-0.9-0.7-0.40.010.50.91

Rank:12345678

Desired Output:-1-1+1-1-1-1+1+1
For a threshold value θ; the data instances are labeled either as -1 or +1 using classifier output as follows: Considering θ = -0.4, the labeling of the data instances are obtained as in Table 2:
Table 2
Output (sorted):-1-0.9-0.7-0.40.010.50.91


Rank:12345678


Desired Output:-1-1+1-1-1-1+1+1


Predicted Class Label:-1-1-1-1+1+1+1+1


TN:


FP:


TP:


FN:


Rankdistancepenalty:00201200
In the HRL function, if the classifier's output is greater than θ for an instance whose desired class label is -1 then it is counted as false positive (FP), otherwise it is a true negative (TN). Similarly, for a data instance with a desired class label +1, if the classifier's output is less than or equals to θ then it is a false negative (FN), otherwise it is a true positive (TP). The rank distance penalty for each FN or TP instance corresponds to its distance in terms of ranks from the threshold. The HRL is the sum of all rank distance penalties. In the above example the total penalty for the false positives is 2 and the total penalty for the false negatives is 1 + 2 = 3, and the overall HRL is 2 + 3 = 5 [5]. In selecting the splitting threshold, we attempt to classify the dataset considering each value in the ( is obtained for the feature computed through linear combination of more than one gene). For each chosen value θ the corresponding HRL is computed. The θ that generates the minimum HRL is selected as the splitting threshold. Example 3 Let us consider the dataset D of m instances, where each instance has k features: A1, A2, A3, ..., A{A}, where 1 ≤ α ≤ k, 1 ≤ β ≤ k and α ≠ β, has the highest AUC and is selected to be the node in the tree. The set of features {A} is projected to a set of single values where Each value of is sorted and ranked. Let us rank the values without loss of generality as in Table 3:
Table 3
Yα,β:y1y2y3...ym
Rank:123...m
Then for each value of , we form the rule: where 1 ≤ j ≤ m. We then attempt to classify the dataset with this rule, and note the HRL. Then the value with the minimum HRL is selected as the splitting threshold for the pair of features {A}. Pseudo code for calculating the splitting threshold is presented in Algorithm 2.

Stopping criterion

To stop growing the tree, the AUC of the selected combination of genes is tested. If the AUC value is equal to 1, yields that the combination of genes can classify the training dataset accurately with 100% sensitivity and 100% specificity. Therefore, there is no need to grow the tree further at this node. However, to avoid over fitting, we choose an AUC value ≥ 0.95 in order to stop growing the tree for a node. This facilitates us not to grow the tree for a smallest subset of the training dataset.

Labeling the leaf nodes

Each leaf node is labeled with a class label which is obtained by the majority of the class instances in that node. Algorithm 3 presents the pseudo code for inducing the BVROC-tree using the functions presented in Algorithm 1 and Algorithm 2.

Related work

Several methods for constructing multivariate decision trees exist. In this section we describe some of the existing multivariate decision trees. Linear discriminant analysis(LDA) has been used to combine multiple features at each node of the decision tree known as linear discriminant tree (LDT) developed by [6]. In this process, the impurity measurement is same as the C4.5 except that the splitting of combination of feature is done using LDA. It is claimed that the LDA based multivariate decision Algorithm 2: CalculateSplitThreshold Input: Y : The actual class label, : The derived value from more than one gene feature Output: θ: Splitting threshold for the node HRL = ∅; θ = ∅; Sort and rank ; for each rank r do splitThreshold = the value of that corresponds to r; D= ∅; D= ∅; for each do if ≤ splitThreshold then D= D∪ {, Y} end D= D∪ {, Y} end TotalHRL = ∅; for each YD if Y= +1 then TotalHRL = TotalHRL + |D+ 1; Comment: |Drepresents the total number of instances in Dand the value of i ranges from 1 to |D|; end end for each YD if Y= -1 then TotalHRL = TotalHRL + i; Comment: the value of i ranges from 1 to |Dpos|; end if TotalHRL < HRL then HRL = TotalHRL; θ = splitThreshold; end end end return θ; tree can learn faster than other multivariate trees, however, the classification performance is no better than the other multivariate trees. Breiman et al. [1] first introduced Classification And Regression Tree abbreviated CART, where multiple features are combined at a node of the tree. The algorithm looks for a splitting point followed by a linear test that achieves the least impurity. The limitation of CART is that, it can get stuck in a local minimum since the algorithm stops searching for the further combination of features when the impurity gets an increase in next to the current execution of above process. However, OC1 [7] a variant of CART solves this problem where the parameter update method follows the CART method, but includes random perturbations Algorithm 3: BVROC-tree Input: The matrix of training examples: ; the vector of class labels: Y Output: T: A BVROC-tree decision tree if then return a single node with ∅; end if Y consists of records all with the same value for the class label then return a single leaf node with that value; end [, GeneSet, AUC] = SELECTGENES(D, Y, 0, ∅, 2); θ = CALCULATESPLITTHRESHOLD(Y, ); Assign and as the subsets of consisting of records respectively with the value greater than or equal to and less than θ; Assign Yand Yas the subsets of Y that correspond to the examples in and respectively; Recursively apply BVROC-tree to subsets {, Y} and {, Y} until they are empty or the stopping criteria are met; return a tree with root or node labeled and arcs labeled a1 and a2, going respectively to the trees BVROC-tree(, Y, Y of the parameters when a local minimum is reached and restarts from random location. Logistic Model Tree (LMT) is another multivariate decision tree developed by [8], where features are combined using linear logistic regression and the selection of features and splitting are done following the same process as in C4.5. Our BVROC-tree described in this paper is different to all other existing trees in that we use a novel method based on AUC and the linear mapping function (using least square estimation) to select the combination of features to form a node. We also use a splitting criteria based on HRL as was used in ROC-tree [4](the predecessor of our BVROC-tree).

Experimental setup and datasets

For the experimental analysis, we compare against a number of well known simple decision tree induction techniques: ROC-Tree a predecessor of the proposed method, C4.5 [9], Ferri et al.'s [10] AUCsplit technique for decision trees, ADTree [11], Random Forest [12], REPTree and Random Tree. We also compare against the non-decision tree classifiers: Naïve Bayes and k-NN.

Datasets and validation scheme

Each of the techniques is applied on seven gene expression datasets. The properties of the datasets are illustrated in Table 1. To evaluate the performance of BVROC-Tree, a 10-fold cross validation (CV) scheme is used 5 times for all datasets. Datasets. Properties of the datasets used in this study

Results and discussion

The classification accuracies for all techniques on the considered gene expression datasets are presented in Table 5. The classification performances in AUC are presented in Table 6. In each table, the best performances among that of the reported classifiers are marked in bold.
Table 5

Performance in accuracy.

MethodGE1GE2GE3GE4GE5GE6GE7
BVROC-Tree66.85 ± 3.2684.16 ± 0.0298.9 ± 0.9052.38 ± 15.0689.95 ± 3.3197.57 ± 1.3377.97 ± 0.03
ROC-Tree64.13 ± 4.5386.26 ± 0.0598.34 ± 0.8938.10 ± 5.9588.24 ± 2.3394.44 ± 2.9652.63 ± 0.07
AUCsplit56.96 ± 0.0981.93 ± 0.0296.14 ± 1.3634.01 ± 2.8782.47 ± 3.9681.61 ± 3.2850.53 ± 0.07
C4.553.48 ± 5.6778.04 ± 1.8393.21 ± 1.0741.7 ± 4.7479.42 ± 5.4584.39 ± 2.0139.00 ± 5.48
ADTree55.22 ± 5.8789.89 ± 2.8095.14 ± 2.1743.10 ± 4.8086.76 ± 2.6388.82 ± 5.0649.00 ± 4.18
REPTree58.26 ± 2.8378.64 ± 2.9995.01 ± 1.7944.23 ± 5.1880.88 ± 3.3387.64 ± 4.4957.00 ± 13.51
Random Tree51.74 ± 1.8265.53 ± 3.2492.03 ± 5.6246.40 ± 6.7462.50 ± 5.2381.64 ± 11.4747.00 ± 16.43
Random Forest48.6 ± 4.8581.45 ± 4.6292.98 ± 5.3647.52 ± 7.1980.88 ± 2.5682.13 ± 10.3343.00 ± 10.37
Naïve Bayes50.60 ± 5.8288.60 ± 2.2693.85 ± 5.2746.15 ± 7.4455.88 ± 4.7684.85 ± 11.2662.00 ± 4.47
k-NN47.10 ± 5.3186.80 ± 2.2993.73 ± 4.8848.23 ± 8.6178.68 ± 4.7884.68 ± 10.4244.00 ± 4.18

Table representing the overall accuracy for gene expression datasets using 5 × 10 fold cross-validation scheme

Table 6

Performance in AUC.

MethodGE1GE2GE3GE4GE5GE6GE7
BVROC-Tree0.69 ± 0.040.82 ± 0.040.93 ± 0.030.49 ± 0.220.89 ± 0.040.97 ± 0.010.77 ± 0.06
ROC-Tree0.64 ± 0.090.79 ± 0.050.93 ± 0.040.29 ± 0.050.89 ± 0.330.95 ± 0.010.54 ± 0.08
AUCsplit0.57 ± 0.100.78 ± 0.020.92 ± 0.020.30 ± 0.060.81 ± 0.040.82 ± 0.080.49 ± 0.11
C4.50.56 ± 0.050.78 ± 0.030.87 ± 0.030.39 ± 0.040.78 ± 0.060.83 ± 0.020.45± 0.05
ADTree0.57 ± 0.040.96± 0.020.92 ± 0.060.36 ± 0.050.84 ± 0.030.90 ± 0.080.50 ± 0.06
REPTree0.59 ± 0.060.80 ± 0.020.91 ± 0.050.40 ± 0.070.79 ± 0.040.88 ± 0.070.61± 0.08
Random Tree0.55 ± 0.030.64 ± 0.040.85 ± 0.120.43 ± 0.090.63 ± 0.050.81 ± 0.140.53 ± 0.15
Random Forest0.54 ± 0.050.89 ± 0.040.88 ± 0.120.43 ± 0.090.79 ± 0.030.83 ± 0.130.47 ± 0.21
Naïve Bayes0.55 ± 0.050.93± 0.020.89 ± 0.120.42 ± 0.090.53 ± 0.050.86 ± 0.140.65 ± 0.11
k-NN0.53 ± 0.030.93 ± 0.020.91 ± 0.110.42 ± 0.090.79 ± 0.050.87 ± 0.130.51 ± 0.09

Table representing the AUC result for gene expression datasets using 5 × 10 fold cross-validation scheme

Performance in accuracy. Table representing the overall accuracy for gene expression datasets using 5 × 10 fold cross-validation scheme Performance in AUC. Table representing the AUC result for gene expression datasets using 5 × 10 fold cross-validation scheme

Classification performance of BVROC-tree

The classification performance of BVROC-Tree on the gene expression datasets clearly outperforms that of all the other reported decision trees (see Table 2). ROC-Tree, the predecessor of BVROC-Tree, have been reported in a previous study to perform consistently better classification in terms of accuracy and AUC measurement compared with other variants of decision tree classifiers including C4.5. Interestingly, the classification performance of BVROC-Tree is even better than its predecessor ROC-Tree. More specifically, for the datasets GE4 and GE7 this performance improvement of the BVROC-tree is respectively at least 37% and 48% better than the ROC-tree. Furthermore, the performance improvement of the BVROC-tree over the other best performing decision trees is at least 17%, 3%, 10%, 4%, 10% and 37% for the datasets GE1, GE3, GE4, GE5, GE6, and GE7 respectively. This is evident that one of the reasons for this better performance is due to the application of more than one feature at each node of the tree along with the better computation of discriminative power of features used when building the tree and better splitting criteria that balances the loss and gain.

Comparison of AUC values

We also computed the overall AUC value of all classifiers considered in this paper (see Table 3), resulting from the 5 × 10-fold cross validation over the gene-expression datasets. The AUC values of BVROC-tree is as good as of ROC-tree for the datasets GE3, GE5 and GE6. For the other datasets the AUC values of BVROC-tree are much higher than that of ROC-tree. As the classification accuracy, the AUC values of ADTree for datasets GE2 is the best among all classifiers. However, for other datasets BVROC-tree and its predecessor ROC-tree outperform ADTree. Specifically, for six of the seven gene expression datasets, we see the BVROC − tree has better AUC than other classifiers.

Comparison of tree sizes

The size of each tree built using the BVROC-tree method always smaller compared to the other decision trees for all the datasets considered in this paper. We see in Table 4 that, the range of the size of BVROC-tree is in between 2 to 3. While this range for C4.5 is in between 3 to 39. Although the range of the size of REPTree is from 1 to 51, the performance of REPTRee is much lower than the performance of BVROC-tree (see Table 7). Since, in BVROC-tree, a maximum two features are used to form a node, the range of features used in inducing BVROC-tree is from 4 to 6 features. The combination of multiple features at each node using linear mapping can achieve a better discriminant strength compared to the single feature, and hence using a smaller tree size as induced in BVROC-tree, a better classification performance is achieved when compared to the other decision trees.
Table 4

Datasets.

DatasetData collected fromNo. of genesTotal SamplesClassification of:
GE1Critchley-Thorne et al. [13]20,84546Metastatic Melanoma

GE2Zizhen et al. [14]4133101Marfan Syndrome

GE3Gordon et al. [15]12,533181Lung Cancer

GE4Singh et al. [16]12,60021Prostate cancer

GE5Singh et al. [16]12,600136Prostate cancer

GE6Golub et al. [17]7,12972Leukemia

GE7Notterman et al. [18]22,27819Colorectal Adenoma

Properties of the datasets used in this study

Table 7

Tree size.

Tree size

BVROC-tree ROC-tree C4.5ADTreeREPTreeRandom Tree
GE135728452

GE226522318

GE337726461

GE427530327

GE53161032586

GE626431342

GE725328121

Comparison of the sizes of the trees using all the data instances as training data

Tree size. Comparison of the sizes of the trees using all the data instances as training data

Conclusion

We proposed a new decision tree BVROC-tree which considers more than one feature at each node. The selection of features at each node makes use of linear mapping of multiple features to obtain a derived feature whose AUC values can be easily computed. Our experimental results show that the BVROC-tree outperforms several state of the art competing classifiers both in accuracy and AUC values. Our experimental results show that our method is very effective for gene expression data with high number of dimensions. We believe that our proposed algorithm is a very practical and useful solution in classifying gene expression data. Since the classification accuracy has not been achieved as 100%, there exist scopes to enhance the BVROC-tree. In BVROC-tree we restricted the algorithm to combine a maximum of two features at each node of the tree. The classification performance could be improved by combining more than two features at each node, however in this case an intelligent method must be introduced such that the computational complexity remains reasonable. We plan to replace the linear mapping with any existing non-linear mapping (e.g., through application of polynomial kernel or gaussian kernel) of multiple features as a node of the decision tree with an aim to further enhance the performance of the BVROC-tree.

Competing interests

MRH has received grant from Deanship of Scientific Research, King Fahd University of Petroleum and Minerals in conducting the research. RK received support from the University of Melbourne for the cost of the publication. All authors declare that there is no financial relationships other than the above mentioned ones with any organisations that might have an interest in the submitted work in the previous three years; no other relationships or activities that could appear to have influenced the work described in this paper.

Authors' contributions

The idea of the BV-ROC was generated by MRH. MRH implemented the method and prepared the manuscript. RK helped in preparing the manuscript.
  6 in total

1.  Translation of microarray data into clinically relevant cancer diagnostic tests using gene expression ratios in lung cancer and mesothelioma.

Authors:  Gavin J Gordon; Roderick V Jensen; Li-Li Hsiao; Steven R Gullans; Joshua E Blumenstock; Sridhar Ramaswamy; William G Richards; David J Sugarbaker; Raphael Bueno
Journal:  Cancer Res       Date:  2002-09-01       Impact factor: 12.701

2.  Transcriptional gene expression profiles of colorectal adenoma, adenocarcinoma, and normal tissue examined by oligonucleotide arrays.

Authors:  D A Notterman; U Alon; A J Sierk; A J Levine
Journal:  Cancer Res       Date:  2001-04-01       Impact factor: 12.701

3.  Molecular classification of cancer: class discovery and class prediction by gene expression monitoring.

Authors:  T R Golub; D K Slonim; P Tamayo; C Huard; M Gaasenbeek; J P Mesirov; H Coller; M L Loh; J R Downing; M A Caligiuri; C D Bloomfield; E S Lander
Journal:  Science       Date:  1999-10-15       Impact factor: 47.728

4.  Gene expression correlates of clinical prostate cancer behavior.

Authors:  Dinesh Singh; Phillip G Febbo; Kenneth Ross; Donald G Jackson; Judith Manola; Christine Ladd; Pablo Tamayo; Andrew A Renshaw; Anthony V D'Amico; Jerome P Richie; Eric S Lander; Massimo Loda; Philip W Kantoff; Todd R Golub; William R Sellers
Journal:  Cancer Cell       Date:  2002-03       Impact factor: 31.743

5.  A Marfan syndrome gene expression phenotype in cultured skin fibroblasts.

Authors:  Zizhen Yao; Jochen C Jaeger; Walter L Ruzzo; Cecile Z Morale; Mary Emond; Uta Francke; Dianna M Milewicz; Stephen M Schwartz; Eileen R Mulvihill
Journal:  BMC Genomics       Date:  2007-09-12       Impact factor: 3.969

6.  Down-regulation of the interferon signaling pathway in T lymphocytes from patients with metastatic melanoma.

Authors:  Rebecca J Critchley-Thorne; Ning Yan; Serban Nacu; Jeffrey Weber; Susan P Holmes; Peter P Lee
Journal:  PLoS Med       Date:  2007-05       Impact factor: 11.069

  6 in total

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