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
 
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
 
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
 

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
 
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
 
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
 
Ijetcas14 347
Ijetcas14 347Ijetcas14 347
Ijetcas14 347
 

Viewers also liked

explicacion del proyecto "todos para uno"
explicacion del proyecto "todos para uno"explicacion del proyecto "todos para uno"
explicacion del proyecto "todos para uno"Maira Alejandra Herrera
 
స్ఫూర్థి ఆగష్టు సంచిక.
స్ఫూర్థి ఆగష్టు సంచిక.స్ఫూర్థి ఆగష్టు సంచిక.
స్ఫూర్థి ఆగష్టు సంచిక.Sri Saraswathi Vidyapeetham
 
A model of hybrid genetic algorithm particle swarm optimization(hgapso) based...
A model of hybrid genetic algorithm particle swarm optimization(hgapso) based...A model of hybrid genetic algorithm particle swarm optimization(hgapso) based...
A model of hybrid genetic algorithm particle swarm optimization(hgapso) based...eSAT Publishing House
 
Tex Mobile advertising Europe
Tex Mobile advertising Europe Tex Mobile advertising Europe
Tex Mobile advertising Europe Reema Thomas
 
Construction Industry Snapshot Package-October 2014
Construction Industry Snapshot Package-October 2014Construction Industry Snapshot Package-October 2014
Construction Industry Snapshot Package-October 2014-PAUL CODLING
 
A novel approach to face recognition based on thermal imaging
A novel approach to face recognition based on thermal imagingA novel approach to face recognition based on thermal imaging
A novel approach to face recognition based on thermal imagingeSAT Publishing House
 
Loren beautifiers presentation
Loren beautifiers   presentationLoren beautifiers   presentation
Loren beautifiers presentationLoren Beautifiers
 
Thought for the day
Thought for the dayThought for the day
Thought for the daycalvin_ams
 
Geweke Hospitality Brochure
Geweke Hospitality BrochureGeweke Hospitality Brochure
Geweke Hospitality BrochureAlicia Russell
 
Le reseau des professionnels grecs
Le reseau des professionnels grecsLe reseau des professionnels grecs
Le reseau des professionnels grecsBucephalos Business
 
Fun with my small note animal tissue new
Fun with my small note animal tissue newFun with my small note animal tissue new
Fun with my small note animal tissue newCECE SUTIA
 
Parametric analysis and multi objective optimization of cutting parameters in...
Parametric analysis and multi objective optimization of cutting parameters in...Parametric analysis and multi objective optimization of cutting parameters in...
Parametric analysis and multi objective optimization of cutting parameters in...eSAT Publishing House
 
The feel of silk bagian kedua
The feel of silk bagian keduaThe feel of silk bagian kedua
The feel of silk bagian keduaBerti Subagijo
 
Classification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining techniqueClassification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining techniqueeSAT Publishing House
 
Biodatakuikka rusmawardani
Biodatakuikka rusmawardaniBiodatakuikka rusmawardani
Biodatakuikka rusmawardanirosemawardhani
 

Viewers also liked (20)

Convenient voting machine
Convenient voting machineConvenient voting machine
Convenient voting machine
 
explicacion del proyecto "todos para uno"
explicacion del proyecto "todos para uno"explicacion del proyecto "todos para uno"
explicacion del proyecto "todos para uno"
 
స్ఫూర్థి ఆగష్టు సంచిక.
స్ఫూర్థి ఆగష్టు సంచిక.స్ఫూర్థి ఆగష్టు సంచిక.
స్ఫూర్థి ఆగష్టు సంచిక.
 
A model of hybrid genetic algorithm particle swarm optimization(hgapso) based...
A model of hybrid genetic algorithm particle swarm optimization(hgapso) based...A model of hybrid genetic algorithm particle swarm optimization(hgapso) based...
A model of hybrid genetic algorithm particle swarm optimization(hgapso) based...
 
Individual fucas
Individual fucasIndividual fucas
Individual fucas
 
Tex Mobile advertising Europe
Tex Mobile advertising Europe Tex Mobile advertising Europe
Tex Mobile advertising Europe
 
Construction Industry Snapshot Package-October 2014
Construction Industry Snapshot Package-October 2014Construction Industry Snapshot Package-October 2014
Construction Industry Snapshot Package-October 2014
 
A novel approach to face recognition based on thermal imaging
A novel approach to face recognition based on thermal imagingA novel approach to face recognition based on thermal imaging
A novel approach to face recognition based on thermal imaging
 
Hari om diamonds
Hari om diamondsHari om diamonds
Hari om diamonds
 
Loren beautifiers presentation
Loren beautifiers   presentationLoren beautifiers   presentation
Loren beautifiers presentation
 
Thought for the day
Thought for the dayThought for the day
Thought for the day
 
Geweke Hospitality Brochure
Geweke Hospitality BrochureGeweke Hospitality Brochure
Geweke Hospitality Brochure
 
Le reseau des professionnels grecs
Le reseau des professionnels grecsLe reseau des professionnels grecs
Le reseau des professionnels grecs
 
Fun with my small note animal tissue new
Fun with my small note animal tissue newFun with my small note animal tissue new
Fun with my small note animal tissue new
 
Parametric analysis and multi objective optimization of cutting parameters in...
Parametric analysis and multi objective optimization of cutting parameters in...Parametric analysis and multi objective optimization of cutting parameters in...
Parametric analysis and multi objective optimization of cutting parameters in...
 
The feel of silk bagian kedua
The feel of silk bagian keduaThe feel of silk bagian kedua
The feel of silk bagian kedua
 
Classification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining techniqueClassification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining technique
 
Company
CompanyCompany
Company
 
Canada
CanadaCanada
Canada
 
Biodatakuikka rusmawardani
Biodatakuikka rusmawardaniBiodatakuikka rusmawardani
Biodatakuikka rusmawardani
 

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 Publishing House

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnameSAT Publishing House
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...eSAT Publishing House
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnameSAT Publishing House
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...eSAT Publishing House
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaeSAT Publishing House
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingeSAT Publishing House
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...eSAT Publishing House
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...eSAT Publishing House
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...eSAT Publishing House
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a revieweSAT Publishing House
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...eSAT Publishing House
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard managementeSAT Publishing House
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallseSAT Publishing House
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...eSAT Publishing House
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...eSAT Publishing House
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaeSAT Publishing House
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structureseSAT Publishing House
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingseSAT Publishing House
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...eSAT Publishing House
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...eSAT Publishing House
 

More from eSAT Publishing House (20)

Likely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnamLikely impacts of hudhud on the environment of visakhapatnam
Likely impacts of hudhud on the environment of visakhapatnam
 
Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...Impact of flood disaster in a drought prone area – case study of alampur vill...
Impact of flood disaster in a drought prone area – case study of alampur vill...
 
Hudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnamHudhud cyclone – a severe disaster in visakhapatnam
Hudhud cyclone – a severe disaster in visakhapatnam
 
Groundwater investigation using geophysical methods a case study of pydibhim...
Groundwater investigation using geophysical methods  a case study of pydibhim...Groundwater investigation using geophysical methods  a case study of pydibhim...
Groundwater investigation using geophysical methods a case study of pydibhim...
 
Flood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, indiaFlood related disasters concerned to urban flooding in bangalore, india
Flood related disasters concerned to urban flooding in bangalore, india
 
Enhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity buildingEnhancing post disaster recovery by optimal infrastructure capacity building
Enhancing post disaster recovery by optimal infrastructure capacity building
 
Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...Effect of lintel and lintel band on the global performance of reinforced conc...
Effect of lintel and lintel band on the global performance of reinforced conc...
 
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
Wind damage to trees in the gitam university campus at visakhapatnam by cyclo...
 
Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...Wind damage to buildings, infrastrucuture and landscape elements along the be...
Wind damage to buildings, infrastrucuture and landscape elements along the be...
 
Shear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a reviewShear strength of rc deep beam panels – a review
Shear strength of rc deep beam panels – a review
 
Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...Role of voluntary teams of professional engineers in dissater management – ex...
Role of voluntary teams of professional engineers in dissater management – ex...
 
Risk analysis and environmental hazard management
Risk analysis and environmental hazard managementRisk analysis and environmental hazard management
Risk analysis and environmental hazard management
 
Review study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear wallsReview study on performance of seismically tested repaired shear walls
Review study on performance of seismically tested repaired shear walls
 
Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...Monitoring and assessment of air quality with reference to dust particles (pm...
Monitoring and assessment of air quality with reference to dust particles (pm...
 
Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...Low cost wireless sensor networks and smartphone applications for disaster ma...
Low cost wireless sensor networks and smartphone applications for disaster ma...
 
Coastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of indiaCoastal zones – seismic vulnerability an analysis from east coast of india
Coastal zones – seismic vulnerability an analysis from east coast of india
 
Can fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structuresCan fracture mechanics predict damage due disaster of structures
Can fracture mechanics predict damage due disaster of structures
 
Assessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildingsAssessment of seismic susceptibility of rc buildings
Assessment of seismic susceptibility of rc buildings
 
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
A geophysical insight of earthquake occurred on 21 st may 2014 off paradip, b...
 
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
Effect of hudhud cyclone on the development of visakhapatnam as smart and gre...
 

Recently uploaded

SOFTWARE ESTIMATION COCOMO AND FP CALCULATION
SOFTWARE ESTIMATION COCOMO AND FP CALCULATIONSOFTWARE ESTIMATION COCOMO AND FP CALCULATION
SOFTWARE ESTIMATION COCOMO AND FP CALCULATIONSneha Padhiar
 
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.elesangwon
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating SystemRashmi Bhat
 
『澳洲文凭』买麦考瑞大学毕业证书成绩单办理澳洲Macquarie文凭学位证书
『澳洲文凭』买麦考瑞大学毕业证书成绩单办理澳洲Macquarie文凭学位证书『澳洲文凭』买麦考瑞大学毕业证书成绩单办理澳洲Macquarie文凭学位证书
『澳洲文凭』买麦考瑞大学毕业证书成绩单办理澳洲Macquarie文凭学位证书rnrncn29
 
Comprehensive energy systems.pdf Comprehensive energy systems.pdf
Comprehensive energy systems.pdf Comprehensive energy systems.pdfComprehensive energy systems.pdf Comprehensive energy systems.pdf
Comprehensive energy systems.pdf Comprehensive energy systems.pdfalene1
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Erbil Polytechnic University
 
Cost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionCost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionSneha Padhiar
 
11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdfHafizMudaserAhmad
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONjhunlian
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating SystemRashmi Bhat
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxsiddharthjain2303
 
Turn leadership mistakes into a better future.pptx
Turn leadership mistakes into a better future.pptxTurn leadership mistakes into a better future.pptx
Turn leadership mistakes into a better future.pptxStephen Sitton
 
"Exploring the Essential Functions and Design Considerations of Spillways in ...
"Exploring the Essential Functions and Design Considerations of Spillways in ..."Exploring the Essential Functions and Design Considerations of Spillways in ...
"Exploring the Essential Functions and Design Considerations of Spillways in ...Erbil Polytechnic University
 
Earthing details of Electrical Substation
Earthing details of Electrical SubstationEarthing details of Electrical Substation
Earthing details of Electrical Substationstephanwindworld
 
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTFUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTSneha Padhiar
 
KCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosKCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosVictor Morales
 
Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Romil Mishra
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionMebane Rash
 
List of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfList of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfisabel213075
 

Recently uploaded (20)

SOFTWARE ESTIMATION COCOMO AND FP CALCULATION
SOFTWARE ESTIMATION COCOMO AND FP CALCULATIONSOFTWARE ESTIMATION COCOMO AND FP CALCULATION
SOFTWARE ESTIMATION COCOMO AND FP CALCULATION
 
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
2022 AWS DNA Hackathon 장애 대응 솔루션 jarvis.
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating System
 
『澳洲文凭』买麦考瑞大学毕业证书成绩单办理澳洲Macquarie文凭学位证书
『澳洲文凭』买麦考瑞大学毕业证书成绩单办理澳洲Macquarie文凭学位证书『澳洲文凭』买麦考瑞大学毕业证书成绩单办理澳洲Macquarie文凭学位证书
『澳洲文凭』买麦考瑞大学毕业证书成绩单办理澳洲Macquarie文凭学位证书
 
Comprehensive energy systems.pdf Comprehensive energy systems.pdf
Comprehensive energy systems.pdf Comprehensive energy systems.pdfComprehensive energy systems.pdf Comprehensive energy systems.pdf
Comprehensive energy systems.pdf Comprehensive energy systems.pdf
 
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
Comparative study of High-rise Building Using ETABS,SAP200 and SAFE., SAFE an...
 
Cost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based questionCost estimation approach: FP to COCOMO scenario based question
Cost estimation approach: FP to COCOMO scenario based question
 
11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf11. Properties of Liquid Fuels in Energy Engineering.pdf
11. Properties of Liquid Fuels in Energy Engineering.pdf
 
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTIONTHE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
THE SENDAI FRAMEWORK FOR DISASTER RISK REDUCTION
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating System
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptx
 
Turn leadership mistakes into a better future.pptx
Turn leadership mistakes into a better future.pptxTurn leadership mistakes into a better future.pptx
Turn leadership mistakes into a better future.pptx
 
"Exploring the Essential Functions and Design Considerations of Spillways in ...
"Exploring the Essential Functions and Design Considerations of Spillways in ..."Exploring the Essential Functions and Design Considerations of Spillways in ...
"Exploring the Essential Functions and Design Considerations of Spillways in ...
 
Earthing details of Electrical Substation
Earthing details of Electrical SubstationEarthing details of Electrical Substation
Earthing details of Electrical Substation
 
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENTFUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
FUNCTIONAL AND NON FUNCTIONAL REQUIREMENT
 
Designing pile caps according to ACI 318-19.pptx
Designing pile caps according to ACI 318-19.pptxDesigning pile caps according to ACI 318-19.pptx
Designing pile caps according to ACI 318-19.pptx
 
KCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitosKCD Costa Rica 2024 - Nephio para parvulitos
KCD Costa Rica 2024 - Nephio para parvulitos
 
Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________Gravity concentration_MI20612MI_________
Gravity concentration_MI20612MI_________
 
US Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of ActionUS Department of Education FAFSA Week of Action
US Department of Education FAFSA Week of Action
 
List of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdfList of Accredited Concrete Batching Plant.pdf
List of Accredited Concrete Batching Plant.pdf
 

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.