SlideShare ist ein Scribd-Unternehmen logo
1 von 7
Downloaden Sie, um offline zu lesen
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME
115
FREQUENT NEGATIVE SEQUENTIAL PATTERNS –A SURVEY
Sujatha Kamepalli #1
, Dr. Raja Sekhara Rao Kurra*2
#1
Research Scholar, CSE Department, Krishna University
Machilipatnam, Andhra Pradesh, India
*2
Dean Administration, CSE Department, K.L. University
Guntur, Andhra Pradesh, India
ABSTRACT
Data mining is the extraction of hidden predictive information from large databases, is a
powerful new technology with great potential to help companies focus on the most important
information in their data warehouses. A frequent pattern is defined as a pattern, which can be a set of
items, either with or without an order, occurs together in a database frequent enough to satisfy a
certain minimum threshold. Sequential pattern mining is an important task in data mining. It provides
an effective way to get special patterns from sequence data. Different from traditional positive
sequential patterns, negative sequential patterns focus on negative relationship between items sets, in
which case, absent items are taken into consideration. This paper provides the analysis of different
algorithms used for negative sequential patterns.
Keywords: Data Mining, Frequent Pattern, Sequential Pattern Mining, Sequence Data,
Positive Sequential Patterns, Negative Sequential Patterns.
I. INTRODUCTION
Data mining is the extraction of hidden predictive information from large databases, is a
powerful new technology with great potential to help companies focus on the most important
information in their data warehouses. The Apriori-based algorithms find frequent item sets based
upon an iterative bottom-up approach to generate candidate item sets. Since the first proposal of
association rules mining by R. Agrawal [3, 4], Nowadays, with the rapid development of information
technology, especially the web service-based application, service-oriented architecture and cloud-
computing, continually expanding data are integrated to generate useful information. Many
techniques have been used for data mining. Association rules mining (ARM) is one of the most
INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING &
TECHNOLOGY (IJCET)
ISSN 0976 – 6367(Print)
ISSN 0976 – 6375(Online)
Volume 5, Issue 3, March (2014), pp. 115-121
© IAEME: www.iaeme.com/ijcet.asp
Journal Impact Factor (2014): 8.5328 (Calculated by GISI)
www.jifactor.com
IJCET
© I A E M E
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME
116
useful techniques. The challenges associated with ARM, especially for parallel and distributed data
mining, include minimizing I/O, increasing processing speed and reducing communication cost [5].
A major concern in ARM today is to continue to improve algorithm performance.
A frequent pattern is defined as a pattern, which can be a set of items, either with or without
an order, occurs together in a database frequent enough to satisfy a certain minimum threshold
[2](Han, Cheng, Xin & Yan 2007). Frequent pattern mining is the key step to find interesting
patterns from databases, such as association rule mining, sequential patterns mining, etc, and is vital
in data mining tasks.
1.1Sequence and Sequence Dataset
A sequence is an ordered list of elements like < e1 e2 e3 : : : en >, where ei is an element,
and could be either one item or a set of items. The elements can be ordered by time, position or any
other standard. Each element could also contain one or more items with no order between them. The
length of a sequence is usually not fixed. Sequence data is an important type of data which is popular
in much scientific, medical, business service, bioinformatics, and some other applications. An
example of transactions data is shown in Table 1.1.
Table 1.1: A Transactional Data Table
In the data, customer 002, he/she has three transactions. If all of his/her transactions were
ordered by the transaction time, they can be built into a sequence as < (30; 31; 32) 28 (22; 32) >.
Another example comes from Bioinformatics. Following is a gene sequence which is ordered by
position [1].
ACTGCTGCCAATC
1.2 Sequential pattern mining
Sequential pattern mining is an important task in data mining. It provides an effective way to
get special patterns from sequence data. Sequential pattern considers the order of item sets, but
association rule doesn’t take that into account. For example, given a sequence, such as buying a
desktop first, then an laptop, and then a router, if it occurs frequently in customers’ shopping history
with this special order, it is a (frequent) sequential pattern. When a frequent pattern only contains
item sets without any order, it becomes a classical association rule problem; for example, the same
customer buys desktop, laptop and router without considering their orders. Finding sequential pattern
has been widely recognized as a hot area in data mining and machine learning. It has been proven to
be very useful or even essential while handling critical business problems, such as customer behavior
analysis, event detection and bioinformatics. For example, it is widely employed in DNA, protein,
and medicine identification, where it helps scientists to find out identical and different structures and
functions of molecular or DNA sequences [1].
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME
117
1.3Positive sequential patterns and negative sequential patterns
Different from traditional positive sequential patterns, negative sequential patterns focus on
negative relationship between items sets, in which case, absent items are taken into consideration.
We give a simple example to illustrate the differences: Suppose p1=<a b c d f> is a positive
sequential pattern; p2=<a b ¬c e f> is a negative sequential pattern; and each item a, b, c, etc, stands
for a medical item code in the customer claim database of a private health care insurance company.
By getting pattern p1, we can tell that an insurant usually claimed for a, b, c, d and f in a row; but
with pattern p2, we are also able to find that given an insurant claim for medical items a and b, and
the customer does NOT claim c, he/she would claim item e instead of d later. A number of methods
have been proposed to discover sequential patterns. Most of conventional methods for sequential
pattern mining were developed to discover positive sequential patterns from database [6, 7, 8, 9, 10,
and 11]. Positive sequential patterns mining consider only the occurrences of item sets in sequences.
In practice, however, the absences of item sets in sequences may imply valuable information. For
example, web pages A, B, C, and D are accessed frequently by users, but D is seldom accessed after
the sequence A, B and C. The web page access sequence can be denoted as < A, B, C ¬D >, and
called a negative sequence. Such sequence could give us some valuable information to improve the
company’s website structure. For example, a new link between C and D could improve users’
convenience to access web page D from C [12].
1.4 Applications of sequential pattern mining
• Customer shopping sequences: First buy computer, then CD-ROM, and then digital camera,
within 3 months.
• Medical treatments, natural disasters (e.g., earthquakes), science & eng. processes, stocks and
markets, etc.
• Telephone calling patterns, Weblog click streams.
• DNA sequences and gene structures [16].
II. SURVEY ON NEGATIVE SEQUENTIAL PATTERNS
1.Nancy P. Lin, Hung-Jen Chen, Wei-Hua Hao, Hao-En chueh, Chung-I Chang in” Mining Strong
Positive and Negative Sequential Patterns” proposed a method for mining strong positive and
negative sequential patterns, called PNSPM. In this method, absences of item sets in sequences are
also considered [12].
2. K.M.V.Madan Kumar, P.V.S.Srinivas and C.Raghavendra Rao in” Sequential Pattern Mining
With Multiple Minimum Supports in Progressive Databases” proposed a new approach which can be
applied on any algorithm independent of that whether the particular algorithm may or may not use
the process of generating the candidate sets for identifying the frequent item sets. The proposed
algorithm will use the concept of “percentage of participation” instead of occurrence frequency for
every possible combination of items or item sets. The concept of percentage of participation will be
calculated based on the minimum support threshold for each item set [13].
3. Zhigang Zheng Yanchang Zhao Ziye Zuo Longbing Cao in” Negative-GSP: An Efficient Method
for Mining Negative Sequential Patterns” proposes a new method for mining negative sequential
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME
118
patterns, called Negative-GSP. Negative-GSP can find negative sequential patterns effectively and
efficiently [14]. They also designed effective pruning method to reduce the number of candidates.
4. Nancy P. Lin, Wei-Hua Hao, Hung-Jen Chen, Chung-I Chang, Hao-En Chuehin in “An Algorithm
for Mining Strong Negative Fuzzy Sequential Patterns” proposed a method for mining negative
fuzzy sequential patterns, called NFSPM. In this method, the absences of fuzzy item sets are also
considered. Besides, only sequences with high degree of interestingness can be selected as negative
fuzzy sequential patterns [15].
5. Xiangjun Dong Zhigang Zheng,Longbing Cao Yanchang Zhao in” e-NSP: Efficient Negative
Sequential Pattern Mining Based on Identified Positive Patterns Without Database Rescanning”
propose an efficient algorithm for mining NSP, called e-NSP, which mines for NSP by only
involving the identified PSP, without re-scanning databases. First, negative containment is defined to
determine whether or not a data sequence contains a negative sequence. Second, an efficient
approach is proposed to convert the negative containment problem to a positive containment
problem. The supports of NSC are then calculated based only on the corresponding PSP. Finally, a
simple but efficient approach is proposed to generate NSC [17].
6. Vedant Rastogi Vinay Kumar Khare in” Apriori Based: Mining Positive and Negative Frequent
Sequential Patterns “proposed an algorithm for mining exception rules [18].
7. Yanchang Zhao, Huaifeng Zhang, Longbing Cao,Chengqi Zhang, and Hans Bohlscheid in”
Efficient Mining of Event-Oriented Negative Sequential Rules” This paper analyzes three types of
negative sequential rules and presents a new technique to find event-oriented negative sequential
rules[19].
8. Zhigang Zheng, Yanchang Zhao, Ziye Zuo, and Longbing Cao in” An Efficient GA-Based
Algorithm for Mining Negative Sequential Patterns” This paper proposes a Genetic Algorithm (GA)
based algorithm to find negative sequential patterns with novel crossover and mutation operations,
which are efficient at passing good genes on to next generations without generating candidates. An
effective dynamic fitness function and a pruning method are also provided to improve performance
[20].
9. Vinay Kumar Khare,Vedant Rastogi in” Mining Positive and Negative Sequential Pattern in
Incremental Transaction Databases” In this approach we can easily update existing transaction
database with the appended transaction database. The Merged transaction database (updated
database) will be mined to get the Positive & Negative Sequential patterns. Merging of Existing and
Appended database is performed by using the updated compact pattern tree approach. Proposed
model is Mining Positive and Negative Sequential patterns in incremental transaction Databases. To
mine Positive and Negative Sequential patterns in incremental transaction database in this Approach
we can update, existing transaction database with appended transaction database by the use of
Updated Compact pattern tree approach then according to their support the new updated transaction
database table is maintained and we can mine positive and negative sequential patterns with the help
of CPNFSP algorithms proposed by Weimin Quyang and Qinhua Huang [21][22].
10. Y. Li Y, A. Algarni, and N. Zhong in” Mining Positive and Negative Patterns for Relevance
Feature Discovery” Proposed An innovative approach to evaluate weights of terms according to both
their specificity and their distributions in the higher level features, where the higher level features
include both positive and negative patterns[23].
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME
119
S.NO. TITLE OF WORK AUTHORS PROPOSED WORK YEAR
1 Mining Strong
Positive and
Negative Sequential
Patterns
Nancy P. Lin, Wei-
Hua Hao, Hung-Jen
Chen,
Chung-I Chang, Hao-
En Chueh
Proposed a method for mining strong positive and
negative sequential patterns, called PNSPM.
2008
2 Sequential Pattern
Mining With
Multiple
Minimum Supports
in Progressive
Databases
K.M.V.Madan Kumar,
P.V.S.Srinivas and
C.Raghavendra Rao
Proposed a new approach which can be applied on
any algorithm independent of that whether the
particular algorithm may or may not use the
process of generating the candidate sets for
identifying the frequent item sets
2012
3 Negative-GSP: An
Efficient Method for
Mining Negative
Sequential Patterns
Zhigang Zheng
Yanchang Zhao Ziye
Zuo Longbing Cao
Proposes a new method for mining negative
sequential patterns, called Negative-GSP.
Negative-GSP can find negative sequential patterns
effectively and efficiently.
2009
4 An Algorithm for
Mining Strong
Negative Fuzzy
Sequential Patterns
Nancy P. Lin, Wei-
Hua Hao, Hung-Jen
Chen,
Chung-I Chang, Hao-
En Chueh
Proposed a method for mining negative fuzzy
sequential patterns, called NFSPM.
2007
5 e-NSP: Efficient
Negative Sequential
Pattern Mining
Based on Identified
Positive Patterns
Without Database
Rescanning
Xiangjun Dong
Zhigang
Zheng,Longbing Cao
Yanchang Zhao
Proposed an efficient algorithm for mining NSP,
called e-NSP, which mines for NSP by only
involving the identified PSP, without re-scanning
databases.
2011
6 Apriori Based:
Mining Positive and
Negative
Frequent Sequential
Patterns
Vedant Rastogi Vinay
Kumar Khare
Algorithm for mining exception rules. 2012
7 Efficient Mining of
Event-Oriented
Negative Sequential
Rules
Yanchang Zhao,
Huaifeng Zhang,
Longbing Cao,
Chengqi Zhang, and
Hans Bohlscheid
This paper analyzes three types of negative
sequential rules and presents a new technique to
find event-oriented negative sequential rules.
-----
8 An Efficient GA-
Based Algorithm for
Mining Negative
Sequential Patterns
Zhigang Zheng,
Yanchang Zhao, Ziye
Zuo, and Longbing
Cao
This paper proposes a Genetic Algorithm (GA)
based algorithm to find negative sequential
patterns with novel crossover and mutation
operations, which are efficient at passing good
genes on to next generations without generating
candidates.
2010
9 Mining Positive and
Negative Sequential
Pattern in
Incremental
Transaction
Databases
Vinay Kumar
Khare,Vedant Rastogi
In this approach we can easily update existing
transaction database with the appended transaction
database. The Merged transaction database
(updated database) will be mined to get the
Positive & Negative Sequential patterns. Merging
of Existing and Appended database is performed
by using the updated compact pattern tree
approach.
2013
10 Mining Positive and
Negative
Patterns for
Relevance Feature
Discovery
Y. Li Y, A. Algarni,
and N. Zhong
Proposed An innovative approach to evaluate
weights of terms according to both their specificity
and their distributions in the higher level features
where the higher level features include both
positive and negative patterns.
2010
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME
120
III. CONCLUSION
This paper provides the definitions for sequential data, sequential pattern mining, positive
sequential patterns and negative sequential patterns. It also explains about the importance of negative
sequential patterns and also the applications sequential patterns. This paper acts as a base for the
researchers who want to do research on negative sequential patterns.
REFERENCES
[1]. Zhigang Zheng, “Negative Sequential Pattern Mining”, A thesis submitted in partial fulfillment
of the requirements for the degree of Doctor of Philosophy, January 2012.
[2]. Han, J., Cheng, H., Xin, D. & Yan, X. (2007), ‘frequent pattern mining: current status and future
directions’, Data Mining and Knowledge Discovery 15, 55–86.
[3]. http://www.anderson.ucla.edu/faculty/jason.frand/teacher/technologies/palace/datamining.htm.
[4]. http://searchbusinessanalytics.techtarget.com/definition/association-rules-in-data.htm.
[5]. Agrawal R,Srikant R. “Mining sequential patterns”, In the Proc.1995 IntConf. On Data
Engineering, Taibei, Taiwan, March1995.
[6]. R. Agrawal and R. Srikant, Mining Sequential Patterns, Proceedings of the Elventh International
Conference on Data Engineering, Taipei, Taiwan, March, 1995, pp. 3-14.
[7]. M. J. Zaki, Efficient Enumeration of Frequent Sequences, Proceedings of the Seventh CIKM,
1998.
[8]. J. Ayres, J. E. Gehrke, T. Yiu, and J. Flannick, Sequential Pattern Mining Using Bitmaps,
Proceedings of the Eighth ACM SIGKDD International Conference on Knowledge Discovery
and Data Mining. Edmonton, Alberta,Canada, July 2002.
[9]. X. Yan, J. Han, and R. Afshar, CloSpan: Mining Closed Sequential Patterns in Large Datasets,
Proceedings of 2003 SIAM International Conference Data Mining (SDM’03), 2003,
pp. 166-177.
[10]. M. Zaki, SPADE: An Efficient Algorithm for Mining Frequent sequences, Machine Learning,
vol. 40, 2001, pp. 31-60.
[11]. M. Zaki, Efficient Enumeration of Frequent Sequences, Proceedings of the Seventh International
Conference Information and Knowledge Management (CIKM’98), 1998, pp. 68-75.
[12]. NANCY P. LIN, HUNG-JEN CHEN, WEI-HUA HAO, HAO-EN CHUEH, CHUNG-I
CHANG, “Mining Strong Positive and Negative Sequential Patterns” WSEAS
TRANSACTIONS on COMPUTERS, Issue 3, Volume 7, March 2008, ISSN: 1109-2750.
[13]. K.M.V.Madan Kumar1, P.V.S.Srinivas2 and C.Raghavendra Rao3, “Sequential Pattern Mining
With Multiple Minimum Supports in Progressive Databases” International Journal of Database
Management Systems ( IJDMS ) Vol.4, No.4, August 2012.
[14]. Zhigang Zheng Yanchang Zhao Ziye Zuo Longbing Cao, “Negative-GSP: An Efficient Method
for Mining Negative Sequential Patterns”, Australian Computer Society, Inc. (AusDM 2009),
Melbourne, Australia. Conferences in Research and Practice in Information Technology
(CRPIT), Vol. 101,
[15]. Nancy P. Lin, Wei-Hua Hao, Hung-Jen Chen, Chung-I Chang, Hao-En Chueh, “An Algorithm
for Mining Strong Negative Fuzzy Sequential Patterns”, INTERNATIONAL JOURNAL OF
COMPUTERS Issue 3, Volume 1, 2007.
[16]. Sequential Pattern Mining ppt.
www.is.informatik.uni-duisburg.de/.../im.../MiningSequentialPatterns.ppt.
[17]. Xiangjun Dong Zhigang Zheng,Longbing Cao Yanchang Zhao, “e-NSP: Efficient Negative
Sequential Pattern Mining Based on Identified Positive Patterns Without Database Rescanning
“CIKM’11, October 24–28, 2011, Glasgow, Scotland, UK. Copyright 2011 ACM 978-1-4503-
0717-8/11/10.
International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print),
ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME
121
[18]. Vedant Rastogi Vinay Kumar Khare, “Apriori Based: Mining Positive and Negative Frequent
Sequential Patterns” International Journal of Latest Trends in Engineering and Technology
(IJLTET), Vol. 1 Issue 3 September 2012, ISSN: 2278-621X.
[19]. Yanchang Zhao, Huaifeng Zhang, Longbing Cao, Chengqi Zhang, and Hans Bohlscheid,
“Efficient Mining of Event-Oriented Negative Sequential Rules”.
[20]. Zhigang Zheng, Yanchang Zhao, Ziye Zuo, and Longbing Cao, “An Efficient GA-Based
Algorithm for Mining Negative Sequential Patterns” M.J. Zaki et al. (Eds.): PAKDD 2010, Part
I, LNAI 6118, pp. 262–273, 2010. _c Springer-Verlag Berlin Heidelberg 2010.
[21]. Vinay Kumar Khare,Vedant Rastogi, “Mining Positive and Negative Sequential Pattern in
Incremental Transaction Databases” International Journal of Computer Applications
(0975 – 8887) Volume 71– No.1, June 2013.
[22]. Weimin Ouyang, Qinhua Huang, “Mining Positive and Negative Sequential Patterns with
Multiple Minimum Supports in Large Transaction Databases”, IEEE Second WRI Global
Congress on Intelligent Systems 2010.
[23]. Y, A. Algarni, and N. Zhong, “Mining Positive and Negative Patterns for Relevance Feature
Discovery” 16th ACM SIGKDD Conference on Knowledge Discovery and Data Mining,
Washington, DC (KDD 2010), pp. 753-762.
[24]. A. K. Payra and S. Saha, “Generic Approach of Pattern Matching of Amino Acid Sequences
using Matching Policy & Pattern Policy”, International Journal of Computer Engineering &
Technology (IJCET), Volume 5, Issue 2, 2014, pp. 130 - 139, ISSN Print: 0976 – 6367,
ISSN Online: 0976 – 6375.
AUTHOR’S DETAIL
K. Sujatha is pursuing her Ph.D. in Krishna University, Machilipatnam, A.P. She
is interested doing research in data mining. She has three international journal
publications in data mining. She has two national journal publications. She has a
total of 10 years experience in teaching. She is working as associate professor in
CSE Department, Malineni Lakshmaiah Engineering College, Singaraya konda,
Prakasam District. A.P.
Prof. K. Rajasekhara Rao is a Professor of Computer Science & Engineering at
K.L.University and presently holding several key positions in K.L.University, as
Dean (Administration) & Principal, K L College of Engineering (Autonomous).
Having more than 26 years of teaching and research experience, Prof. Rao is
actively engaged in the research related to Embedded Systems, Software
Engineering and Knowledge Management. He had obtained Ph.D in Computer
Science & Engineering from Acharya Nagarjuna University (ANU), Guntur,
Andhra Pradesh and produced 58 publications in various International/National
Journals and Conferences. Prof.KRR was awarded with “Patron Award” for his outstanding
contribution, by India’s prestigious professional society Computer Society of India (CSI) for the
year 2011 in Ahmedabad. He has been adjudged as best teacher and has been honored with “Best
Teacher Award”, seven times.
Dr. Rajasekhar is a Fellow of IETE, Life Member’s of IE, ISTE, ISCA & CSI
(Computer Society of India). Dr.Rajasekhar is nominated as sectional committee member for
Engineering Sciences of 100th
Annual Convention of Indian Science Congress Association. He has
been the past Chairman of the Koneru Chapter of CSI.

Weitere ähnliche Inhalte

Was ist angesagt?

A SURVEY ON DATA MINING IN STEEL INDUSTRIES
A SURVEY ON DATA MINING IN STEEL INDUSTRIESA SURVEY ON DATA MINING IN STEEL INDUSTRIES
A SURVEY ON DATA MINING IN STEEL INDUSTRIESIJCSES Journal
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYCLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYEditor IJMTER
 
A Comparative Study of Various Data Mining Techniques: Statistics, Decision T...
A Comparative Study of Various Data Mining Techniques: Statistics, Decision T...A Comparative Study of Various Data Mining Techniques: Statistics, Decision T...
A Comparative Study of Various Data Mining Techniques: Statistics, Decision T...Editor IJCATR
 
Application of data mining tools for
Application of data mining tools forApplication of data mining tools for
Application of data mining tools forIJDKP
 
IRJET - Employee Performance Prediction System using Data Mining
IRJET - Employee Performance Prediction System using Data MiningIRJET - Employee Performance Prediction System using Data Mining
IRJET - Employee Performance Prediction System using Data MiningIRJET Journal
 
V2 i9 ijertv2is90699-1
V2 i9 ijertv2is90699-1V2 i9 ijertv2is90699-1
V2 i9 ijertv2is90699-1warishali570
 
IRJET-Performance Enhancement in Machine Learning System using Hybrid Bee Col...
IRJET-Performance Enhancement in Machine Learning System using Hybrid Bee Col...IRJET-Performance Enhancement in Machine Learning System using Hybrid Bee Col...
IRJET-Performance Enhancement in Machine Learning System using Hybrid Bee Col...IRJET Journal
 
Data mining techniques
Data mining techniquesData mining techniques
Data mining techniqueseSAT Journals
 
GI-ANFIS APPROACH FOR ENVISAGE HEART ATTACK DISEASE USING DATA MINING TECHNIQUES
GI-ANFIS APPROACH FOR ENVISAGE HEART ATTACK DISEASE USING DATA MINING TECHNIQUESGI-ANFIS APPROACH FOR ENVISAGE HEART ATTACK DISEASE USING DATA MINING TECHNIQUES
GI-ANFIS APPROACH FOR ENVISAGE HEART ATTACK DISEASE USING DATA MINING TECHNIQUESAM Publications
 
Fault detection of imbalanced data using incremental clustering
Fault detection of imbalanced data using incremental clusteringFault detection of imbalanced data using incremental clustering
Fault detection of imbalanced data using incremental clusteringIRJET Journal
 
An Efficient Compressed Data Structure Based Method for Frequent Item Set Mining
An Efficient Compressed Data Structure Based Method for Frequent Item Set MiningAn Efficient Compressed Data Structure Based Method for Frequent Item Set Mining
An Efficient Compressed Data Structure Based Method for Frequent Item Set Miningijsrd.com
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET Journal
 
Analysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetAnalysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetIRJET Journal
 
Survey of the Euro Currency Fluctuation by Using Data Mining
Survey of the Euro Currency Fluctuation by Using Data MiningSurvey of the Euro Currency Fluctuation by Using Data Mining
Survey of the Euro Currency Fluctuation by Using Data Miningijcsit
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Sciencetheijes
 
Dissertation data analysis in management science tutors india.com for my man...
Dissertation data analysis in management science  tutors india.com for my man...Dissertation data analysis in management science  tutors india.com for my man...
Dissertation data analysis in management science tutors india.com for my man...Tutors India
 
IRJET-Survey on Data Mining Techniques for Disease Prediction
IRJET-Survey on Data Mining Techniques for Disease PredictionIRJET-Survey on Data Mining Techniques for Disease Prediction
IRJET-Survey on Data Mining Techniques for Disease PredictionIRJET Journal
 
A Survey of Modern Data Classification Techniques
A Survey of Modern Data Classification TechniquesA Survey of Modern Data Classification Techniques
A Survey of Modern Data Classification Techniquesijsrd.com
 

Was ist angesagt? (20)

A SURVEY ON DATA MINING IN STEEL INDUSTRIES
A SURVEY ON DATA MINING IN STEEL INDUSTRIESA SURVEY ON DATA MINING IN STEEL INDUSTRIES
A SURVEY ON DATA MINING IN STEEL INDUSTRIES
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYCLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
 
A Comparative Study of Various Data Mining Techniques: Statistics, Decision T...
A Comparative Study of Various Data Mining Techniques: Statistics, Decision T...A Comparative Study of Various Data Mining Techniques: Statistics, Decision T...
A Comparative Study of Various Data Mining Techniques: Statistics, Decision T...
 
Application of data mining tools for
Application of data mining tools forApplication of data mining tools for
Application of data mining tools for
 
IRJET - Employee Performance Prediction System using Data Mining
IRJET - Employee Performance Prediction System using Data MiningIRJET - Employee Performance Prediction System using Data Mining
IRJET - Employee Performance Prediction System using Data Mining
 
V2 i9 ijertv2is90699-1
V2 i9 ijertv2is90699-1V2 i9 ijertv2is90699-1
V2 i9 ijertv2is90699-1
 
Z36149154
Z36149154Z36149154
Z36149154
 
4113ijaia09
4113ijaia094113ijaia09
4113ijaia09
 
IRJET-Performance Enhancement in Machine Learning System using Hybrid Bee Col...
IRJET-Performance Enhancement in Machine Learning System using Hybrid Bee Col...IRJET-Performance Enhancement in Machine Learning System using Hybrid Bee Col...
IRJET-Performance Enhancement in Machine Learning System using Hybrid Bee Col...
 
Data mining techniques
Data mining techniquesData mining techniques
Data mining techniques
 
GI-ANFIS APPROACH FOR ENVISAGE HEART ATTACK DISEASE USING DATA MINING TECHNIQUES
GI-ANFIS APPROACH FOR ENVISAGE HEART ATTACK DISEASE USING DATA MINING TECHNIQUESGI-ANFIS APPROACH FOR ENVISAGE HEART ATTACK DISEASE USING DATA MINING TECHNIQUES
GI-ANFIS APPROACH FOR ENVISAGE HEART ATTACK DISEASE USING DATA MINING TECHNIQUES
 
Fault detection of imbalanced data using incremental clustering
Fault detection of imbalanced data using incremental clusteringFault detection of imbalanced data using incremental clustering
Fault detection of imbalanced data using incremental clustering
 
An Efficient Compressed Data Structure Based Method for Frequent Item Set Mining
An Efficient Compressed Data Structure Based Method for Frequent Item Set MiningAn Efficient Compressed Data Structure Based Method for Frequent Item Set Mining
An Efficient Compressed Data Structure Based Method for Frequent Item Set Mining
 
IRJET- Medical Data Mining
IRJET- Medical Data MiningIRJET- Medical Data Mining
IRJET- Medical Data Mining
 
Analysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetAnalysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease Dataset
 
Survey of the Euro Currency Fluctuation by Using Data Mining
Survey of the Euro Currency Fluctuation by Using Data MiningSurvey of the Euro Currency Fluctuation by Using Data Mining
Survey of the Euro Currency Fluctuation by Using Data Mining
 
The International Journal of Engineering and Science
The International Journal of Engineering and ScienceThe International Journal of Engineering and Science
The International Journal of Engineering and Science
 
Dissertation data analysis in management science tutors india.com for my man...
Dissertation data analysis in management science  tutors india.com for my man...Dissertation data analysis in management science  tutors india.com for my man...
Dissertation data analysis in management science tutors india.com for my man...
 
IRJET-Survey on Data Mining Techniques for Disease Prediction
IRJET-Survey on Data Mining Techniques for Disease PredictionIRJET-Survey on Data Mining Techniques for Disease Prediction
IRJET-Survey on Data Mining Techniques for Disease Prediction
 
A Survey of Modern Data Classification Techniques
A Survey of Modern Data Classification TechniquesA Survey of Modern Data Classification Techniques
A Survey of Modern Data Classification Techniques
 

Andere mochten auch

Harnessing the cloud for securely outsourcing large scale systems of linear e...
Harnessing the cloud for securely outsourcing large scale systems of linear e...Harnessing the cloud for securely outsourcing large scale systems of linear e...
Harnessing the cloud for securely outsourcing large scale systems of linear e...Muthu Samy
 
Açıköğretimde e-Öğrenme
Açıköğretimde e-ÖğrenmeAçıköğretimde e-Öğrenme
Açıköğretimde e-ÖğrenmeMehmet Emin Mutlu
 
JPN1413 An Energy-Balanced Routing Method Based on Forward-Aware Factor for...
JPN1413   An Energy-Balanced Routing Method Based on Forward-Aware Factor for...JPN1413   An Energy-Balanced Routing Method Based on Forward-Aware Factor for...
JPN1413 An Energy-Balanced Routing Method Based on Forward-Aware Factor for...chennaijp
 
Estructura tc mtto_equipos_computo_839312
Estructura tc mtto_equipos_computo_839312Estructura tc mtto_equipos_computo_839312
Estructura tc mtto_equipos_computo_839312jeferpc
 
An Integrated Framework for Parameter-based Optimization of Scientific Workflows
An Integrated Framework for Parameter-based Optimization of Scientific WorkflowsAn Integrated Framework for Parameter-based Optimization of Scientific Workflows
An Integrated Framework for Parameter-based Optimization of Scientific Workflowsvijayskumar
 
Kādēļ vērts veicināt tehnisko jaunradi? Darba devēju skatījums
Kādēļ vērts veicināt tehnisko jaunradi? Darba devēju skatījumsKādēļ vērts veicināt tehnisko jaunradi? Darba devēju skatījums
Kādēļ vērts veicināt tehnisko jaunradi? Darba devēju skatījumsanitaliice
 

Andere mochten auch (9)

Harnessing the cloud for securely outsourcing large scale systems of linear e...
Harnessing the cloud for securely outsourcing large scale systems of linear e...Harnessing the cloud for securely outsourcing large scale systems of linear e...
Harnessing the cloud for securely outsourcing large scale systems of linear e...
 
Açıköğretimde e-Öğrenme
Açıköğretimde e-ÖğrenmeAçıköğretimde e-Öğrenme
Açıköğretimde e-Öğrenme
 
JPN1413 An Energy-Balanced Routing Method Based on Forward-Aware Factor for...
JPN1413   An Energy-Balanced Routing Method Based on Forward-Aware Factor for...JPN1413   An Energy-Balanced Routing Method Based on Forward-Aware Factor for...
JPN1413 An Energy-Balanced Routing Method Based on Forward-Aware Factor for...
 
Estructura tc mtto_equipos_computo_839312
Estructura tc mtto_equipos_computo_839312Estructura tc mtto_equipos_computo_839312
Estructura tc mtto_equipos_computo_839312
 
An Integrated Framework for Parameter-based Optimization of Scientific Workflows
An Integrated Framework for Parameter-based Optimization of Scientific WorkflowsAn Integrated Framework for Parameter-based Optimization of Scientific Workflows
An Integrated Framework for Parameter-based Optimization of Scientific Workflows
 
Function notes 2
Function notes 2Function notes 2
Function notes 2
 
Achm corporaciones(1)
Achm corporaciones(1)Achm corporaciones(1)
Achm corporaciones(1)
 
Kādēļ vērts veicināt tehnisko jaunradi? Darba devēju skatījums
Kādēļ vērts veicināt tehnisko jaunradi? Darba devēju skatījumsKādēļ vērts veicināt tehnisko jaunradi? Darba devēju skatījums
Kādēļ vērts veicināt tehnisko jaunradi? Darba devēju skatījums
 
ME2011 presentation by Faci
ME2011 presentation by FaciME2011 presentation by Faci
ME2011 presentation by Faci
 

Ähnlich wie 50120140503013

A comparative analysis of data mining tools for performance mapping of wlan data
A comparative analysis of data mining tools for performance mapping of wlan dataA comparative analysis of data mining tools for performance mapping of wlan data
A comparative analysis of data mining tools for performance mapping of wlan dataIAEME Publication
 
Performance analysis of data mining algorithms with neural network
Performance analysis of data mining algorithms with neural networkPerformance analysis of data mining algorithms with neural network
Performance analysis of data mining algorithms with neural networkIAEME Publication
 
A genetic based research framework 3
A genetic based research framework 3A genetic based research framework 3
A genetic based research framework 3prj_publication
 
Mining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
Mining of Prevalent Ailments in a Health Database Using Fp-Growth AlgorithmMining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
Mining of Prevalent Ailments in a Health Database Using Fp-Growth AlgorithmWaqas Tariq
 
Mining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
Mining of Prevalent Ailments in a Health Database Using Fp-Growth AlgorithmMining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
Mining of Prevalent Ailments in a Health Database Using Fp-Growth AlgorithmWaqas Tariq
 
Parametric comparison based on split criterion on classification algorithm
Parametric comparison based on split criterion on classification algorithmParametric comparison based on split criterion on classification algorithm
Parametric comparison based on split criterion on classification algorithmIAEME Publication
 
Data reduction techniques to analyze nsl kdd dataset
Data reduction techniques to analyze nsl kdd datasetData reduction techniques to analyze nsl kdd dataset
Data reduction techniques to analyze nsl kdd datasetIAEME Publication
 
Anomaly detection via eliminating data redundancy and rectifying data error i...
Anomaly detection via eliminating data redundancy and rectifying data error i...Anomaly detection via eliminating data redundancy and rectifying data error i...
Anomaly detection via eliminating data redundancy and rectifying data error i...nalini manogaran
 
A machine learning model for predicting innovation effort of firms
A machine learning model for predicting innovation effort of  firmsA machine learning model for predicting innovation effort of  firms
A machine learning model for predicting innovation effort of firmsIJECEIAES
 
A STUDY OF TRADITIONAL DATA ANALYSIS AND SENSOR DATA ANALYTICS
A STUDY OF TRADITIONAL DATA ANALYSIS AND SENSOR DATA ANALYTICSA STUDY OF TRADITIONAL DATA ANALYSIS AND SENSOR DATA ANALYTICS
A STUDY OF TRADITIONAL DATA ANALYSIS AND SENSOR DATA ANALYTICSijistjournal
 
Prediction of customer behavior using cma
Prediction of customer behavior using cmaPrediction of customer behavior using cma
Prediction of customer behavior using cmaiaemedu
 
An efficient algorithm for sequence generation in data mining
An efficient algorithm for sequence generation in data miningAn efficient algorithm for sequence generation in data mining
An efficient algorithm for sequence generation in data miningijcisjournal
 
An Analysis of Outlier Detection through clustering method
An Analysis of Outlier Detection through clustering methodAn Analysis of Outlier Detection through clustering method
An Analysis of Outlier Detection through clustering methodIJAEMSJORNAL
 
A Brief Overview On Frequent Pattern Mining Algorithms
A Brief Overview On Frequent Pattern Mining AlgorithmsA Brief Overview On Frequent Pattern Mining Algorithms
A Brief Overview On Frequent Pattern Mining AlgorithmsSara Alvarez
 
Subgraph relative frequency approach for extracting interesting substructur
Subgraph relative frequency approach for extracting interesting substructurSubgraph relative frequency approach for extracting interesting substructur
Subgraph relative frequency approach for extracting interesting substructurIAEME Publication
 
Mining frequent itemsets (mfi) over
Mining frequent itemsets (mfi) overMining frequent itemsets (mfi) over
Mining frequent itemsets (mfi) overIJDKP
 
Review Over Sequential Rule Mining
Review Over Sequential Rule MiningReview Over Sequential Rule Mining
Review Over Sequential Rule Miningijsrd.com
 
Ijarcet vol-2-issue-4-1393-1397
Ijarcet vol-2-issue-4-1393-1397Ijarcet vol-2-issue-4-1393-1397
Ijarcet vol-2-issue-4-1393-1397Editor IJARCET
 
A NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEM
A NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEMA NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEM
A NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEMIJNSA Journal
 

Ähnlich wie 50120140503013 (20)

A comparative analysis of data mining tools for performance mapping of wlan data
A comparative analysis of data mining tools for performance mapping of wlan dataA comparative analysis of data mining tools for performance mapping of wlan data
A comparative analysis of data mining tools for performance mapping of wlan data
 
Performance analysis of data mining algorithms with neural network
Performance analysis of data mining algorithms with neural networkPerformance analysis of data mining algorithms with neural network
Performance analysis of data mining algorithms with neural network
 
A genetic based research framework 3
A genetic based research framework 3A genetic based research framework 3
A genetic based research framework 3
 
Mining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
Mining of Prevalent Ailments in a Health Database Using Fp-Growth AlgorithmMining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
Mining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
 
Mining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
Mining of Prevalent Ailments in a Health Database Using Fp-Growth AlgorithmMining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
Mining of Prevalent Ailments in a Health Database Using Fp-Growth Algorithm
 
Parametric comparison based on split criterion on classification algorithm
Parametric comparison based on split criterion on classification algorithmParametric comparison based on split criterion on classification algorithm
Parametric comparison based on split criterion on classification algorithm
 
50120140503019
5012014050301950120140503019
50120140503019
 
Data reduction techniques to analyze nsl kdd dataset
Data reduction techniques to analyze nsl kdd datasetData reduction techniques to analyze nsl kdd dataset
Data reduction techniques to analyze nsl kdd dataset
 
Anomaly detection via eliminating data redundancy and rectifying data error i...
Anomaly detection via eliminating data redundancy and rectifying data error i...Anomaly detection via eliminating data redundancy and rectifying data error i...
Anomaly detection via eliminating data redundancy and rectifying data error i...
 
A machine learning model for predicting innovation effort of firms
A machine learning model for predicting innovation effort of  firmsA machine learning model for predicting innovation effort of  firms
A machine learning model for predicting innovation effort of firms
 
A STUDY OF TRADITIONAL DATA ANALYSIS AND SENSOR DATA ANALYTICS
A STUDY OF TRADITIONAL DATA ANALYSIS AND SENSOR DATA ANALYTICSA STUDY OF TRADITIONAL DATA ANALYSIS AND SENSOR DATA ANALYTICS
A STUDY OF TRADITIONAL DATA ANALYSIS AND SENSOR DATA ANALYTICS
 
Prediction of customer behavior using cma
Prediction of customer behavior using cmaPrediction of customer behavior using cma
Prediction of customer behavior using cma
 
An efficient algorithm for sequence generation in data mining
An efficient algorithm for sequence generation in data miningAn efficient algorithm for sequence generation in data mining
An efficient algorithm for sequence generation in data mining
 
An Analysis of Outlier Detection through clustering method
An Analysis of Outlier Detection through clustering methodAn Analysis of Outlier Detection through clustering method
An Analysis of Outlier Detection through clustering method
 
A Brief Overview On Frequent Pattern Mining Algorithms
A Brief Overview On Frequent Pattern Mining AlgorithmsA Brief Overview On Frequent Pattern Mining Algorithms
A Brief Overview On Frequent Pattern Mining Algorithms
 
Subgraph relative frequency approach for extracting interesting substructur
Subgraph relative frequency approach for extracting interesting substructurSubgraph relative frequency approach for extracting interesting substructur
Subgraph relative frequency approach for extracting interesting substructur
 
Mining frequent itemsets (mfi) over
Mining frequent itemsets (mfi) overMining frequent itemsets (mfi) over
Mining frequent itemsets (mfi) over
 
Review Over Sequential Rule Mining
Review Over Sequential Rule MiningReview Over Sequential Rule Mining
Review Over Sequential Rule Mining
 
Ijarcet vol-2-issue-4-1393-1397
Ijarcet vol-2-issue-4-1393-1397Ijarcet vol-2-issue-4-1393-1397
Ijarcet vol-2-issue-4-1393-1397
 
A NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEM
A NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEMA NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEM
A NEW HYBRID ALGORITHM FOR BUSINESS INTELLIGENCE RECOMMENDER SYSTEM
 

Mehr von IAEME Publication

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME Publication
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...IAEME Publication
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSIAEME Publication
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSIAEME Publication
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSIAEME Publication
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSIAEME Publication
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOIAEME Publication
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IAEME Publication
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYIAEME Publication
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...IAEME Publication
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEIAEME Publication
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...IAEME Publication
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...IAEME Publication
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...IAEME Publication
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...IAEME Publication
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...IAEME Publication
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...IAEME Publication
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...IAEME Publication
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...IAEME Publication
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTIAEME Publication
 

Mehr von IAEME Publication (20)

IAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdfIAEME_Publication_Call_for_Paper_September_2022.pdf
IAEME_Publication_Call_for_Paper_September_2022.pdf
 
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
MODELING AND ANALYSIS OF SURFACE ROUGHNESS AND WHITE LATER THICKNESS IN WIRE-...
 
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURSA STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
A STUDY ON THE REASONS FOR TRANSGENDER TO BECOME ENTREPRENEURS
 
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURSBROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
BROAD UNEXPOSED SKILLS OF TRANSGENDER ENTREPRENEURS
 
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONSDETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
DETERMINANTS AFFECTING THE USER'S INTENTION TO USE MOBILE BANKING APPLICATIONS
 
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONSANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
ANALYSE THE USER PREDILECTION ON GPAY AND PHONEPE FOR DIGITAL TRANSACTIONS
 
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINOVOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
VOICE BASED ATM FOR VISUALLY IMPAIRED USING ARDUINO
 
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
IMPACT OF EMOTIONAL INTELLIGENCE ON HUMAN RESOURCE MANAGEMENT PRACTICES AMONG...
 
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMYVISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
VISUALISING AGING PARENTS & THEIR CLOSE CARERS LIFE JOURNEY IN AGING ECONOMY
 
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
A STUDY ON THE IMPACT OF ORGANIZATIONAL CULTURE ON THE EFFECTIVENESS OF PERFO...
 
GANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICEGANDHI ON NON-VIOLENT POLICE
GANDHI ON NON-VIOLENT POLICE
 
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
A STUDY ON TALENT MANAGEMENT AND ITS IMPACT ON EMPLOYEE RETENTION IN SELECTED...
 
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
ATTRITION IN THE IT INDUSTRY DURING COVID-19 PANDEMIC: LINKING EMOTIONAL INTE...
 
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
INFLUENCE OF TALENT MANAGEMENT PRACTICES ON ORGANIZATIONAL PERFORMANCE A STUD...
 
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
A STUDY OF VARIOUS TYPES OF LOANS OF SELECTED PUBLIC AND PRIVATE SECTOR BANKS...
 
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
EXPERIMENTAL STUDY OF MECHANICAL AND TRIBOLOGICAL RELATION OF NYLON/BaSO4 POL...
 
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
ROLE OF SOCIAL ENTREPRENEURSHIP IN RURAL DEVELOPMENT OF INDIA - PROBLEMS AND ...
 
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
OPTIMAL RECONFIGURATION OF POWER DISTRIBUTION RADIAL NETWORK USING HYBRID MET...
 
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
APPLICATION OF FRUGAL APPROACH FOR PRODUCTIVITY IMPROVEMENT - A CASE STUDY OF...
 
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENTA MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
A MULTIPLE – CHANNEL QUEUING MODELS ON FUZZY ENVIRONMENT
 

Kürzlich hochgeladen

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 

Kürzlich hochgeladen (20)

IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 

50120140503013

  • 1. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME 115 FREQUENT NEGATIVE SEQUENTIAL PATTERNS –A SURVEY Sujatha Kamepalli #1 , Dr. Raja Sekhara Rao Kurra*2 #1 Research Scholar, CSE Department, Krishna University Machilipatnam, Andhra Pradesh, India *2 Dean Administration, CSE Department, K.L. University Guntur, Andhra Pradesh, India ABSTRACT Data mining is the extraction of hidden predictive information from large databases, is a powerful new technology with great potential to help companies focus on the most important information in their data warehouses. A frequent pattern is defined as a pattern, which can be a set of items, either with or without an order, occurs together in a database frequent enough to satisfy a certain minimum threshold. Sequential pattern mining is an important task in data mining. It provides an effective way to get special patterns from sequence data. Different from traditional positive sequential patterns, negative sequential patterns focus on negative relationship between items sets, in which case, absent items are taken into consideration. This paper provides the analysis of different algorithms used for negative sequential patterns. Keywords: Data Mining, Frequent Pattern, Sequential Pattern Mining, Sequence Data, Positive Sequential Patterns, Negative Sequential Patterns. I. INTRODUCTION Data mining is the extraction of hidden predictive information from large databases, is a powerful new technology with great potential to help companies focus on the most important information in their data warehouses. The Apriori-based algorithms find frequent item sets based upon an iterative bottom-up approach to generate candidate item sets. Since the first proposal of association rules mining by R. Agrawal [3, 4], Nowadays, with the rapid development of information technology, especially the web service-based application, service-oriented architecture and cloud- computing, continually expanding data are integrated to generate useful information. Many techniques have been used for data mining. Association rules mining (ARM) is one of the most INTERNATIONAL JOURNAL OF COMPUTER ENGINEERING & TECHNOLOGY (IJCET) ISSN 0976 – 6367(Print) ISSN 0976 – 6375(Online) Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME: www.iaeme.com/ijcet.asp Journal Impact Factor (2014): 8.5328 (Calculated by GISI) www.jifactor.com IJCET © I A E M E
  • 2. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME 116 useful techniques. The challenges associated with ARM, especially for parallel and distributed data mining, include minimizing I/O, increasing processing speed and reducing communication cost [5]. A major concern in ARM today is to continue to improve algorithm performance. A frequent pattern is defined as a pattern, which can be a set of items, either with or without an order, occurs together in a database frequent enough to satisfy a certain minimum threshold [2](Han, Cheng, Xin & Yan 2007). Frequent pattern mining is the key step to find interesting patterns from databases, such as association rule mining, sequential patterns mining, etc, and is vital in data mining tasks. 1.1Sequence and Sequence Dataset A sequence is an ordered list of elements like < e1 e2 e3 : : : en >, where ei is an element, and could be either one item or a set of items. The elements can be ordered by time, position or any other standard. Each element could also contain one or more items with no order between them. The length of a sequence is usually not fixed. Sequence data is an important type of data which is popular in much scientific, medical, business service, bioinformatics, and some other applications. An example of transactions data is shown in Table 1.1. Table 1.1: A Transactional Data Table In the data, customer 002, he/she has three transactions. If all of his/her transactions were ordered by the transaction time, they can be built into a sequence as < (30; 31; 32) 28 (22; 32) >. Another example comes from Bioinformatics. Following is a gene sequence which is ordered by position [1]. ACTGCTGCCAATC 1.2 Sequential pattern mining Sequential pattern mining is an important task in data mining. It provides an effective way to get special patterns from sequence data. Sequential pattern considers the order of item sets, but association rule doesn’t take that into account. For example, given a sequence, such as buying a desktop first, then an laptop, and then a router, if it occurs frequently in customers’ shopping history with this special order, it is a (frequent) sequential pattern. When a frequent pattern only contains item sets without any order, it becomes a classical association rule problem; for example, the same customer buys desktop, laptop and router without considering their orders. Finding sequential pattern has been widely recognized as a hot area in data mining and machine learning. It has been proven to be very useful or even essential while handling critical business problems, such as customer behavior analysis, event detection and bioinformatics. For example, it is widely employed in DNA, protein, and medicine identification, where it helps scientists to find out identical and different structures and functions of molecular or DNA sequences [1].
  • 3. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME 117 1.3Positive sequential patterns and negative sequential patterns Different from traditional positive sequential patterns, negative sequential patterns focus on negative relationship between items sets, in which case, absent items are taken into consideration. We give a simple example to illustrate the differences: Suppose p1=<a b c d f> is a positive sequential pattern; p2=<a b ¬c e f> is a negative sequential pattern; and each item a, b, c, etc, stands for a medical item code in the customer claim database of a private health care insurance company. By getting pattern p1, we can tell that an insurant usually claimed for a, b, c, d and f in a row; but with pattern p2, we are also able to find that given an insurant claim for medical items a and b, and the customer does NOT claim c, he/she would claim item e instead of d later. A number of methods have been proposed to discover sequential patterns. Most of conventional methods for sequential pattern mining were developed to discover positive sequential patterns from database [6, 7, 8, 9, 10, and 11]. Positive sequential patterns mining consider only the occurrences of item sets in sequences. In practice, however, the absences of item sets in sequences may imply valuable information. For example, web pages A, B, C, and D are accessed frequently by users, but D is seldom accessed after the sequence A, B and C. The web page access sequence can be denoted as < A, B, C ¬D >, and called a negative sequence. Such sequence could give us some valuable information to improve the company’s website structure. For example, a new link between C and D could improve users’ convenience to access web page D from C [12]. 1.4 Applications of sequential pattern mining • Customer shopping sequences: First buy computer, then CD-ROM, and then digital camera, within 3 months. • Medical treatments, natural disasters (e.g., earthquakes), science & eng. processes, stocks and markets, etc. • Telephone calling patterns, Weblog click streams. • DNA sequences and gene structures [16]. II. SURVEY ON NEGATIVE SEQUENTIAL PATTERNS 1.Nancy P. Lin, Hung-Jen Chen, Wei-Hua Hao, Hao-En chueh, Chung-I Chang in” Mining Strong Positive and Negative Sequential Patterns” proposed a method for mining strong positive and negative sequential patterns, called PNSPM. In this method, absences of item sets in sequences are also considered [12]. 2. K.M.V.Madan Kumar, P.V.S.Srinivas and C.Raghavendra Rao in” Sequential Pattern Mining With Multiple Minimum Supports in Progressive Databases” proposed a new approach which can be applied on any algorithm independent of that whether the particular algorithm may or may not use the process of generating the candidate sets for identifying the frequent item sets. The proposed algorithm will use the concept of “percentage of participation” instead of occurrence frequency for every possible combination of items or item sets. The concept of percentage of participation will be calculated based on the minimum support threshold for each item set [13]. 3. Zhigang Zheng Yanchang Zhao Ziye Zuo Longbing Cao in” Negative-GSP: An Efficient Method for Mining Negative Sequential Patterns” proposes a new method for mining negative sequential
  • 4. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME 118 patterns, called Negative-GSP. Negative-GSP can find negative sequential patterns effectively and efficiently [14]. They also designed effective pruning method to reduce the number of candidates. 4. Nancy P. Lin, Wei-Hua Hao, Hung-Jen Chen, Chung-I Chang, Hao-En Chuehin in “An Algorithm for Mining Strong Negative Fuzzy Sequential Patterns” proposed a method for mining negative fuzzy sequential patterns, called NFSPM. In this method, the absences of fuzzy item sets are also considered. Besides, only sequences with high degree of interestingness can be selected as negative fuzzy sequential patterns [15]. 5. Xiangjun Dong Zhigang Zheng,Longbing Cao Yanchang Zhao in” e-NSP: Efficient Negative Sequential Pattern Mining Based on Identified Positive Patterns Without Database Rescanning” propose an efficient algorithm for mining NSP, called e-NSP, which mines for NSP by only involving the identified PSP, without re-scanning databases. First, negative containment is defined to determine whether or not a data sequence contains a negative sequence. Second, an efficient approach is proposed to convert the negative containment problem to a positive containment problem. The supports of NSC are then calculated based only on the corresponding PSP. Finally, a simple but efficient approach is proposed to generate NSC [17]. 6. Vedant Rastogi Vinay Kumar Khare in” Apriori Based: Mining Positive and Negative Frequent Sequential Patterns “proposed an algorithm for mining exception rules [18]. 7. Yanchang Zhao, Huaifeng Zhang, Longbing Cao,Chengqi Zhang, and Hans Bohlscheid in” Efficient Mining of Event-Oriented Negative Sequential Rules” This paper analyzes three types of negative sequential rules and presents a new technique to find event-oriented negative sequential rules[19]. 8. Zhigang Zheng, Yanchang Zhao, Ziye Zuo, and Longbing Cao in” An Efficient GA-Based Algorithm for Mining Negative Sequential Patterns” This paper proposes a Genetic Algorithm (GA) based algorithm to find negative sequential patterns with novel crossover and mutation operations, which are efficient at passing good genes on to next generations without generating candidates. An effective dynamic fitness function and a pruning method are also provided to improve performance [20]. 9. Vinay Kumar Khare,Vedant Rastogi in” Mining Positive and Negative Sequential Pattern in Incremental Transaction Databases” In this approach we can easily update existing transaction database with the appended transaction database. The Merged transaction database (updated database) will be mined to get the Positive & Negative Sequential patterns. Merging of Existing and Appended database is performed by using the updated compact pattern tree approach. Proposed model is Mining Positive and Negative Sequential patterns in incremental transaction Databases. To mine Positive and Negative Sequential patterns in incremental transaction database in this Approach we can update, existing transaction database with appended transaction database by the use of Updated Compact pattern tree approach then according to their support the new updated transaction database table is maintained and we can mine positive and negative sequential patterns with the help of CPNFSP algorithms proposed by Weimin Quyang and Qinhua Huang [21][22]. 10. Y. Li Y, A. Algarni, and N. Zhong in” Mining Positive and Negative Patterns for Relevance Feature Discovery” Proposed An innovative approach to evaluate weights of terms according to both their specificity and their distributions in the higher level features, where the higher level features include both positive and negative patterns[23].
  • 5. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME 119 S.NO. TITLE OF WORK AUTHORS PROPOSED WORK YEAR 1 Mining Strong Positive and Negative Sequential Patterns Nancy P. Lin, Wei- Hua Hao, Hung-Jen Chen, Chung-I Chang, Hao- En Chueh Proposed a method for mining strong positive and negative sequential patterns, called PNSPM. 2008 2 Sequential Pattern Mining With Multiple Minimum Supports in Progressive Databases K.M.V.Madan Kumar, P.V.S.Srinivas and C.Raghavendra Rao Proposed a new approach which can be applied on any algorithm independent of that whether the particular algorithm may or may not use the process of generating the candidate sets for identifying the frequent item sets 2012 3 Negative-GSP: An Efficient Method for Mining Negative Sequential Patterns Zhigang Zheng Yanchang Zhao Ziye Zuo Longbing Cao Proposes a new method for mining negative sequential patterns, called Negative-GSP. Negative-GSP can find negative sequential patterns effectively and efficiently. 2009 4 An Algorithm for Mining Strong Negative Fuzzy Sequential Patterns Nancy P. Lin, Wei- Hua Hao, Hung-Jen Chen, Chung-I Chang, Hao- En Chueh Proposed a method for mining negative fuzzy sequential patterns, called NFSPM. 2007 5 e-NSP: Efficient Negative Sequential Pattern Mining Based on Identified Positive Patterns Without Database Rescanning Xiangjun Dong Zhigang Zheng,Longbing Cao Yanchang Zhao Proposed an efficient algorithm for mining NSP, called e-NSP, which mines for NSP by only involving the identified PSP, without re-scanning databases. 2011 6 Apriori Based: Mining Positive and Negative Frequent Sequential Patterns Vedant Rastogi Vinay Kumar Khare Algorithm for mining exception rules. 2012 7 Efficient Mining of Event-Oriented Negative Sequential Rules Yanchang Zhao, Huaifeng Zhang, Longbing Cao, Chengqi Zhang, and Hans Bohlscheid This paper analyzes three types of negative sequential rules and presents a new technique to find event-oriented negative sequential rules. ----- 8 An Efficient GA- Based Algorithm for Mining Negative Sequential Patterns Zhigang Zheng, Yanchang Zhao, Ziye Zuo, and Longbing Cao This paper proposes a Genetic Algorithm (GA) based algorithm to find negative sequential patterns with novel crossover and mutation operations, which are efficient at passing good genes on to next generations without generating candidates. 2010 9 Mining Positive and Negative Sequential Pattern in Incremental Transaction Databases Vinay Kumar Khare,Vedant Rastogi In this approach we can easily update existing transaction database with the appended transaction database. The Merged transaction database (updated database) will be mined to get the Positive & Negative Sequential patterns. Merging of Existing and Appended database is performed by using the updated compact pattern tree approach. 2013 10 Mining Positive and Negative Patterns for Relevance Feature Discovery Y. Li Y, A. Algarni, and N. Zhong Proposed An innovative approach to evaluate weights of terms according to both their specificity and their distributions in the higher level features where the higher level features include both positive and negative patterns. 2010
  • 6. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME 120 III. CONCLUSION This paper provides the definitions for sequential data, sequential pattern mining, positive sequential patterns and negative sequential patterns. It also explains about the importance of negative sequential patterns and also the applications sequential patterns. This paper acts as a base for the researchers who want to do research on negative sequential patterns. REFERENCES [1]. Zhigang Zheng, “Negative Sequential Pattern Mining”, A thesis submitted in partial fulfillment of the requirements for the degree of Doctor of Philosophy, January 2012. [2]. Han, J., Cheng, H., Xin, D. & Yan, X. (2007), ‘frequent pattern mining: current status and future directions’, Data Mining and Knowledge Discovery 15, 55–86. [3]. http://www.anderson.ucla.edu/faculty/jason.frand/teacher/technologies/palace/datamining.htm. [4]. http://searchbusinessanalytics.techtarget.com/definition/association-rules-in-data.htm. [5]. Agrawal R,Srikant R. “Mining sequential patterns”, In the Proc.1995 IntConf. On Data Engineering, Taibei, Taiwan, March1995. [6]. R. Agrawal and R. Srikant, Mining Sequential Patterns, Proceedings of the Elventh International Conference on Data Engineering, Taipei, Taiwan, March, 1995, pp. 3-14. [7]. M. J. Zaki, Efficient Enumeration of Frequent Sequences, Proceedings of the Seventh CIKM, 1998. [8]. J. Ayres, J. E. Gehrke, T. Yiu, and J. Flannick, Sequential Pattern Mining Using Bitmaps, Proceedings of the Eighth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining. Edmonton, Alberta,Canada, July 2002. [9]. X. Yan, J. Han, and R. Afshar, CloSpan: Mining Closed Sequential Patterns in Large Datasets, Proceedings of 2003 SIAM International Conference Data Mining (SDM’03), 2003, pp. 166-177. [10]. M. Zaki, SPADE: An Efficient Algorithm for Mining Frequent sequences, Machine Learning, vol. 40, 2001, pp. 31-60. [11]. M. Zaki, Efficient Enumeration of Frequent Sequences, Proceedings of the Seventh International Conference Information and Knowledge Management (CIKM’98), 1998, pp. 68-75. [12]. NANCY P. LIN, HUNG-JEN CHEN, WEI-HUA HAO, HAO-EN CHUEH, CHUNG-I CHANG, “Mining Strong Positive and Negative Sequential Patterns” WSEAS TRANSACTIONS on COMPUTERS, Issue 3, Volume 7, March 2008, ISSN: 1109-2750. [13]. K.M.V.Madan Kumar1, P.V.S.Srinivas2 and C.Raghavendra Rao3, “Sequential Pattern Mining With Multiple Minimum Supports in Progressive Databases” International Journal of Database Management Systems ( IJDMS ) Vol.4, No.4, August 2012. [14]. Zhigang Zheng Yanchang Zhao Ziye Zuo Longbing Cao, “Negative-GSP: An Efficient Method for Mining Negative Sequential Patterns”, Australian Computer Society, Inc. (AusDM 2009), Melbourne, Australia. Conferences in Research and Practice in Information Technology (CRPIT), Vol. 101, [15]. Nancy P. Lin, Wei-Hua Hao, Hung-Jen Chen, Chung-I Chang, Hao-En Chueh, “An Algorithm for Mining Strong Negative Fuzzy Sequential Patterns”, INTERNATIONAL JOURNAL OF COMPUTERS Issue 3, Volume 1, 2007. [16]. Sequential Pattern Mining ppt. www.is.informatik.uni-duisburg.de/.../im.../MiningSequentialPatterns.ppt. [17]. Xiangjun Dong Zhigang Zheng,Longbing Cao Yanchang Zhao, “e-NSP: Efficient Negative Sequential Pattern Mining Based on Identified Positive Patterns Without Database Rescanning “CIKM’11, October 24–28, 2011, Glasgow, Scotland, UK. Copyright 2011 ACM 978-1-4503- 0717-8/11/10.
  • 7. International Journal of Computer Engineering and Technology (IJCET), ISSN 0976-6367(Print), ISSN 0976 - 6375(Online), Volume 5, Issue 3, March (2014), pp. 115-121 © IAEME 121 [18]. Vedant Rastogi Vinay Kumar Khare, “Apriori Based: Mining Positive and Negative Frequent Sequential Patterns” International Journal of Latest Trends in Engineering and Technology (IJLTET), Vol. 1 Issue 3 September 2012, ISSN: 2278-621X. [19]. Yanchang Zhao, Huaifeng Zhang, Longbing Cao, Chengqi Zhang, and Hans Bohlscheid, “Efficient Mining of Event-Oriented Negative Sequential Rules”. [20]. Zhigang Zheng, Yanchang Zhao, Ziye Zuo, and Longbing Cao, “An Efficient GA-Based Algorithm for Mining Negative Sequential Patterns” M.J. Zaki et al. (Eds.): PAKDD 2010, Part I, LNAI 6118, pp. 262–273, 2010. _c Springer-Verlag Berlin Heidelberg 2010. [21]. Vinay Kumar Khare,Vedant Rastogi, “Mining Positive and Negative Sequential Pattern in Incremental Transaction Databases” International Journal of Computer Applications (0975 – 8887) Volume 71– No.1, June 2013. [22]. Weimin Ouyang, Qinhua Huang, “Mining Positive and Negative Sequential Patterns with Multiple Minimum Supports in Large Transaction Databases”, IEEE Second WRI Global Congress on Intelligent Systems 2010. [23]. Y, A. Algarni, and N. Zhong, “Mining Positive and Negative Patterns for Relevance Feature Discovery” 16th ACM SIGKDD Conference on Knowledge Discovery and Data Mining, Washington, DC (KDD 2010), pp. 753-762. [24]. A. K. Payra and S. Saha, “Generic Approach of Pattern Matching of Amino Acid Sequences using Matching Policy & Pattern Policy”, International Journal of Computer Engineering & Technology (IJCET), Volume 5, Issue 2, 2014, pp. 130 - 139, ISSN Print: 0976 – 6367, ISSN Online: 0976 – 6375. AUTHOR’S DETAIL K. Sujatha is pursuing her Ph.D. in Krishna University, Machilipatnam, A.P. She is interested doing research in data mining. She has three international journal publications in data mining. She has two national journal publications. She has a total of 10 years experience in teaching. She is working as associate professor in CSE Department, Malineni Lakshmaiah Engineering College, Singaraya konda, Prakasam District. A.P. Prof. K. Rajasekhara Rao is a Professor of Computer Science & Engineering at K.L.University and presently holding several key positions in K.L.University, as Dean (Administration) & Principal, K L College of Engineering (Autonomous). Having more than 26 years of teaching and research experience, Prof. Rao is actively engaged in the research related to Embedded Systems, Software Engineering and Knowledge Management. He had obtained Ph.D in Computer Science & Engineering from Acharya Nagarjuna University (ANU), Guntur, Andhra Pradesh and produced 58 publications in various International/National Journals and Conferences. Prof.KRR was awarded with “Patron Award” for his outstanding contribution, by India’s prestigious professional society Computer Society of India (CSI) for the year 2011 in Ahmedabad. He has been adjudged as best teacher and has been honored with “Best Teacher Award”, seven times. Dr. Rajasekhar is a Fellow of IETE, Life Member’s of IE, ISTE, ISCA & CSI (Computer Society of India). Dr.Rajasekhar is nominated as sectional committee member for Engineering Sciences of 100th Annual Convention of Indian Science Congress Association. He has been the past Chairman of the Koneru Chapter of CSI.