SlideShare a Scribd company logo
1 of 4
Download to read offline
International Journal of Technical Research and Applications e-ISSN: 2320-8163,
www.ijtra.com Volume 3, Issue 3 (May-June 2015), PP. 130-133
130 | P a g e
PERFORMANCE EVALUATION OF DIFFERENT
CLASSIFIER ON BREAST CANCER
Rashmi Nagpal1, Rashmi Shrivas2, Mridu Sahu3, Saransh Shirke4
1
Department of Computer Science and Engineering, MATS, University Raipur.
2
Departmet of Electronics and Telecommunication, NIT Raipur, C.G., India.
3
Departmet of Electrical Engineering, NIT Raipur, C.G., India
rashmi.nagpal006@gmail.com, mrisahu.it@nitrr.ac.in
Abstract. In this work article founds the best classifier for
breast cancer diseases classification, the survey shows it is one
of the major diseases in India. For classification of Breast
cancer is a multivariate data analysis it is big challenge among
researcher to classify multivariate data because more than one
decision variables present .The proposed work founds which
classifier is best among 48 different categories of classifier and
it founds logistics function is best among all the classifiers, it
shows 80.9524 accuracy. Logistics function is also called logistic
regression; it is a statistical method to analysis breast cancer
data set.
Keywords: Breast Cancer, Classification, Multivariate Data,
Logistic Function.
I. INTRODUCTION
Breast Cancer is developed from breast tissues [1].
There are several types of breast cancer. There are three
ways by which cancer can spreads in body firstly by
Tissues, by Lymph System or by Blood[2].There are many
stages of breast cancer it is shown in
literature[3][4][5].Stages description is shown in
Table[1].The proposed article is finding best classifier for
different types of breast cancer ,the data set description
shown in table [2].The first type is Carcinoma is a type of
cancer that develop from epithelial cells[6],second type is
Fibro-adenoma of non cancerous tumors[7],third is
Mastopathy is cover all types of breast changes[8].Forth
type is Glandular epithelial cells are specialized epithelial[9]
.Fifth type is Connective tissues that supports connects or
spreads different types of tissues and organ in the
body[10].Sixth type is Adipose tissues or fat its role is to
store energy in the form of fat[11] .The proposed article
finds dataset in to six different classes it processed on 48
different classifiers.
The 48 classifier comes from different categories like
tree based, naïve based, function based, meta (Combination
of more than two classifier) etc, the function based classifier
performing well for present breast cancer dataset. In recent
survey by breast cancer.org, shown in figure [1], says that in
India many persons having this problem. Maximum patient
found in stage I and stage IIA.
Table1: Stages of Breast Cancer
Stages Definition
Stage 0 It is a condition in which abnormal cells are found in breast.
Stage I In this stage tumor is 2 centimeters or smaller. In this stage the smaller
clusters of breast cancer cells found in lymph nodes
Stage II It is also divided into two parts 2A and 2B, 2A describes invasive
breast cancer, 2B the tumor is larger than 2 centimeter but no larger than
5centimeter.
Stage III It is also divided into three parts 3A, 3B and 3C.In 3A tumor is larger
than 5 centimeter, 3B tumor may be any size and 3C there may be no
sign of cancer in the breast.
Stage IV In this cancer has spread to other organs of the body, most often the
bones, lungs, liver, or brain.
Figure 1: Survey Report For Breast Cancer
II. CORPUS (BREAST CANCER DATASET)
In this paper microarray dataset used it is gene
expression dataset. The gene expression data set contains
numeric values of genes, these expressions are either
positive or negative. The proposed article uses UCI dataset
and it is a one of the machine learning repository .The
dataset having nine features and one class attribute and the
description of data set is given below. The dataset is
multivariate and attribute characteristics is integer and
number of instances are 106[12] [13].
Instances Count
Car Carcinoma 21
Fad Fibro-adenoma 15
Mas Mastopathy 18
Gla Glandular 16
Con Connective 14
Adi Adipose 22
Total 106
Table 2: Class Labels of Breast Cancer Dataset
International Journal of Technical Research and Applications e-ISSN: 2320-8163,
www.ijtra.com Volume 3, Issue 3 (May-June 2015), PP. 130-133
131 | P a g e
Feature Description
I0 Impedivity (ohm) at zero frequency
PA500 Phase angle at 500 KHz
HFS High-frequency slope of phase angle
DA Mpedance distance between spectral ends
AREA Area under spectrum
A/DA Area normalized by DA
MAX IP Maximum of the spectrum
DR Distance between I0 and real part of the
Maximum frequency point
P Length of the spectral curve
Table 3: Attributes Of Breast Cancer Dataset
III. EXTREME VALUE REMOVAL
The extreme value removal is a part of data cleaning
step for data mining. The procedure for applying the
extreme value theorem is to first establish that the function
is continuous on the closed interval [14]. The next step is to
determine the critical points in the given interval and
evaluate the function at these critical points and at the end
points of the interval. If the function f(x) is continuous on
closed interval [a, b] then f(x) has both a maximum and a
minimum on [a, b] [15]. In proposed method inter-quartile
range [IQR] is used for extreme value calculations. IQR is
major of variability based on dividing the dataset into
quartiles [16].
Proposed article found two instances after removal of
this breast cancer data set contain 104 instances for
classification task.
IV. CLASSIFICATION
Classification is task performed with data-mining tools;
it is process of creating groups for similar data. Instances are
present in similar groups are highly correlated with each
other. Machine learning algorithms like tree based,naïve
based ,function based etc performing groping of instances
that are similar to each other placed in same class and
instances that are dissimilar with each other placed in
another class. Inter Class dependency is low and intra class
dependency is high the instances placed using classification
algorithms [17].Proposed article found, function based
classifier like logistic regression is a good classifier the
performance of this is better than other Categories of
classifier.
V. FUNCTION BASED LOGISTIC
(FBS)CLASSIFICATION
FBS is using a multinomial logistic regression model
with a ridge estimator.The Ridge value in the log-
likelihood.If there are k classes for n instances with m
attributes, the parameter matrix B to be calculated will be an
m*(k-1) matrix[18].
The probability for class j with the exception of the last class
is:
Pj(Xi) = exp(XiBj)/((sum[j=1..(k-1)]exp(Xi*Bj))+1)………. Eq(1)
The last class has probability
1-(sum[j=1..(k-1)]Pj(Xi)) = 1/((sum[j=1..(k-1)]exp(Xi*Bj))+1…. Eq(2)
The (negative) multinomial log-likelihood is thus
L = -sum[i=1..n]{
sum[j=1..(k-1)](Yij * ln(Pj(Xi))) +(1 - (sum[j=1..(k-1)]Yij))
* ln(1 - sum[j=1..(k-1)]Pj(Xi)) } + ridge * (B^2)
In order to find the matrix B for which L is minimized,
a Quasi-Newton Method is used to search for the optimized
values of the m*(k-1) variables. Note that before we use the
optimization procedure, we 'squeeze' the matrix B into a
m*(k-1) vector.
Although original Logistic Regression does not deal
with instance weights, we modify the algorithm a little bit to
handle the instance weights [19].
VI. PROPOSED METHOD
Proposed methodology is shown in figure [2].For
finding the best classifier for breast cancer dataset is a
challenge because the nature of data is multivariate .Missing
value handling and extreme value removal from multivariate
is a big task it is shown by literatures. Step by Step
methodology is described below:
Figure [2]: Flowchart of Proposed article
Step1. Take input as Breast Cancer Data sets it is having 10
attributes. 9 features+1class attribute 106 instances.
Step2. Create training, testing and validation set.
Step3. Apply Attribute searches
Step4. Set Max value equal to first classifier accuracy.
Step5. Then apply for loop (for i=1,i<=48, i++).This loop is
test one by one classification accuracy.
Step6. Create Performance evaluation matrix
International Journal of Technical Research and Applications e-ISSN: 2320-8163,
www.ijtra.com Volume 3, Issue 3 (May-June 2015), PP. 130-133
132 | P a g e
Step7. After testing all classifier which classifier
classification accuracy is high this classifier is best for
another classifier.
Step8. The result shows the best classifier with the highest
accuracy in breast cancer classification.
VII. RESULT ANALYSIS
Experiment is performed with Java and Machine
learning tool (Weka), for multivariate data set, 48 classifier
accuracy result is shown in figure[3],for measuring the
performance of classifier various matrices are present and
these are mapped in table[4].In this only top 10 classifier
performance is mapped and it is showing Function based
logistic gives better performance as compare to others.
Statistical Measures like TP(True Positive), FP(False
Positive), Recall etc also mapped in table[4].
VIII. CONCLUSION
The proposed article gives how to evaluate classifier
performance for multivariate cancer dataset. It is
implemented with java and weka tools for execution, the
classifier performance is depends upon the correlation found
between two instances, based on this article found logistic
function is good choice for multiple decision variables for
class labels. It is showing 80.9524.
TP FP F- ROC PRC
Classifiers Rate Rate Precision Recall Measure MCC Area Area Accuracy Error
functions.Logistic 0.81 0.033 0.857 0.81 0.811 0.784 0.899 0.746 80.9524 19.0476
functions.SimpleLogis
tic 0.714 0.039 0.595 0.714 0.635 0.627 0.92 0.762 71.4286 28.5714
lazy.Ibk k=3 0.714 0.03 0.871 0.714 0.722 0.725 0.885 0.731 71.4286 28.5714
lazy.Ibk k=4 0.714 0.033 0.81 0.714 0.717 0.702 0.866 0.679 71.4286 28.5714
trees.LMT 0.714 0.039 0.595 0.714 0.635 0.627 0.92 0.762 71.4286 28.5714
lazy.KStar 0.667 0.058 0.782 0.667 0.671 0.637 0.903 0.753 66.6667 33.3333
lazy.Ibk k=1 0.667 0.075 0.746 0.667 0.669 0.617 0.796 0.591 66.6667 33.3333
meta.MultiClassClass
ifier 0.667 0.061 0.679 0.667 0.656 0.597 0.835 0.66 66.6667 33.3333
meta.RandomSubSpa
ce 0.667 0.072 0.658 0.667 0.644 0.584 0.914 0.73 66.6667 33.3333
trees.HoeffdingTree 0.667 0.058 0.659 0.667 0.647 0.593 0.908 0.699 66.6667 33.3333
Table 4: Top 10 Accuracy Classifier Result
REFERENCES
[1] Van't Veer, Laura J., Hongyue Dai, Marc J. Van De Vijver,
Yudong D. He, Augustinus AM Hart, Mao Mao, Hans L.
Peterse et al. "Gene expression profiling predicts clinical
outcome of breast cancer." nature 415, no. 6871 (2002): 530-
536.
[2] Wooster, Richard, Graham Bignell, Jonathan Lancaster, Sally
Swift, Sheila Seal, Jonathan Mangion, Nadine Collins et al.
"Identification of the breast cancer susceptibility gene
BRCA2." Nature 378, no. 6559 (1995): 789-792.
[3] Sotiriou, Christos, Soek-Ying Neo, Lisa M. McShane,
Edward L. Korn, Philip M. Long, Amir Jazaeri, Philippe
Martiat, Steve B. Fox, Adrian L. Harris, and Edison T. Liu.
"Breast cancer classification and prognosis based on gene
expression profiles from a population-based study."
Proceedings of the National Academy of Sciences 100, no.
18 (2003): 10393-10398.
[4] Mangasarian, Olvi L., W. Nick Street, and William H.
Wolberg. "Breast cancer diagnosis and prognosis via linear
programming." Operations Research 43, no. 4 (1995): 570-
577.
[5] Van Dongen, J. A., H. Bartelink, I. S. Fentiman, T. Lerut, F.
Mignolet, G. Olthuis, E. Van der Schueren, R. Sylvester, J.
Winter, and K. Van Zijl. "Randomized clinical trial to assess
the value of breast-conserving therapy in stage I and II breast
cancer, EORTC 10801 trial." Journal of the National Cancer
Institute. Monographs 11 (1991): 15-18.
[6] Bokhman, Jan V. "Two pathogenetic types of endometrial
carcinoma." Gynecologic oncology 15, no. 1 (1983): 10-17.
[7] Dupont, William D., David L. Page, Fritz F. Parl, Cindy L.
Vnencak-Jones, Walton D. Plummer Jr, Margaret S. Rados,
and Peggy A. Schuyler. "Long-term risk of breast cancer in
women with fibroadenoma." New England Journal of
Medicine 331, no. 1 (1994): 10-15.
International Journal of Technical Research and Applications e-ISSN: 2320-8163,
www.ijtra.com Volume 3, Issue 3 (May-June 2015), PP. 130-133
133 | P a g e
[8] London, Stephanie J., James L. Connolly, Stuart J. Schnitt,
and Graham A. Colditz. "A prospective study of benign
breast disease and the risk of breast cancer." Jama 267, no. 7
(1992): 941-944.
[9] Kämäräinen, M., M. Seppälä, I. Virtanen, and L. C.
Andersson. "Expression of glycodelin in MCF-7 breast
cancer cells induces differentiation into organized acinar
epithelium." Laboratory investigation; a journal of technical
methods and pathology 77, no. 6 (1997): 565-573.
[10] Hishikawa, Keiichi, Barry S. Oemar, Felix C. Tanner, Toshio
Nakaki, Thomas F. Lüscher, and Tomoko Fujii. "Connective
tissue growth factor induces apoptosis in human breast
cancer cell line MCF-7." Journal of Biological Chemistry
274, no. 52 (1999): 37461-37466.
[11] Boyd, N. F., J. W. Byng, R. A. Jong, E. K. Fishell, L. E.
Little, A. B. Miller, G. A. Lockwood, D. L. Tritchler, and
Martin J. Yaffe. "Quantitative classification of
mammographic densities and breast cancer risk: results from
the Canadian National Breast Screening Study." Journal of
the National Cancer Institute 87, no. 9 (1995): 670-675.
[12] http://archive.ics.uci.edu/ml/
[13] Asuncion, Arthur, and David Newman. "UCI machine
learning repository." (2007).
[14] Castillo, Enrique. Extreme value theory in engineering.
Elsevier, 2012.
[15] Gumbel, Emil Julius. Statistics of extremes. Courier
Corporation, 2012.
[16] Fayyad, Usama M., Gregory Piatetsky-Shapiro, Padhraic
Smyth, and Ramasamy Uthurusamy. "Advances in
knowledge discovery and data mining." (1996).
[17] Quinlan, J. Ross. C4. 5: programs for machine learning.
Elsevier, 2014.
[18] Witten, Ian H., Eibe Frank, Leonard E. Trigg, Mark A. Hall,
Geoffrey Holmes, and Sally Jo Cunningham. "Weka:
Practical machine learning tools and techniques with Java
implementations." (1999).
[19] Witten, Ian H., and Eibe Frank. Data Mining: Practical
machine learning tools and techniques. Morgan Kaufmann,
2005.

More Related Content

What's hot

ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
 ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO... ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...cscpconf
 
Feature Selection Approach based on Firefly Algorithm and Chi-square
Feature Selection Approach based on Firefly Algorithm and Chi-square Feature Selection Approach based on Firefly Algorithm and Chi-square
Feature Selection Approach based on Firefly Algorithm and Chi-square IJECEIAES
 
SVM-PSO based Feature Selection for Improving Medical Diagnosis Reliability u...
SVM-PSO based Feature Selection for Improving Medical Diagnosis Reliability u...SVM-PSO based Feature Selection for Improving Medical Diagnosis Reliability u...
SVM-PSO based Feature Selection for Improving Medical Diagnosis Reliability u...cscpconf
 
Leave one out cross validated Hybrid Model of Genetic Algorithm and Naïve Bay...
Leave one out cross validated Hybrid Model of Genetic Algorithm and Naïve Bay...Leave one out cross validated Hybrid Model of Genetic Algorithm and Naïve Bay...
Leave one out cross validated Hybrid Model of Genetic Algorithm and Naïve Bay...IJERA Editor
 
Hybrid prediction model with missing value imputation for medical data 2015-g...
Hybrid prediction model with missing value imputation for medical data 2015-g...Hybrid prediction model with missing value imputation for medical data 2015-g...
Hybrid prediction model with missing value imputation for medical data 2015-g...Jitender Grover
 
2014 Gene expressionmicroarrayclassification usingPCA–BEL.
2014 Gene expressionmicroarrayclassification usingPCA–BEL.2014 Gene expressionmicroarrayclassification usingPCA–BEL.
2014 Gene expressionmicroarrayclassification usingPCA–BEL.Ehsan Lotfi
 
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...IRJET Journal
 
A new model for large dataset dimensionality reduction based on teaching lear...
A new model for large dataset dimensionality reduction based on teaching lear...A new model for large dataset dimensionality reduction based on teaching lear...
A new model for large dataset dimensionality reduction based on teaching lear...TELKOMNIKA JOURNAL
 
Efficiently finding the parameter for emergign pattern based classifier
Efficiently finding the parameter for emergign pattern based classifierEfficiently finding the parameter for emergign pattern based classifier
Efficiently finding the parameter for emergign pattern based classifierGanesh Pavan Kambhampati
 
A BINARY BAT INSPIRED ALGORITHM FOR THE CLASSIFICATION OF BREAST CANCER DATA
A BINARY BAT INSPIRED ALGORITHM FOR THE CLASSIFICATION OF BREAST CANCER DATAA BINARY BAT INSPIRED ALGORITHM FOR THE CLASSIFICATION OF BREAST CANCER DATA
A BINARY BAT INSPIRED ALGORITHM FOR THE CLASSIFICATION OF BREAST CANCER DATAIJSCAI Journal
 
Oversampling technique in student performance classification from engineering...
Oversampling technique in student performance classification from engineering...Oversampling technique in student performance classification from engineering...
Oversampling technique in student performance classification from engineering...IJECEIAES
 
An Heterogeneous Population-Based Genetic Algorithm for Data Clustering
An Heterogeneous Population-Based Genetic Algorithm for Data ClusteringAn Heterogeneous Population-Based Genetic Algorithm for Data Clustering
An Heterogeneous Population-Based Genetic Algorithm for Data Clusteringijeei-iaes
 
Towards reducing the
Towards reducing theTowards reducing the
Towards reducing theIJDKP
 
A Threshold Fuzzy Entropy Based Feature Selection: Comparative Study
A Threshold Fuzzy Entropy Based Feature Selection:  Comparative StudyA Threshold Fuzzy Entropy Based Feature Selection:  Comparative Study
A Threshold Fuzzy Entropy Based Feature Selection: Comparative StudyIJMER
 
Seminar Slides
Seminar SlidesSeminar Slides
Seminar Slidespannicle
 
A Binary Bat Inspired Algorithm for the Classification of Breast Cancer Data
A Binary Bat Inspired Algorithm for the Classification of Breast Cancer Data A Binary Bat Inspired Algorithm for the Classification of Breast Cancer Data
A Binary Bat Inspired Algorithm for the Classification of Breast Cancer Data ijscai
 

What's hot (18)

Ijcatr04041015
Ijcatr04041015Ijcatr04041015
Ijcatr04041015
 
ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
 ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO... ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
ENHANCED BREAST CANCER RECOGNITION BASED ON ROTATION FOREST FEATURE SELECTIO...
 
[IJET-V2I3P21] Authors: Amit Kumar Dewangan, Akhilesh Kumar Shrivas, Prem Kumar
[IJET-V2I3P21] Authors: Amit Kumar Dewangan, Akhilesh Kumar Shrivas, Prem Kumar[IJET-V2I3P21] Authors: Amit Kumar Dewangan, Akhilesh Kumar Shrivas, Prem Kumar
[IJET-V2I3P21] Authors: Amit Kumar Dewangan, Akhilesh Kumar Shrivas, Prem Kumar
 
Feature Selection Approach based on Firefly Algorithm and Chi-square
Feature Selection Approach based on Firefly Algorithm and Chi-square Feature Selection Approach based on Firefly Algorithm and Chi-square
Feature Selection Approach based on Firefly Algorithm and Chi-square
 
SVM-PSO based Feature Selection for Improving Medical Diagnosis Reliability u...
SVM-PSO based Feature Selection for Improving Medical Diagnosis Reliability u...SVM-PSO based Feature Selection for Improving Medical Diagnosis Reliability u...
SVM-PSO based Feature Selection for Improving Medical Diagnosis Reliability u...
 
Leave one out cross validated Hybrid Model of Genetic Algorithm and Naïve Bay...
Leave one out cross validated Hybrid Model of Genetic Algorithm and Naïve Bay...Leave one out cross validated Hybrid Model of Genetic Algorithm and Naïve Bay...
Leave one out cross validated Hybrid Model of Genetic Algorithm and Naïve Bay...
 
Hybrid prediction model with missing value imputation for medical data 2015-g...
Hybrid prediction model with missing value imputation for medical data 2015-g...Hybrid prediction model with missing value imputation for medical data 2015-g...
Hybrid prediction model with missing value imputation for medical data 2015-g...
 
2014 Gene expressionmicroarrayclassification usingPCA–BEL.
2014 Gene expressionmicroarrayclassification usingPCA–BEL.2014 Gene expressionmicroarrayclassification usingPCA–BEL.
2014 Gene expressionmicroarrayclassification usingPCA–BEL.
 
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
IRJET - Breast Cancer Prediction using Supervised Machine Learning Algorithms...
 
A new model for large dataset dimensionality reduction based on teaching lear...
A new model for large dataset dimensionality reduction based on teaching lear...A new model for large dataset dimensionality reduction based on teaching lear...
A new model for large dataset dimensionality reduction based on teaching lear...
 
Efficiently finding the parameter for emergign pattern based classifier
Efficiently finding the parameter for emergign pattern based classifierEfficiently finding the parameter for emergign pattern based classifier
Efficiently finding the parameter for emergign pattern based classifier
 
A BINARY BAT INSPIRED ALGORITHM FOR THE CLASSIFICATION OF BREAST CANCER DATA
A BINARY BAT INSPIRED ALGORITHM FOR THE CLASSIFICATION OF BREAST CANCER DATAA BINARY BAT INSPIRED ALGORITHM FOR THE CLASSIFICATION OF BREAST CANCER DATA
A BINARY BAT INSPIRED ALGORITHM FOR THE CLASSIFICATION OF BREAST CANCER DATA
 
Oversampling technique in student performance classification from engineering...
Oversampling technique in student performance classification from engineering...Oversampling technique in student performance classification from engineering...
Oversampling technique in student performance classification from engineering...
 
An Heterogeneous Population-Based Genetic Algorithm for Data Clustering
An Heterogeneous Population-Based Genetic Algorithm for Data ClusteringAn Heterogeneous Population-Based Genetic Algorithm for Data Clustering
An Heterogeneous Population-Based Genetic Algorithm for Data Clustering
 
Towards reducing the
Towards reducing theTowards reducing the
Towards reducing the
 
A Threshold Fuzzy Entropy Based Feature Selection: Comparative Study
A Threshold Fuzzy Entropy Based Feature Selection:  Comparative StudyA Threshold Fuzzy Entropy Based Feature Selection:  Comparative Study
A Threshold Fuzzy Entropy Based Feature Selection: Comparative Study
 
Seminar Slides
Seminar SlidesSeminar Slides
Seminar Slides
 
A Binary Bat Inspired Algorithm for the Classification of Breast Cancer Data
A Binary Bat Inspired Algorithm for the Classification of Breast Cancer Data A Binary Bat Inspired Algorithm for the Classification of Breast Cancer Data
A Binary Bat Inspired Algorithm for the Classification of Breast Cancer Data
 

Viewers also liked

Viewers also liked (20)

AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIRAN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
AN EXPERIMENTAL STUDY ON SEPARATION OF WATER FROM THE ATMOSPHERIC AIR
 
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
FACTORS AFFECTING PROJECT SUSTAINABILITY BEYOND DONOR’S SUPPORT. THE CASE OF ...
 
Ijtra130511
Ijtra130511Ijtra130511
Ijtra130511
 
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
PHYSICO-CHEMICAL AND BACTERIOLOGICAL ASSESSMENT OF RIVER MUDZIRA WATER IN MUB...
 
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
ENVISIONING AND IMPLEMENTING PROJECT IN REAL TIME (AN ALGORITHMIC APPROACH)
 
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARESTHE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
THE FUNDAMENTAL ANALYSIS-THE BEST WAY TO EVALUATE EQUITY SHARES
 
UNDERSTANDING ENTREPRENEURSHIP: IMPACT OF OVERCONFIDENCE ON ENTREPRENEURSHIP
UNDERSTANDING ENTREPRENEURSHIP: IMPACT OF OVERCONFIDENCE ON ENTREPRENEURSHIPUNDERSTANDING ENTREPRENEURSHIP: IMPACT OF OVERCONFIDENCE ON ENTREPRENEURSHIP
UNDERSTANDING ENTREPRENEURSHIP: IMPACT OF OVERCONFIDENCE ON ENTREPRENEURSHIP
 
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
STUDIES ON THE ANTIBIOTIC RESISTANCE USING URINARY TRACT ISOLATES OF E.COLI.
 
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEWIDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
IDENTIFICATION OF SUPPLY CHAIN MANAGEMENT PROBLEMS: A REVIEW
 
ERROR ESTIMATION IN DEVELOPING GIS MAPS USING DIFFERENT INPUT METHODS OF LAND...
ERROR ESTIMATION IN DEVELOPING GIS MAPS USING DIFFERENT INPUT METHODS OF LAND...ERROR ESTIMATION IN DEVELOPING GIS MAPS USING DIFFERENT INPUT METHODS OF LAND...
ERROR ESTIMATION IN DEVELOPING GIS MAPS USING DIFFERENT INPUT METHODS OF LAND...
 
COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
COMPARATIVE STUDY OF BELL PEPPER ON THE ASPECTS OF THEIR APPROXIMATE ANALYSIS...
 
USING SOCIAL NETWORKING AS A MECHANISM TO ACHIEVE BRAND RESONANCE: AN EMPIRIC...
USING SOCIAL NETWORKING AS A MECHANISM TO ACHIEVE BRAND RESONANCE: AN EMPIRIC...USING SOCIAL NETWORKING AS A MECHANISM TO ACHIEVE BRAND RESONANCE: AN EMPIRIC...
USING SOCIAL NETWORKING AS A MECHANISM TO ACHIEVE BRAND RESONANCE: AN EMPIRIC...
 
IMPROVEMENT OF SUPPLY CHAIN MANAGEMENT BY MATHEMATICAL PROGRAMMING APPROACH
IMPROVEMENT OF SUPPLY CHAIN MANAGEMENT BY MATHEMATICAL PROGRAMMING APPROACHIMPROVEMENT OF SUPPLY CHAIN MANAGEMENT BY MATHEMATICAL PROGRAMMING APPROACH
IMPROVEMENT OF SUPPLY CHAIN MANAGEMENT BY MATHEMATICAL PROGRAMMING APPROACH
 
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
EVALUATION OF DRAINAGE WATER QUALITY FOR IRRIGATION BY INTEGRATION BETWEEN IR...
 
TRAFFIC NOISE ATTENUATION IN SELFPROTECTED BUILDING ENVELOPS
TRAFFIC NOISE ATTENUATION IN SELFPROTECTED BUILDING ENVELOPSTRAFFIC NOISE ATTENUATION IN SELFPROTECTED BUILDING ENVELOPS
TRAFFIC NOISE ATTENUATION IN SELFPROTECTED BUILDING ENVELOPS
 
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
MECHANISMS OF PHOTOPERIOD IN REGULATION OF RICE FLOWERING
 
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
SCANNING ELECTRON MICROSCOPE OF DISINFECTANTS EXPOSED PSEUDOMONAS AERUGINOSA ...
 
STATE OF ART IN MODERN RESISTANCE SPOT WELDING
STATE OF ART IN MODERN RESISTANCE SPOT WELDINGSTATE OF ART IN MODERN RESISTANCE SPOT WELDING
STATE OF ART IN MODERN RESISTANCE SPOT WELDING
 
IDENTIFICATIONS OF ELECTRICAL AND ELECTRONIC EQUIPMENT POLYMER WASTE TYPES US...
IDENTIFICATIONS OF ELECTRICAL AND ELECTRONIC EQUIPMENT POLYMER WASTE TYPES US...IDENTIFICATIONS OF ELECTRICAL AND ELECTRONIC EQUIPMENT POLYMER WASTE TYPES US...
IDENTIFICATIONS OF ELECTRICAL AND ELECTRONIC EQUIPMENT POLYMER WASTE TYPES US...
 
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GISMAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
MAPPING REMOTE PLANTS THROUGH REMOTE SENSING TECHNOLOGY AND GIS
 

Similar to PERFORMANCE EVALUATION OF DIFFERENT CLASSIFIER ON BREAST CANCER

Robust Breast Cancer Diagnosis on Four Different Datasets Using Multi-Classif...
Robust Breast Cancer Diagnosis on Four Different Datasets Using Multi-Classif...Robust Breast Cancer Diagnosis on Four Different Datasets Using Multi-Classif...
Robust Breast Cancer Diagnosis on Four Different Datasets Using Multi-Classif...ahmad abdelhafeez
 
Analysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data SetAnalysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data SetIJERA Editor
 
An Experimental Study of Diabetes Disease Prediction System Using Classificat...
An Experimental Study of Diabetes Disease Prediction System Using Classificat...An Experimental Study of Diabetes Disease Prediction System Using Classificat...
An Experimental Study of Diabetes Disease Prediction System Using Classificat...IOSRjournaljce
 
Classification AlgorithmBased Analysis of Breast Cancer Data
Classification AlgorithmBased Analysis of Breast Cancer DataClassification AlgorithmBased Analysis of Breast Cancer Data
Classification AlgorithmBased Analysis of Breast Cancer DataIIRindia
 
Controlling informative features for improved accuracy and faster predictions...
Controlling informative features for improved accuracy and faster predictions...Controlling informative features for improved accuracy and faster predictions...
Controlling informative features for improved accuracy and faster predictions...Damian R. Mingle, MBA
 
Feature selection of unbalanced breast cancer data using particle swarm optim...
Feature selection of unbalanced breast cancer data using particle swarm optim...Feature selection of unbalanced breast cancer data using particle swarm optim...
Feature selection of unbalanced breast cancer data using particle swarm optim...IJECEIAES
 
Classification of medical datasets using back propagation neural network powe...
Classification of medical datasets using back propagation neural network powe...Classification of medical datasets using back propagation neural network powe...
Classification of medical datasets using back propagation neural network powe...IJECEIAES
 
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...IJRES Journal
 
Quantitative Comparison of Artificial Honey Bee Colony Clustering and Enhance...
Quantitative Comparison of Artificial Honey Bee Colony Clustering and Enhance...Quantitative Comparison of Artificial Honey Bee Colony Clustering and Enhance...
Quantitative Comparison of Artificial Honey Bee Colony Clustering and Enhance...idescitation
 
Multi Class Cervical Cancer Classification by using ERSTCM, EMSD & CFE method...
Multi Class Cervical Cancer Classification by using ERSTCM, EMSD & CFE method...Multi Class Cervical Cancer Classification by using ERSTCM, EMSD & CFE method...
Multi Class Cervical Cancer Classification by using ERSTCM, EMSD & CFE method...IOSRjournaljce
 
Iganfis Data Mining Approach for Forecasting Cancer Threats
Iganfis Data Mining Approach for Forecasting Cancer ThreatsIganfis Data Mining Approach for Forecasting Cancer Threats
Iganfis Data Mining Approach for Forecasting Cancer Threatsijsrd.com
 
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCER
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCERKNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCER
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCERcscpconf
 
Possibilistic Fuzzy C Means Algorithm For Mass classificaion In Digital Mammo...
Possibilistic Fuzzy C Means Algorithm For Mass classificaion In Digital Mammo...Possibilistic Fuzzy C Means Algorithm For Mass classificaion In Digital Mammo...
Possibilistic Fuzzy C Means Algorithm For Mass classificaion In Digital Mammo...IJERA Editor
 
IRJET- Detection of Breast Cancer using Machine Learning Techniques
IRJET-  	  Detection of Breast Cancer using Machine Learning TechniquesIRJET-  	  Detection of Breast Cancer using Machine Learning Techniques
IRJET- Detection of Breast Cancer using Machine Learning TechniquesIRJET Journal
 
IRJET- Breast Cancer Disease Prediction : Using Machine Learning Approach
IRJET- Breast Cancer Disease Prediction : Using Machine Learning ApproachIRJET- Breast Cancer Disease Prediction : Using Machine Learning Approach
IRJET- Breast Cancer Disease Prediction : Using Machine Learning ApproachIRJET Journal
 
Detecting in situ melanoma using multi parameter extraction and neural classi...
Detecting in situ melanoma using multi parameter extraction and neural classi...Detecting in situ melanoma using multi parameter extraction and neural classi...
Detecting in situ melanoma using multi parameter extraction and neural classi...IAEME Publication
 
Exploring the performance of feature selection method using breast cancer dat...
Exploring the performance of feature selection method using breast cancer dat...Exploring the performance of feature selection method using breast cancer dat...
Exploring the performance of feature selection method using breast cancer dat...nooriasukmaningtyas
 

Similar to PERFORMANCE EVALUATION OF DIFFERENT CLASSIFIER ON BREAST CANCER (20)

Ec33772776
Ec33772776Ec33772776
Ec33772776
 
Robust Breast Cancer Diagnosis on Four Different Datasets Using Multi-Classif...
Robust Breast Cancer Diagnosis on Four Different Datasets Using Multi-Classif...Robust Breast Cancer Diagnosis on Four Different Datasets Using Multi-Classif...
Robust Breast Cancer Diagnosis on Four Different Datasets Using Multi-Classif...
 
[IJET-V2I3P22] Authors: Harsha Pakhale,Deepak Kumar Xaxa
[IJET-V2I3P22] Authors: Harsha Pakhale,Deepak Kumar Xaxa[IJET-V2I3P22] Authors: Harsha Pakhale,Deepak Kumar Xaxa
[IJET-V2I3P22] Authors: Harsha Pakhale,Deepak Kumar Xaxa
 
Analysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data SetAnalysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data Set
 
An Experimental Study of Diabetes Disease Prediction System Using Classificat...
An Experimental Study of Diabetes Disease Prediction System Using Classificat...An Experimental Study of Diabetes Disease Prediction System Using Classificat...
An Experimental Study of Diabetes Disease Prediction System Using Classificat...
 
Classification AlgorithmBased Analysis of Breast Cancer Data
Classification AlgorithmBased Analysis of Breast Cancer DataClassification AlgorithmBased Analysis of Breast Cancer Data
Classification AlgorithmBased Analysis of Breast Cancer Data
 
Controlling informative features for improved accuracy and faster predictions...
Controlling informative features for improved accuracy and faster predictions...Controlling informative features for improved accuracy and faster predictions...
Controlling informative features for improved accuracy and faster predictions...
 
Feature selection of unbalanced breast cancer data using particle swarm optim...
Feature selection of unbalanced breast cancer data using particle swarm optim...Feature selection of unbalanced breast cancer data using particle swarm optim...
Feature selection of unbalanced breast cancer data using particle swarm optim...
 
Classification of medical datasets using back propagation neural network powe...
Classification of medical datasets using back propagation neural network powe...Classification of medical datasets using back propagation neural network powe...
Classification of medical datasets using back propagation neural network powe...
 
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
A Mathematical Programming Approach for Selection of Variables in Cluster Ana...
 
Az4102375381
Az4102375381Az4102375381
Az4102375381
 
Quantitative Comparison of Artificial Honey Bee Colony Clustering and Enhance...
Quantitative Comparison of Artificial Honey Bee Colony Clustering and Enhance...Quantitative Comparison of Artificial Honey Bee Colony Clustering and Enhance...
Quantitative Comparison of Artificial Honey Bee Colony Clustering and Enhance...
 
Multi Class Cervical Cancer Classification by using ERSTCM, EMSD & CFE method...
Multi Class Cervical Cancer Classification by using ERSTCM, EMSD & CFE method...Multi Class Cervical Cancer Classification by using ERSTCM, EMSD & CFE method...
Multi Class Cervical Cancer Classification by using ERSTCM, EMSD & CFE method...
 
Iganfis Data Mining Approach for Forecasting Cancer Threats
Iganfis Data Mining Approach for Forecasting Cancer ThreatsIganfis Data Mining Approach for Forecasting Cancer Threats
Iganfis Data Mining Approach for Forecasting Cancer Threats
 
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCER
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCERKNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCER
KNOWLEDGE BASED ANALYSIS OF VARIOUS STATISTICAL TOOLS IN DETECTING BREAST CANCER
 
Possibilistic Fuzzy C Means Algorithm For Mass classificaion In Digital Mammo...
Possibilistic Fuzzy C Means Algorithm For Mass classificaion In Digital Mammo...Possibilistic Fuzzy C Means Algorithm For Mass classificaion In Digital Mammo...
Possibilistic Fuzzy C Means Algorithm For Mass classificaion In Digital Mammo...
 
IRJET- Detection of Breast Cancer using Machine Learning Techniques
IRJET-  	  Detection of Breast Cancer using Machine Learning TechniquesIRJET-  	  Detection of Breast Cancer using Machine Learning Techniques
IRJET- Detection of Breast Cancer using Machine Learning Techniques
 
IRJET- Breast Cancer Disease Prediction : Using Machine Learning Approach
IRJET- Breast Cancer Disease Prediction : Using Machine Learning ApproachIRJET- Breast Cancer Disease Prediction : Using Machine Learning Approach
IRJET- Breast Cancer Disease Prediction : Using Machine Learning Approach
 
Detecting in situ melanoma using multi parameter extraction and neural classi...
Detecting in situ melanoma using multi parameter extraction and neural classi...Detecting in situ melanoma using multi parameter extraction and neural classi...
Detecting in situ melanoma using multi parameter extraction and neural classi...
 
Exploring the performance of feature selection method using breast cancer dat...
Exploring the performance of feature selection method using breast cancer dat...Exploring the performance of feature selection method using breast cancer dat...
Exploring the performance of feature selection method using breast cancer dat...
 

More from International Journal of Technical Research & Application

More from International Journal of Technical Research & Application (20)

STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEWSTUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
STUDY & PERFORMANCE OF METAL ON METAL HIP IMPLANTS: A REVIEW
 
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
EXPONENTIAL SMOOTHING OF POSTPONEMENT RATES IN OPERATION THEATRES OF ADVANCED...
 
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
POSTPONEMENT OF SCHEDULED GENERAL SURGERIES IN A TERTIARY CARE HOSPITAL - A T...
 
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONSSTUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
STUDY OF NANO-SYSTEMS FOR COMPUTER SIMULATIONS
 
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
ENERGY GAP INVESTIGATION AND CHARACTERIZATION OF KESTERITE CU2ZNSNS4 THIN FIL...
 
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTERPOD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
POD-PWM BASED CAPACITOR CLAMPED MULTILEVEL INVERTER
 
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGADIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
DIGITAL COMPRESSING OF A BPCM SIGNAL ACCORDING TO BARKER CODE USING FPGA
 
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
MODELLING THE IMPACT OF FLOODING USING GEOGRAPHIC INFORMATION SYSTEM AND REMO...
 
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESSLI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
LI-ION BATTERY TESTING FROM MANUFACTURING TO OPERATION PROCESS
 
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
QUALITATIVE RISK ASSESSMENT AND MITIGATION MEASURES FOR REAL ESTATE PROJECTS ...
 
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEWSCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
SCOPE OF REPLACING FINE AGGREGATE WITH COPPER SLAG IN CONCRETE- A REVIEW
 
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKINGIMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
IMPLEMENTATION OF METHODS FOR TRANSACTION IN SECURE ONLINE BANKING
 
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTYEFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
EFFECT OF TRANS-SEPTAL SUTURE TECHNIQUE VERSUS NASAL PACKING AFTER SEPTOPLASTY
 
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
THE CONSTRUCTION PROCEDURE AND ADVANTAGE OF THE RAIL CABLE-LIFTING CONSTRUCTI...
 
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
TIME EFFICIENT BAYLIS-HILLMAN REACTION ON STEROIDAL NUCLEUS OF WITHAFERIN-A T...
 
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASHA STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
A STUDY ON THE FRESH PROPERTIES OF SCC WITH FLY ASH
 
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
AN INSIDE LOOK IN THE ELECTRICAL STRUCTURE OF THE BATTERY MANAGEMENT SYSTEM T...
 
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
OPEN LOOP ANALYSIS OF CASCADED HBRIDGE MULTILEVEL INVERTER USING PDPWM FOR PH...
 
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
PERFORMANCE ANALYSIS OF MICROSTRIP PATCH ANTENNA USING COAXIAL PROBE FEED TEC...
 
OVERVIEW OF TCP PERFORMANCE IN SATELLITE COMMUNICATION NETWORKS
OVERVIEW OF TCP PERFORMANCE IN SATELLITE COMMUNICATION NETWORKSOVERVIEW OF TCP PERFORMANCE IN SATELLITE COMMUNICATION NETWORKS
OVERVIEW OF TCP PERFORMANCE IN SATELLITE COMMUNICATION NETWORKS
 

Recently uploaded

Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 

Recently uploaded (20)

Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 

PERFORMANCE EVALUATION OF DIFFERENT CLASSIFIER ON BREAST CANCER

  • 1. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 3, Issue 3 (May-June 2015), PP. 130-133 130 | P a g e PERFORMANCE EVALUATION OF DIFFERENT CLASSIFIER ON BREAST CANCER Rashmi Nagpal1, Rashmi Shrivas2, Mridu Sahu3, Saransh Shirke4 1 Department of Computer Science and Engineering, MATS, University Raipur. 2 Departmet of Electronics and Telecommunication, NIT Raipur, C.G., India. 3 Departmet of Electrical Engineering, NIT Raipur, C.G., India rashmi.nagpal006@gmail.com, mrisahu.it@nitrr.ac.in Abstract. In this work article founds the best classifier for breast cancer diseases classification, the survey shows it is one of the major diseases in India. For classification of Breast cancer is a multivariate data analysis it is big challenge among researcher to classify multivariate data because more than one decision variables present .The proposed work founds which classifier is best among 48 different categories of classifier and it founds logistics function is best among all the classifiers, it shows 80.9524 accuracy. Logistics function is also called logistic regression; it is a statistical method to analysis breast cancer data set. Keywords: Breast Cancer, Classification, Multivariate Data, Logistic Function. I. INTRODUCTION Breast Cancer is developed from breast tissues [1]. There are several types of breast cancer. There are three ways by which cancer can spreads in body firstly by Tissues, by Lymph System or by Blood[2].There are many stages of breast cancer it is shown in literature[3][4][5].Stages description is shown in Table[1].The proposed article is finding best classifier for different types of breast cancer ,the data set description shown in table [2].The first type is Carcinoma is a type of cancer that develop from epithelial cells[6],second type is Fibro-adenoma of non cancerous tumors[7],third is Mastopathy is cover all types of breast changes[8].Forth type is Glandular epithelial cells are specialized epithelial[9] .Fifth type is Connective tissues that supports connects or spreads different types of tissues and organ in the body[10].Sixth type is Adipose tissues or fat its role is to store energy in the form of fat[11] .The proposed article finds dataset in to six different classes it processed on 48 different classifiers. The 48 classifier comes from different categories like tree based, naïve based, function based, meta (Combination of more than two classifier) etc, the function based classifier performing well for present breast cancer dataset. In recent survey by breast cancer.org, shown in figure [1], says that in India many persons having this problem. Maximum patient found in stage I and stage IIA. Table1: Stages of Breast Cancer Stages Definition Stage 0 It is a condition in which abnormal cells are found in breast. Stage I In this stage tumor is 2 centimeters or smaller. In this stage the smaller clusters of breast cancer cells found in lymph nodes Stage II It is also divided into two parts 2A and 2B, 2A describes invasive breast cancer, 2B the tumor is larger than 2 centimeter but no larger than 5centimeter. Stage III It is also divided into three parts 3A, 3B and 3C.In 3A tumor is larger than 5 centimeter, 3B tumor may be any size and 3C there may be no sign of cancer in the breast. Stage IV In this cancer has spread to other organs of the body, most often the bones, lungs, liver, or brain. Figure 1: Survey Report For Breast Cancer II. CORPUS (BREAST CANCER DATASET) In this paper microarray dataset used it is gene expression dataset. The gene expression data set contains numeric values of genes, these expressions are either positive or negative. The proposed article uses UCI dataset and it is a one of the machine learning repository .The dataset having nine features and one class attribute and the description of data set is given below. The dataset is multivariate and attribute characteristics is integer and number of instances are 106[12] [13]. Instances Count Car Carcinoma 21 Fad Fibro-adenoma 15 Mas Mastopathy 18 Gla Glandular 16 Con Connective 14 Adi Adipose 22 Total 106 Table 2: Class Labels of Breast Cancer Dataset
  • 2. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 3, Issue 3 (May-June 2015), PP. 130-133 131 | P a g e Feature Description I0 Impedivity (ohm) at zero frequency PA500 Phase angle at 500 KHz HFS High-frequency slope of phase angle DA Mpedance distance between spectral ends AREA Area under spectrum A/DA Area normalized by DA MAX IP Maximum of the spectrum DR Distance between I0 and real part of the Maximum frequency point P Length of the spectral curve Table 3: Attributes Of Breast Cancer Dataset III. EXTREME VALUE REMOVAL The extreme value removal is a part of data cleaning step for data mining. The procedure for applying the extreme value theorem is to first establish that the function is continuous on the closed interval [14]. The next step is to determine the critical points in the given interval and evaluate the function at these critical points and at the end points of the interval. If the function f(x) is continuous on closed interval [a, b] then f(x) has both a maximum and a minimum on [a, b] [15]. In proposed method inter-quartile range [IQR] is used for extreme value calculations. IQR is major of variability based on dividing the dataset into quartiles [16]. Proposed article found two instances after removal of this breast cancer data set contain 104 instances for classification task. IV. CLASSIFICATION Classification is task performed with data-mining tools; it is process of creating groups for similar data. Instances are present in similar groups are highly correlated with each other. Machine learning algorithms like tree based,naïve based ,function based etc performing groping of instances that are similar to each other placed in same class and instances that are dissimilar with each other placed in another class. Inter Class dependency is low and intra class dependency is high the instances placed using classification algorithms [17].Proposed article found, function based classifier like logistic regression is a good classifier the performance of this is better than other Categories of classifier. V. FUNCTION BASED LOGISTIC (FBS)CLASSIFICATION FBS is using a multinomial logistic regression model with a ridge estimator.The Ridge value in the log- likelihood.If there are k classes for n instances with m attributes, the parameter matrix B to be calculated will be an m*(k-1) matrix[18]. The probability for class j with the exception of the last class is: Pj(Xi) = exp(XiBj)/((sum[j=1..(k-1)]exp(Xi*Bj))+1)………. Eq(1) The last class has probability 1-(sum[j=1..(k-1)]Pj(Xi)) = 1/((sum[j=1..(k-1)]exp(Xi*Bj))+1…. Eq(2) The (negative) multinomial log-likelihood is thus L = -sum[i=1..n]{ sum[j=1..(k-1)](Yij * ln(Pj(Xi))) +(1 - (sum[j=1..(k-1)]Yij)) * ln(1 - sum[j=1..(k-1)]Pj(Xi)) } + ridge * (B^2) In order to find the matrix B for which L is minimized, a Quasi-Newton Method is used to search for the optimized values of the m*(k-1) variables. Note that before we use the optimization procedure, we 'squeeze' the matrix B into a m*(k-1) vector. Although original Logistic Regression does not deal with instance weights, we modify the algorithm a little bit to handle the instance weights [19]. VI. PROPOSED METHOD Proposed methodology is shown in figure [2].For finding the best classifier for breast cancer dataset is a challenge because the nature of data is multivariate .Missing value handling and extreme value removal from multivariate is a big task it is shown by literatures. Step by Step methodology is described below: Figure [2]: Flowchart of Proposed article Step1. Take input as Breast Cancer Data sets it is having 10 attributes. 9 features+1class attribute 106 instances. Step2. Create training, testing and validation set. Step3. Apply Attribute searches Step4. Set Max value equal to first classifier accuracy. Step5. Then apply for loop (for i=1,i<=48, i++).This loop is test one by one classification accuracy. Step6. Create Performance evaluation matrix
  • 3. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 3, Issue 3 (May-June 2015), PP. 130-133 132 | P a g e Step7. After testing all classifier which classifier classification accuracy is high this classifier is best for another classifier. Step8. The result shows the best classifier with the highest accuracy in breast cancer classification. VII. RESULT ANALYSIS Experiment is performed with Java and Machine learning tool (Weka), for multivariate data set, 48 classifier accuracy result is shown in figure[3],for measuring the performance of classifier various matrices are present and these are mapped in table[4].In this only top 10 classifier performance is mapped and it is showing Function based logistic gives better performance as compare to others. Statistical Measures like TP(True Positive), FP(False Positive), Recall etc also mapped in table[4]. VIII. CONCLUSION The proposed article gives how to evaluate classifier performance for multivariate cancer dataset. It is implemented with java and weka tools for execution, the classifier performance is depends upon the correlation found between two instances, based on this article found logistic function is good choice for multiple decision variables for class labels. It is showing 80.9524. TP FP F- ROC PRC Classifiers Rate Rate Precision Recall Measure MCC Area Area Accuracy Error functions.Logistic 0.81 0.033 0.857 0.81 0.811 0.784 0.899 0.746 80.9524 19.0476 functions.SimpleLogis tic 0.714 0.039 0.595 0.714 0.635 0.627 0.92 0.762 71.4286 28.5714 lazy.Ibk k=3 0.714 0.03 0.871 0.714 0.722 0.725 0.885 0.731 71.4286 28.5714 lazy.Ibk k=4 0.714 0.033 0.81 0.714 0.717 0.702 0.866 0.679 71.4286 28.5714 trees.LMT 0.714 0.039 0.595 0.714 0.635 0.627 0.92 0.762 71.4286 28.5714 lazy.KStar 0.667 0.058 0.782 0.667 0.671 0.637 0.903 0.753 66.6667 33.3333 lazy.Ibk k=1 0.667 0.075 0.746 0.667 0.669 0.617 0.796 0.591 66.6667 33.3333 meta.MultiClassClass ifier 0.667 0.061 0.679 0.667 0.656 0.597 0.835 0.66 66.6667 33.3333 meta.RandomSubSpa ce 0.667 0.072 0.658 0.667 0.644 0.584 0.914 0.73 66.6667 33.3333 trees.HoeffdingTree 0.667 0.058 0.659 0.667 0.647 0.593 0.908 0.699 66.6667 33.3333 Table 4: Top 10 Accuracy Classifier Result REFERENCES [1] Van't Veer, Laura J., Hongyue Dai, Marc J. Van De Vijver, Yudong D. He, Augustinus AM Hart, Mao Mao, Hans L. Peterse et al. "Gene expression profiling predicts clinical outcome of breast cancer." nature 415, no. 6871 (2002): 530- 536. [2] Wooster, Richard, Graham Bignell, Jonathan Lancaster, Sally Swift, Sheila Seal, Jonathan Mangion, Nadine Collins et al. "Identification of the breast cancer susceptibility gene BRCA2." Nature 378, no. 6559 (1995): 789-792. [3] Sotiriou, Christos, Soek-Ying Neo, Lisa M. McShane, Edward L. Korn, Philip M. Long, Amir Jazaeri, Philippe Martiat, Steve B. Fox, Adrian L. Harris, and Edison T. Liu. "Breast cancer classification and prognosis based on gene expression profiles from a population-based study." Proceedings of the National Academy of Sciences 100, no. 18 (2003): 10393-10398. [4] Mangasarian, Olvi L., W. Nick Street, and William H. Wolberg. "Breast cancer diagnosis and prognosis via linear programming." Operations Research 43, no. 4 (1995): 570- 577. [5] Van Dongen, J. A., H. Bartelink, I. S. Fentiman, T. Lerut, F. Mignolet, G. Olthuis, E. Van der Schueren, R. Sylvester, J. Winter, and K. Van Zijl. "Randomized clinical trial to assess the value of breast-conserving therapy in stage I and II breast cancer, EORTC 10801 trial." Journal of the National Cancer Institute. Monographs 11 (1991): 15-18. [6] Bokhman, Jan V. "Two pathogenetic types of endometrial carcinoma." Gynecologic oncology 15, no. 1 (1983): 10-17. [7] Dupont, William D., David L. Page, Fritz F. Parl, Cindy L. Vnencak-Jones, Walton D. Plummer Jr, Margaret S. Rados, and Peggy A. Schuyler. "Long-term risk of breast cancer in women with fibroadenoma." New England Journal of Medicine 331, no. 1 (1994): 10-15.
  • 4. International Journal of Technical Research and Applications e-ISSN: 2320-8163, www.ijtra.com Volume 3, Issue 3 (May-June 2015), PP. 130-133 133 | P a g e [8] London, Stephanie J., James L. Connolly, Stuart J. Schnitt, and Graham A. Colditz. "A prospective study of benign breast disease and the risk of breast cancer." Jama 267, no. 7 (1992): 941-944. [9] Kämäräinen, M., M. Seppälä, I. Virtanen, and L. C. Andersson. "Expression of glycodelin in MCF-7 breast cancer cells induces differentiation into organized acinar epithelium." Laboratory investigation; a journal of technical methods and pathology 77, no. 6 (1997): 565-573. [10] Hishikawa, Keiichi, Barry S. Oemar, Felix C. Tanner, Toshio Nakaki, Thomas F. Lüscher, and Tomoko Fujii. "Connective tissue growth factor induces apoptosis in human breast cancer cell line MCF-7." Journal of Biological Chemistry 274, no. 52 (1999): 37461-37466. [11] Boyd, N. F., J. W. Byng, R. A. Jong, E. K. Fishell, L. E. Little, A. B. Miller, G. A. Lockwood, D. L. Tritchler, and Martin J. Yaffe. "Quantitative classification of mammographic densities and breast cancer risk: results from the Canadian National Breast Screening Study." Journal of the National Cancer Institute 87, no. 9 (1995): 670-675. [12] http://archive.ics.uci.edu/ml/ [13] Asuncion, Arthur, and David Newman. "UCI machine learning repository." (2007). [14] Castillo, Enrique. Extreme value theory in engineering. Elsevier, 2012. [15] Gumbel, Emil Julius. Statistics of extremes. Courier Corporation, 2012. [16] Fayyad, Usama M., Gregory Piatetsky-Shapiro, Padhraic Smyth, and Ramasamy Uthurusamy. "Advances in knowledge discovery and data mining." (1996). [17] Quinlan, J. Ross. C4. 5: programs for machine learning. Elsevier, 2014. [18] Witten, Ian H., Eibe Frank, Leonard E. Trigg, Mark A. Hall, Geoffrey Holmes, and Sally Jo Cunningham. "Weka: Practical machine learning tools and techniques with Java implementations." (1999). [19] Witten, Ian H., and Eibe Frank. Data Mining: Practical machine learning tools and techniques. Morgan Kaufmann, 2005.