SlideShare a Scribd company logo
1 of 4
Download to read offline
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 158
EFFECTUAL CITIZEN RELATIONSHIP MANAGEMENT WITH DATA
MINING TECHNIQUES
P. Pushpa Latha1
, R. Madhuri2
, K. Prasad Rao3
, M. Vijaya Bharathi4
1, 2, 4
Asst.professor, CSE Department, GMR Institute of Technology, A.P, India,
3
Asst.professor, CSE Department, Aditya Institute of Technology, A.P, India
pushp.mtech@gmail.com, ravi.madhuri5@gmail.com, prasadrao.karu@gmail.com, vijayabarathi.m@gmrit.org
Abstract
Effective knowledge sharing and learning is an important source of organizational performance. Citizens are a valuable source for
any organization in terms of planning, providing and performance management. In this paper, we have developed a hybrid data
mining model for providing effective citizen relationship with the government with respect to municipality services. The complaints of
the citizens are taken from the Visakhapatnam Municipal Office as an input database in this paper. We developed a hybrid data
mining model using clustering and association rules in combination. For finding high frequent complaints we used clustering
technique K-Means and to determine which factors affect the satisfaction rate in those kinds of complaints we used Apriori algorithm.
Index Terms: CiRM, ICT, K-Means algorithm, Apriori algorithm
---------------------------------------------------------------------***------------------------------------------------------------------------
1. INTRODUCTION
Citizen Relationship Management (CiRM) draws from the
commonly known concept of Customer Relationship
Management (CRM) in the private sector, and is a cluster of
management practices, communication channels and
technological solutions to handle issues, problems, concerns,
and demands of the citizen.
Since the numbers of governments who realize the importance
of becoming more citizen-centering are increasing nowadays;
in addition they discover that they must deliver authentic
citizen knowledge across multiple governments departments
and to all citizen touch points. This results in citizen
relationship management.
The governmental service is one of the most primitive and
predominant service domains in any community with a wide
array of services. As such, urban services and the concept of
citizen relationship management (CiRM) are currently gaining
importance in this domain.
1.1 Definition
CiRM is defined as “a strategy and set of management
practices, enabled by technology with a broad citizen focus, to
maintain and optimize relationships and encourage new forms
of citizen participation.” The main purpose of CiRM is to
understand the needs of different citizen groups and to provide
respective services for each group accordingly. In this way,
many governments are actively promoting the use of ICT.
The main issues of this approach are "how e-governments can
manage effectively" and "be more citizen-oriented". In other
words, ICT can be strategically significant in promoting e-
government effectiveness through understanding the citizen
requirements. In this domain, the application of data mining
tools seems to be useful. Appropriate data mining tools, which
are good at extracting and identifying useful information and
knowledge from enormous customer databases, are one of the
best supporting tools to obtain a deep understanding of
citizen’s characteristics and needs.
1.2 Information and Communication Technology
(ICT)
ICT is an umbrella term that includes any communication
device or application, encompassing: telephone, computer and
networks .It also encompasses various services and
applications associated with them, such as videoconferencing.
ICT is a strategically significant in promoting CiRM through
e-government services. ICT provides better e-government
services by understanding citizen need.
1.3 Customer Relationship Management
Citizen Relationship Management is the application of
customer relationship management (CRM) in an e-
governmental context and establishment guiding principles on
how customer relations can be effectively strategized in the
public sector. Specifically, it talks about the differences in
CRM practices between public and private institutions.
1.4 Clustering
Clustering is the process of grouping a set of data objects into
groups such that objects from the same cluster are more
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 159
similar and the objects from different clusters are more
dissimilar.
1.5 Association
Association rule mining falls under the descriptive category.
Association rules aims in extracting important correlation
among the data items in the databases. An association rule is
an implication expression of the form X→ Y where X and Y
are disjoint itemsets. In general, association rule mining can be
viewed as a two-step process.
(i) Generating all item sets having support factor greater than
or equal to, the user specified minimum support.
(ii) Generating all rules having the confidence factor greater
than or equal to the user specified minimum confidence.
2. PROBLEM DESCRIPTION
The present using public sector systems are not able to provide
citizen-oriented services. These systems are poor data system,
difficulty in accessing data in the database and storing data in
database. Using these systems we face difficulty in
determining major complaint and frequent complaints. Using
this approach government doesn’t know either citizen is
satisfied or not.
In this paper, we want to illuminate how data mining tools are
useful to manage citizens' requirements and process which
collect, analyze, reflect, and evaluate their needs. The main
purpose of this approach is "how e-governments can manage
effectively" and "be more citizen-oriented".
For solving this problem we consulted Visakhapatnam
Municipal Office and enquired about the procedure for solving
complaints posted by the citizens. After receiving adequate
information from them we choose some of the basic services
to develop.
We considered municipality services like complaints posted
by the citizens. The complaints of the citizens are taken as our
database. Then we have developed a hybrid data mining
model, a combination using clustering and association rules
for providing effective citizen relationship with the
government.
We first find out the high frequent complaints in the database
using clustering technique using K-Means algorithm. We took
two factors which are as follows:
Frequency of complaints:
Frequency refers to the number of complaints of each subject
during a season, for example 100 times during the winter.
Time interval between complaints:
Time interval refers to the interval between the first and the
latest time that a complaint of each subject happened during a
season, for example 22 days.
After finding high frequent complaints, we applied association
rule mining using Apriori algorithm to determine which
factors affect the satisfaction rate and in those kinds of
complaints which occur permanently during the season with a
high frequency.
3. ALGORITHMS
K-Means Algorithm
The k-means algorithm takes the input parameter, k, and
partitions a set of n objects into k clusters so that the resulting
intracluster similarity is high but the intercluster similarity is
low. Cluster similarity is measured in regard to the mean value
of the objects in a cluster, which can be viewed as the cluster’s
centroid or center of gravity.
The k-means algorithm proceeds as follows. First, it randomly
selects k of the objects, each of which initially represents a
cluster mean or center. For each of the remaining objects, an
object is assigned to the cluster to which it is the most similar,
based on the distance between the object and the cluster mean.
It then computes the new mean for each cluster. This process
iterates until the criterion function converges.
Algorithm
Input: The number of clusters k, and a database containing n
objects.
Method: The k-means algorithm is implemented as follows:
1) arbitrarily choose k objects from D as the initial
cluster centers;
2) repeat
3) (re)assign each object to the cluster to which the
object is the most similar, based on the mean value of
the objects in the cluster
4) update the cluster means, i.e., calculate the mean
value of the objects for each cluster
5) until no change
The k-means method, however, can be applied only when the
mean of a cluster is defined. This may not be the case in some
applications, such as when data with categorical attributes are
involved.
Apriori Algorithm:
For finding frequent patterns, associations, correlations, or
causal structures among sets of items in transaction databases,
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 160
relational databases, and other information repositories we use
an influential algorithm known as Apriori Algorithm.
Apriori algorithm is used in Basket data analysis, cross-
marketing, catalog design, Loss-leader analysis, clustering,
classification etc. In order to express the quality of an
association rule one uses measures such as
Support: This metric determines how often a rule is satisfied
in the transaction database. It is obtained by dividing the
support count for X →Y by the total number of transactions.
Confidence: This metric determines how often items in Y
appear in transactions that contain X.
Algorithm
Join Step: Ck is generated by joining Lk-1with itself
Prune Step: Any (k-1)-itemset that is not frequent cannot be a
subset of a frequent k-itemset
Pseudo-code
Ck: Candidate itemset of size k.
Lk : frequent itemset of size k.
L1 = {frequent items};
for (k = 1; Lk !=Ø; k++) do begin
Ck+1 = candidates generated from Lk;
for each transaction t in database
do
increment the count of all candidates in
Ck+1 that are contained in t
Lk+1 = candidates in Ck+1 with min support
end
return Uk Lk;
Generate Candidates
Suppose the items in Lk-1 are listed in an order
Step 1: self-joining Lk-1
insert into Ck
select p.item1,p.item2, …,p.itemk-1, q.itemk-1
from Lk-1 p, Lk-1 q
where p.item1=q.item1, …, p.itemk-2=q.itemk-2,
p.itemk-1 < q.itemk-1
Step 2: pruning
For all itemsets c in Ck do
For all (k-1)-subsets s of c do
if (s is not in Lk-1) then delete c from Ck
4. RESULTS
For our paper we considered municipality services like
complaints posted by the citizens. The complaints of the
citizens are taken as our database. Then we have developed a
hybrid data mining model, a combination using clustering and
association rules for providing effective citizen relationship
with the government.
In this paper we have developed a hybrid data mining model
which is the combination of clustering and association rules.
We first find out the high frequent complaints in the database
using clustering technique using K-Means algorithm. After
finding high frequent complaints, we applied association rule
mining using Apriori algorithm to determine which factors
affect the satisfaction rate and in those kinds of complaints
which occur permanently during the season with a high
frequency.
The following are some of the results what have obtained:
Figure 4.1 Home Page( Home page for CiRM)
Figure 4.2 Complaints Page(complaints received from
citizens)
IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163
__________________________________________________________________________________________
Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 161
Figure 4.3 Hybrid Data Mining Model
CONCLUSIONS
Governments have to consider convenient channels and
services to connect between the governmental managers and
citizens. Furthermore, data mining tools are very useful to
manage citizens' requirements and process which collect,
analyze, reflect, and evaluate their needs.
In this paper, we have used clustering and association rules on
the data of the urban service management system in
Visakhapatnam to find the subjects that cause complaint and
the factors that affect the rate of satisfaction. Analyzing the
rules, make it possible to understand the impact of factors such
as time and responsible units on the rate of satisfaction.
Besides, units with a perfect or worse performance in
providing services and handling complaints are identified.
The results of the research are very beneficial in providing
improved urban services and the development of citizens'
satisfaction. This study could be notable as one of the first
studies on using data mining tools in CiRM.
REFERENCES
[1]. Ali Mohammad Ahmadvand, Behrooz Minaei Bidgoli ,
Elham Akhondzadeh “A hybrid data mining model for
effective citizen relationship management: a case study on
Tehran municipality”.
[2]. Ahn. J. and Young, S., "Customer pattern search for after-
sales service in manufacturing". Journal of Expert Systems
with Applications, vol.36, pp.5371–5375, 2009.
[3]. Pan,S., Tan, C., Lim, E., "Customer relationship
management (CRM) in e-government: a relational
perspective", Decision Support Systems, vol. 42, pp. 237–
250, 2006.
[4]. Han, J. and Kamber, M., Data Mining: Concepts and
Techniques, Second ed., Morgan Kaufman Publisher, 2006,
pp. 383-407.
[5]. Alexander Schellong and Thomas Langenberg,
“Managing Citizen Relationships in Disasters: Hurricane
Wilma, 311 and Miami-Dade County” Proceedings of the 40th
Hawaii International Conference on System Sciences – 2007.
[6]. R. Agrawal, R. Srikant, Fast Algorithms for Mining
Association Rules, In Proc. 20th Int. Conf. Very Large Data
Bases, VLD, Santiago, Chile, 1994, pp. 487-499.
BIOGRAPHIES
Pushpa Latha Palli, is M.Tech in
Computer Science from Andhra University,
A.P., India. She has vast experience in
Computer Science and Engineering areas.
She is presently working as Assistant
Professor in Department of Computer
Science and Engineering, GMRIT, Rajam,
A.P, India. Her area of research includes Data Mining, Web
Technologies and Emerging Technologies.
Madhuri Ravi, is M.Tech in Computer
Science from JNTU, A.P., India. She has
vast experience in Computer Science and
Engineering areas. She is presently working
as Assistant Professor in Department of
Computer Science and Engineering,
GMRIT, Rajam, A.P, India. Her area of research includes
Data Mining, Computer Networks and Computer Architecture
Prasad Rao Karu, is M.Tech in Computer
Science from JNTU, A.P., India. He has
vast experience in Computer Science and
Engineering areas. He is presently working
as Assistant Professor in Department of
Computer Science and Engineering,
AITAM, Tekkali, A.P, India. His area of research includes
Data Mining, Databases, Web Technologies.
Vijaya Bharathi Manjetti , is M.Tech in
Computer Science from JNTU, A.P., India.
She has vast experience in Computer Science
and Engineering areas. She is presently
working as Assistant Professor in Department
of Computer Science and Engineering,
GMRIT, Rajam, A.P, India. Her area of
research includes Software Engineering, E-Commerce.

More Related Content

What's hot

Extracting intelligence from online news sources
Extracting intelligence from online news sourcesExtracting intelligence from online news sources
Extracting intelligence from online news sourceseSAT Publishing House
 
Mining Fuzzy Association Rules from Web Usage Quantitative Data
Mining Fuzzy Association Rules from Web Usage Quantitative Data Mining Fuzzy Association Rules from Web Usage Quantitative Data
Mining Fuzzy Association Rules from Web Usage Quantitative Data csandit
 
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKINGINTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKINGdannyijwest
 
IRJET- Semantics based Document Clustering
IRJET- Semantics based Document ClusteringIRJET- Semantics based Document Clustering
IRJET- Semantics based Document ClusteringIRJET Journal
 
IRJET- Missing Data Imputation by Evidence Chain
IRJET- Missing Data Imputation by Evidence ChainIRJET- Missing Data Imputation by Evidence Chain
IRJET- Missing Data Imputation by Evidence ChainIRJET Journal
 
Immune-Inspired Method for Selecting the Optimal Solution in Semantic Web Ser...
Immune-Inspired Method for Selecting the Optimal Solution in Semantic Web Ser...Immune-Inspired Method for Selecting the Optimal Solution in Semantic Web Ser...
Immune-Inspired Method for Selecting the Optimal Solution in Semantic Web Ser...IJwest
 
Certain Investigation on Dynamic Clustering in Dynamic Datamining
Certain Investigation on Dynamic Clustering in Dynamic DataminingCertain Investigation on Dynamic Clustering in Dynamic Datamining
Certain Investigation on Dynamic Clustering in Dynamic Dataminingijdmtaiir
 
Activity Context Modeling in Context-Aware
Activity Context Modeling in Context-AwareActivity Context Modeling in Context-Aware
Activity Context Modeling in Context-AwareEditor IJCATR
 
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKINGINTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKINGIJwest
 
IRJET- Competitive Analysis of Attacks on Social Media
IRJET-  	 Competitive Analysis of Attacks on Social MediaIRJET-  	 Competitive Analysis of Attacks on Social Media
IRJET- Competitive Analysis of Attacks on Social MediaIRJET Journal
 
Using machine learning algorithms to
Using machine learning algorithms toUsing machine learning algorithms to
Using machine learning algorithms tomlaij
 
K-means and bayesian networks to determine building damage levels
K-means and bayesian networks to determine building damage levelsK-means and bayesian networks to determine building damage levels
K-means and bayesian networks to determine building damage levelsTELKOMNIKA JOURNAL
 
Enhance The Technique For Searching Dimension Incomplete Databases
Enhance The Technique For Searching Dimension Incomplete DatabasesEnhance The Technique For Searching Dimension Incomplete Databases
Enhance The Technique For Searching Dimension Incomplete Databasespaperpublications3
 
A Trinity Construction for Web Extraction Using Efficient Algorithm
A Trinity Construction for Web Extraction Using Efficient AlgorithmA Trinity Construction for Web Extraction Using Efficient Algorithm
A Trinity Construction for Web Extraction Using Efficient AlgorithmIOSR Journals
 

What's hot (17)

Extracting intelligence from online news sources
Extracting intelligence from online news sourcesExtracting intelligence from online news sources
Extracting intelligence from online news sources
 
Mining Fuzzy Association Rules from Web Usage Quantitative Data
Mining Fuzzy Association Rules from Web Usage Quantitative Data Mining Fuzzy Association Rules from Web Usage Quantitative Data
Mining Fuzzy Association Rules from Web Usage Quantitative Data
 
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKINGINTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
 
IRJET- Semantics based Document Clustering
IRJET- Semantics based Document ClusteringIRJET- Semantics based Document Clustering
IRJET- Semantics based Document Clustering
 
IRJET- Missing Data Imputation by Evidence Chain
IRJET- Missing Data Imputation by Evidence ChainIRJET- Missing Data Imputation by Evidence Chain
IRJET- Missing Data Imputation by Evidence Chain
 
Immune-Inspired Method for Selecting the Optimal Solution in Semantic Web Ser...
Immune-Inspired Method for Selecting the Optimal Solution in Semantic Web Ser...Immune-Inspired Method for Selecting the Optimal Solution in Semantic Web Ser...
Immune-Inspired Method for Selecting the Optimal Solution in Semantic Web Ser...
 
M033059064
M033059064M033059064
M033059064
 
Certain Investigation on Dynamic Clustering in Dynamic Datamining
Certain Investigation on Dynamic Clustering in Dynamic DataminingCertain Investigation on Dynamic Clustering in Dynamic Datamining
Certain Investigation on Dynamic Clustering in Dynamic Datamining
 
Activity Context Modeling in Context-Aware
Activity Context Modeling in Context-AwareActivity Context Modeling in Context-Aware
Activity Context Modeling in Context-Aware
 
Hy3414631468
Hy3414631468Hy3414631468
Hy3414631468
 
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKINGINTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
INTELLIGENT SOCIAL NETWORKS MODEL BASED ON SEMANTIC TAG RANKING
 
IRJET- Competitive Analysis of Attacks on Social Media
IRJET-  	 Competitive Analysis of Attacks on Social MediaIRJET-  	 Competitive Analysis of Attacks on Social Media
IRJET- Competitive Analysis of Attacks on Social Media
 
Using machine learning algorithms to
Using machine learning algorithms toUsing machine learning algorithms to
Using machine learning algorithms to
 
K-means and bayesian networks to determine building damage levels
K-means and bayesian networks to determine building damage levelsK-means and bayesian networks to determine building damage levels
K-means and bayesian networks to determine building damage levels
 
Enhance The Technique For Searching Dimension Incomplete Databases
Enhance The Technique For Searching Dimension Incomplete DatabasesEnhance The Technique For Searching Dimension Incomplete Databases
Enhance The Technique For Searching Dimension Incomplete Databases
 
A Trinity Construction for Web Extraction Using Efficient Algorithm
A Trinity Construction for Web Extraction Using Efficient AlgorithmA Trinity Construction for Web Extraction Using Efficient Algorithm
A Trinity Construction for Web Extraction Using Efficient Algorithm
 
Ijetcas14 347
Ijetcas14 347Ijetcas14 347
Ijetcas14 347
 

Similar to Effectual citizen relationship management with data mining techniques

Proactive Intelligent Home System Using Contextual Information and Neural Net...
Proactive Intelligent Home System Using Contextual Information and Neural Net...Proactive Intelligent Home System Using Contextual Information and Neural Net...
Proactive Intelligent Home System Using Contextual Information and Neural Net...IJERA Editor
 
A novel approach for text extraction using effective pattern matching technique
A novel approach for text extraction using effective pattern matching techniqueA novel approach for text extraction using effective pattern matching technique
A novel approach for text extraction using effective pattern matching techniqueeSAT Journals
 
Community profiling for social networks
Community profiling for social networksCommunity profiling for social networks
Community profiling for social networkseSAT Publishing House
 
Document retrieval using clustering
Document retrieval using clusteringDocument retrieval using clustering
Document retrieval using clusteringeSAT Journals
 
A novel association rule mining and clustering based hybrid method for music ...
A novel association rule mining and clustering based hybrid method for music ...A novel association rule mining and clustering based hybrid method for music ...
A novel association rule mining and clustering based hybrid method for music ...eSAT Publishing House
 
Evaluating the efficiency of rule techniques for file classification
Evaluating the efficiency of rule techniques for file classificationEvaluating the efficiency of rule techniques for file classification
Evaluating the efficiency of rule techniques for file classificationeSAT Journals
 
Evaluating the efficiency of rule techniques for file
Evaluating the efficiency of rule techniques for fileEvaluating the efficiency of rule techniques for file
Evaluating the efficiency of rule techniques for fileeSAT Publishing House
 
A Review on Resource Discovery Strategies in Grid Computing
A Review on Resource Discovery Strategies in Grid ComputingA Review on Resource Discovery Strategies in Grid Computing
A Review on Resource Discovery Strategies in Grid Computingiosrjce
 
Delivering IT as A Utility- A Systematic Review
Delivering IT as A Utility- A Systematic ReviewDelivering IT as A Utility- A Systematic Review
Delivering IT as A Utility- A Systematic Reviewijfcstjournal
 
Enhancing the performance of cluster based text summarization using support v...
Enhancing the performance of cluster based text summarization using support v...Enhancing the performance of cluster based text summarization using support v...
Enhancing the performance of cluster based text summarization using support v...eSAT Journals
 
Assignment Of Sensing Tasks To IoT Devices Exploitation Of A Social Network ...
Assignment Of Sensing Tasks To IoT Devices  Exploitation Of A Social Network ...Assignment Of Sensing Tasks To IoT Devices  Exploitation Of A Social Network ...
Assignment Of Sensing Tasks To IoT Devices Exploitation Of A Social Network ...Dustin Pytko
 
An efficient information retrieval ontology system based indexing for context
An efficient information retrieval ontology system based indexing for contextAn efficient information retrieval ontology system based indexing for context
An efficient information retrieval ontology system based indexing for contexteSAT Journals
 
IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...
IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...
IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...IRJET Journal
 
11.software modules clustering an effective approach for reusability
11.software modules clustering an effective approach for  reusability11.software modules clustering an effective approach for  reusability
11.software modules clustering an effective approach for reusabilityAlexander Decker
 
A study and survey on various progressive duplicate detection mechanisms
A study and survey on various progressive duplicate detection mechanismsA study and survey on various progressive duplicate detection mechanisms
A study and survey on various progressive duplicate detection mechanismseSAT Journals
 
A Review Grid Computing
A Review  Grid ComputingA Review  Grid Computing
A Review Grid ComputingBecky Gilbert
 
Self organization mechanism in an agent network by decentralized approach
Self organization mechanism in an agent network by decentralized approachSelf organization mechanism in an agent network by decentralized approach
Self organization mechanism in an agent network by decentralized approacheSAT Journals
 
Feature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesFeature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesIRJET Journal
 
Applying Soft Computing Techniques in Information Retrieval
Applying Soft Computing Techniques in Information RetrievalApplying Soft Computing Techniques in Information Retrieval
Applying Soft Computing Techniques in Information RetrievalIJAEMSJORNAL
 

Similar to Effectual citizen relationship management with data mining techniques (20)

Proactive Intelligent Home System Using Contextual Information and Neural Net...
Proactive Intelligent Home System Using Contextual Information and Neural Net...Proactive Intelligent Home System Using Contextual Information and Neural Net...
Proactive Intelligent Home System Using Contextual Information and Neural Net...
 
A novel approach for text extraction using effective pattern matching technique
A novel approach for text extraction using effective pattern matching techniqueA novel approach for text extraction using effective pattern matching technique
A novel approach for text extraction using effective pattern matching technique
 
Community profiling for social networks
Community profiling for social networksCommunity profiling for social networks
Community profiling for social networks
 
Document retrieval using clustering
Document retrieval using clusteringDocument retrieval using clustering
Document retrieval using clustering
 
A novel association rule mining and clustering based hybrid method for music ...
A novel association rule mining and clustering based hybrid method for music ...A novel association rule mining and clustering based hybrid method for music ...
A novel association rule mining and clustering based hybrid method for music ...
 
Evaluating the efficiency of rule techniques for file classification
Evaluating the efficiency of rule techniques for file classificationEvaluating the efficiency of rule techniques for file classification
Evaluating the efficiency of rule techniques for file classification
 
Evaluating the efficiency of rule techniques for file
Evaluating the efficiency of rule techniques for fileEvaluating the efficiency of rule techniques for file
Evaluating the efficiency of rule techniques for file
 
A Review on Resource Discovery Strategies in Grid Computing
A Review on Resource Discovery Strategies in Grid ComputingA Review on Resource Discovery Strategies in Grid Computing
A Review on Resource Discovery Strategies in Grid Computing
 
B017240812
B017240812B017240812
B017240812
 
Delivering IT as A Utility- A Systematic Review
Delivering IT as A Utility- A Systematic ReviewDelivering IT as A Utility- A Systematic Review
Delivering IT as A Utility- A Systematic Review
 
Enhancing the performance of cluster based text summarization using support v...
Enhancing the performance of cluster based text summarization using support v...Enhancing the performance of cluster based text summarization using support v...
Enhancing the performance of cluster based text summarization using support v...
 
Assignment Of Sensing Tasks To IoT Devices Exploitation Of A Social Network ...
Assignment Of Sensing Tasks To IoT Devices  Exploitation Of A Social Network ...Assignment Of Sensing Tasks To IoT Devices  Exploitation Of A Social Network ...
Assignment Of Sensing Tasks To IoT Devices Exploitation Of A Social Network ...
 
An efficient information retrieval ontology system based indexing for context
An efficient information retrieval ontology system based indexing for contextAn efficient information retrieval ontology system based indexing for context
An efficient information retrieval ontology system based indexing for context
 
IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...
IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...
IRJET- Cluster Analysis for Effective Information Retrieval through Cohesive ...
 
11.software modules clustering an effective approach for reusability
11.software modules clustering an effective approach for  reusability11.software modules clustering an effective approach for  reusability
11.software modules clustering an effective approach for reusability
 
A study and survey on various progressive duplicate detection mechanisms
A study and survey on various progressive duplicate detection mechanismsA study and survey on various progressive duplicate detection mechanisms
A study and survey on various progressive duplicate detection mechanisms
 
A Review Grid Computing
A Review  Grid ComputingA Review  Grid Computing
A Review Grid Computing
 
Self organization mechanism in an agent network by decentralized approach
Self organization mechanism in an agent network by decentralized approachSelf organization mechanism in an agent network by decentralized approach
Self organization mechanism in an agent network by decentralized approach
 
Feature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering TechniquesFeature Subset Selection for High Dimensional Data using Clustering Techniques
Feature Subset Selection for High Dimensional Data using Clustering Techniques
 
Applying Soft Computing Techniques in Information Retrieval
Applying Soft Computing Techniques in Information RetrievalApplying Soft Computing Techniques in Information Retrieval
Applying Soft Computing Techniques in Information Retrieval
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementseSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case studyeSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case studyeSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreeSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialseSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizereSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementeSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteeSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabseSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaeSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodeSAT Journals
 
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniquesEstimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniqueseSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniquesEstimation of morphometric parameters and runoff using rs &amp; gis techniques
Estimation of morphometric parameters and runoff using rs &amp; gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

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
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxbritheesh05
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
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
 
(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
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
(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
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 

Recently uploaded (20)

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
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
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
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 
Artificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptxArtificial-Intelligence-in-Electronics (K).pptx
Artificial-Intelligence-in-Electronics (K).pptx
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
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
 
(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...
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
(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
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 

Effectual citizen relationship management with data mining techniques

  • 1. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 158 EFFECTUAL CITIZEN RELATIONSHIP MANAGEMENT WITH DATA MINING TECHNIQUES P. Pushpa Latha1 , R. Madhuri2 , K. Prasad Rao3 , M. Vijaya Bharathi4 1, 2, 4 Asst.professor, CSE Department, GMR Institute of Technology, A.P, India, 3 Asst.professor, CSE Department, Aditya Institute of Technology, A.P, India pushp.mtech@gmail.com, ravi.madhuri5@gmail.com, prasadrao.karu@gmail.com, vijayabarathi.m@gmrit.org Abstract Effective knowledge sharing and learning is an important source of organizational performance. Citizens are a valuable source for any organization in terms of planning, providing and performance management. In this paper, we have developed a hybrid data mining model for providing effective citizen relationship with the government with respect to municipality services. The complaints of the citizens are taken from the Visakhapatnam Municipal Office as an input database in this paper. We developed a hybrid data mining model using clustering and association rules in combination. For finding high frequent complaints we used clustering technique K-Means and to determine which factors affect the satisfaction rate in those kinds of complaints we used Apriori algorithm. Index Terms: CiRM, ICT, K-Means algorithm, Apriori algorithm ---------------------------------------------------------------------***------------------------------------------------------------------------ 1. INTRODUCTION Citizen Relationship Management (CiRM) draws from the commonly known concept of Customer Relationship Management (CRM) in the private sector, and is a cluster of management practices, communication channels and technological solutions to handle issues, problems, concerns, and demands of the citizen. Since the numbers of governments who realize the importance of becoming more citizen-centering are increasing nowadays; in addition they discover that they must deliver authentic citizen knowledge across multiple governments departments and to all citizen touch points. This results in citizen relationship management. The governmental service is one of the most primitive and predominant service domains in any community with a wide array of services. As such, urban services and the concept of citizen relationship management (CiRM) are currently gaining importance in this domain. 1.1 Definition CiRM is defined as “a strategy and set of management practices, enabled by technology with a broad citizen focus, to maintain and optimize relationships and encourage new forms of citizen participation.” The main purpose of CiRM is to understand the needs of different citizen groups and to provide respective services for each group accordingly. In this way, many governments are actively promoting the use of ICT. The main issues of this approach are "how e-governments can manage effectively" and "be more citizen-oriented". In other words, ICT can be strategically significant in promoting e- government effectiveness through understanding the citizen requirements. In this domain, the application of data mining tools seems to be useful. Appropriate data mining tools, which are good at extracting and identifying useful information and knowledge from enormous customer databases, are one of the best supporting tools to obtain a deep understanding of citizen’s characteristics and needs. 1.2 Information and Communication Technology (ICT) ICT is an umbrella term that includes any communication device or application, encompassing: telephone, computer and networks .It also encompasses various services and applications associated with them, such as videoconferencing. ICT is a strategically significant in promoting CiRM through e-government services. ICT provides better e-government services by understanding citizen need. 1.3 Customer Relationship Management Citizen Relationship Management is the application of customer relationship management (CRM) in an e- governmental context and establishment guiding principles on how customer relations can be effectively strategized in the public sector. Specifically, it talks about the differences in CRM practices between public and private institutions. 1.4 Clustering Clustering is the process of grouping a set of data objects into groups such that objects from the same cluster are more
  • 2. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 159 similar and the objects from different clusters are more dissimilar. 1.5 Association Association rule mining falls under the descriptive category. Association rules aims in extracting important correlation among the data items in the databases. An association rule is an implication expression of the form X→ Y where X and Y are disjoint itemsets. In general, association rule mining can be viewed as a two-step process. (i) Generating all item sets having support factor greater than or equal to, the user specified minimum support. (ii) Generating all rules having the confidence factor greater than or equal to the user specified minimum confidence. 2. PROBLEM DESCRIPTION The present using public sector systems are not able to provide citizen-oriented services. These systems are poor data system, difficulty in accessing data in the database and storing data in database. Using these systems we face difficulty in determining major complaint and frequent complaints. Using this approach government doesn’t know either citizen is satisfied or not. In this paper, we want to illuminate how data mining tools are useful to manage citizens' requirements and process which collect, analyze, reflect, and evaluate their needs. The main purpose of this approach is "how e-governments can manage effectively" and "be more citizen-oriented". For solving this problem we consulted Visakhapatnam Municipal Office and enquired about the procedure for solving complaints posted by the citizens. After receiving adequate information from them we choose some of the basic services to develop. We considered municipality services like complaints posted by the citizens. The complaints of the citizens are taken as our database. Then we have developed a hybrid data mining model, a combination using clustering and association rules for providing effective citizen relationship with the government. We first find out the high frequent complaints in the database using clustering technique using K-Means algorithm. We took two factors which are as follows: Frequency of complaints: Frequency refers to the number of complaints of each subject during a season, for example 100 times during the winter. Time interval between complaints: Time interval refers to the interval between the first and the latest time that a complaint of each subject happened during a season, for example 22 days. After finding high frequent complaints, we applied association rule mining using Apriori algorithm to determine which factors affect the satisfaction rate and in those kinds of complaints which occur permanently during the season with a high frequency. 3. ALGORITHMS K-Means Algorithm The k-means algorithm takes the input parameter, k, and partitions a set of n objects into k clusters so that the resulting intracluster similarity is high but the intercluster similarity is low. Cluster similarity is measured in regard to the mean value of the objects in a cluster, which can be viewed as the cluster’s centroid or center of gravity. The k-means algorithm proceeds as follows. First, it randomly selects k of the objects, each of which initially represents a cluster mean or center. For each of the remaining objects, an object is assigned to the cluster to which it is the most similar, based on the distance between the object and the cluster mean. It then computes the new mean for each cluster. This process iterates until the criterion function converges. Algorithm Input: The number of clusters k, and a database containing n objects. Method: The k-means algorithm is implemented as follows: 1) arbitrarily choose k objects from D as the initial cluster centers; 2) repeat 3) (re)assign each object to the cluster to which the object is the most similar, based on the mean value of the objects in the cluster 4) update the cluster means, i.e., calculate the mean value of the objects for each cluster 5) until no change The k-means method, however, can be applied only when the mean of a cluster is defined. This may not be the case in some applications, such as when data with categorical attributes are involved. Apriori Algorithm: For finding frequent patterns, associations, correlations, or causal structures among sets of items in transaction databases,
  • 3. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 160 relational databases, and other information repositories we use an influential algorithm known as Apriori Algorithm. Apriori algorithm is used in Basket data analysis, cross- marketing, catalog design, Loss-leader analysis, clustering, classification etc. In order to express the quality of an association rule one uses measures such as Support: This metric determines how often a rule is satisfied in the transaction database. It is obtained by dividing the support count for X →Y by the total number of transactions. Confidence: This metric determines how often items in Y appear in transactions that contain X. Algorithm Join Step: Ck is generated by joining Lk-1with itself Prune Step: Any (k-1)-itemset that is not frequent cannot be a subset of a frequent k-itemset Pseudo-code Ck: Candidate itemset of size k. Lk : frequent itemset of size k. L1 = {frequent items}; for (k = 1; Lk !=Ø; k++) do begin Ck+1 = candidates generated from Lk; for each transaction t in database do increment the count of all candidates in Ck+1 that are contained in t Lk+1 = candidates in Ck+1 with min support end return Uk Lk; Generate Candidates Suppose the items in Lk-1 are listed in an order Step 1: self-joining Lk-1 insert into Ck select p.item1,p.item2, …,p.itemk-1, q.itemk-1 from Lk-1 p, Lk-1 q where p.item1=q.item1, …, p.itemk-2=q.itemk-2, p.itemk-1 < q.itemk-1 Step 2: pruning For all itemsets c in Ck do For all (k-1)-subsets s of c do if (s is not in Lk-1) then delete c from Ck 4. RESULTS For our paper we considered municipality services like complaints posted by the citizens. The complaints of the citizens are taken as our database. Then we have developed a hybrid data mining model, a combination using clustering and association rules for providing effective citizen relationship with the government. In this paper we have developed a hybrid data mining model which is the combination of clustering and association rules. We first find out the high frequent complaints in the database using clustering technique using K-Means algorithm. After finding high frequent complaints, we applied association rule mining using Apriori algorithm to determine which factors affect the satisfaction rate and in those kinds of complaints which occur permanently during the season with a high frequency. The following are some of the results what have obtained: Figure 4.1 Home Page( Home page for CiRM) Figure 4.2 Complaints Page(complaints received from citizens)
  • 4. IJRET: International Journal of Research in Engineering and Technology ISSN: 2319-1163 __________________________________________________________________________________________ Volume: 02 Issue: 02 | Feb-2013, Available @ http://www.ijret.org 161 Figure 4.3 Hybrid Data Mining Model CONCLUSIONS Governments have to consider convenient channels and services to connect between the governmental managers and citizens. Furthermore, data mining tools are very useful to manage citizens' requirements and process which collect, analyze, reflect, and evaluate their needs. In this paper, we have used clustering and association rules on the data of the urban service management system in Visakhapatnam to find the subjects that cause complaint and the factors that affect the rate of satisfaction. Analyzing the rules, make it possible to understand the impact of factors such as time and responsible units on the rate of satisfaction. Besides, units with a perfect or worse performance in providing services and handling complaints are identified. The results of the research are very beneficial in providing improved urban services and the development of citizens' satisfaction. This study could be notable as one of the first studies on using data mining tools in CiRM. REFERENCES [1]. Ali Mohammad Ahmadvand, Behrooz Minaei Bidgoli , Elham Akhondzadeh “A hybrid data mining model for effective citizen relationship management: a case study on Tehran municipality”. [2]. Ahn. J. and Young, S., "Customer pattern search for after- sales service in manufacturing". Journal of Expert Systems with Applications, vol.36, pp.5371–5375, 2009. [3]. Pan,S., Tan, C., Lim, E., "Customer relationship management (CRM) in e-government: a relational perspective", Decision Support Systems, vol. 42, pp. 237– 250, 2006. [4]. Han, J. and Kamber, M., Data Mining: Concepts and Techniques, Second ed., Morgan Kaufman Publisher, 2006, pp. 383-407. [5]. Alexander Schellong and Thomas Langenberg, “Managing Citizen Relationships in Disasters: Hurricane Wilma, 311 and Miami-Dade County” Proceedings of the 40th Hawaii International Conference on System Sciences – 2007. [6]. R. Agrawal, R. Srikant, Fast Algorithms for Mining Association Rules, In Proc. 20th Int. Conf. Very Large Data Bases, VLD, Santiago, Chile, 1994, pp. 487-499. BIOGRAPHIES Pushpa Latha Palli, is M.Tech in Computer Science from Andhra University, A.P., India. She has vast experience in Computer Science and Engineering areas. She is presently working as Assistant Professor in Department of Computer Science and Engineering, GMRIT, Rajam, A.P, India. Her area of research includes Data Mining, Web Technologies and Emerging Technologies. Madhuri Ravi, is M.Tech in Computer Science from JNTU, A.P., India. She has vast experience in Computer Science and Engineering areas. She is presently working as Assistant Professor in Department of Computer Science and Engineering, GMRIT, Rajam, A.P, India. Her area of research includes Data Mining, Computer Networks and Computer Architecture Prasad Rao Karu, is M.Tech in Computer Science from JNTU, A.P., India. He has vast experience in Computer Science and Engineering areas. He is presently working as Assistant Professor in Department of Computer Science and Engineering, AITAM, Tekkali, A.P, India. His area of research includes Data Mining, Databases, Web Technologies. Vijaya Bharathi Manjetti , is M.Tech in Computer Science from JNTU, A.P., India. She has vast experience in Computer Science and Engineering areas. She is presently working as Assistant Professor in Department of Computer Science and Engineering, GMRIT, Rajam, A.P, India. Her area of research includes Software Engineering, E-Commerce.