SlideShare uma empresa Scribd logo
1 de 3
Baixar para ler offline
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 347
VARIANCE ROVER SYSTEM: WEB ANALYTICS TOOL USING DATA
MINING
G. S. Kalekar1
, A.P.Mulmule2
, A. A. Pujari3
, A. A. Ugaonkar4
1, 2, 3, 4
Student, Computer Engineering Department, GES's R.H.S.COEMSR, Nashik, Maharashtra, India
Abstract
Learning Analytics by nature relies on computational information processing activities intended to extract from raw data some
interesting aspects that can be used to obtain insights into the behaviors of learners, the design of learning experiences, etc. There is a
large variety of computational techniques that can be employed, all with interesting properties, but it is the interpretation of their
results that really forms the core of the analytics process. As a rising subject, data mining and business intelligence are playing an
increasingly important role in the decision support activity of every walk of life. The Variance Rover System (VRS) mainly focused on
the large data sets obtained from online web visiting and categorizing this into clusters according some similarity and the process of
predicting customer behavior and selecting actions to influence that behavior to benefit the company, so as to take optimized and
beneficial decisions of business expansion.
Keywords: Analytics, Business intelligence, Clustering, Data Mining, Standard K-means, Optimized K-means
----------------------------------------------------------------------***------------------------------------------------------------------------
1. INTRODUCTION
With the tremendous competition in the domestic and
international business, Data Analytics has become one of
matters of concern to the enterprise. This important concept
has been given a new lease of life because of the growth of the
Internet and E-business. Data analysis takes Data at the center.
It gives a new life to the enterprise organization system and
optimizes the business process.
Data Mining Can be Used in Various business application for
different purposes such as decision support system, customer
retention strategies ,selective marketing, business management
user profile analysis to name a few. Data mining is the process
of discovering the knowledge. In today’s electronic
information era it becomes highly challenged to digital firms
to manage customer data to retrieve useful information as per
their requirement from that data, so market segmentation can
be used. Market segmentation also include customer retention
strategies, allocation of resources for advertising, to check
profit margins so outcome of segmentation plays big role in
deciding price of the products, attracting new customers and
identifying potential customers. Clustering analysis is able to
find out data distribution and proper inter relationship between
data items clustering is defined as “grouping of similar data”
.Clustering splits records in the database or data objects in the
dataset into series of meaningful subclasses or group. Data
mining is basically a useful process in which formation which
is incomplete and random that has been generated from
various business tasks such as production, marketing,
customer services of the enterprise.
1.1 Necessity
The focus area of this system is market research and analysis.
It is a web-based application and aims at determining target
markets and consumer density and identifying potential
customers. We have used the concept of Cluster analysis for
the same. This application will help determine the user’s
browsing details and monitor customer population. Web User
analysis is a simple template that provides a graphical, time-
phased overview of process in terms of conceptual design,
mission, analysis, and definition phases.
Fig -1: Web Analytics Template diagram
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 348
To trace the future market at particular place we need to find
that from which location of the world the visitors of the
website belong. Maximum used services by this visitors also
referral of the website and whole control of the system at
administrator. The similar kind of facility is available with
Google Analytic Tools but for every domain we have to pay
the different fees, also the whole database needs to be shared
with Google. Report formation is not as per our requirement
which is the major task in every system. But, unfortunately the
ownership of the generated reports lies with Google Analytics.
1.2 Objectives
The main objective of this paper is market research from mass
of real time data which work faster, better and robust. Along
with market research the project will cover the following
aspects:
i. Market research.
ii. Analyzing visitor traffic country wise and product
wise.
iii. Customer tracking
iv. Referrer researches
v. Product Positioning
vi. Business expansion
vii. Predicting future markets
viii. Retrieve user’s browsing details
ix. Reporting
2. LITERATURE SURVEY
Data mining is a powerful new technology with great ability to
help organizations to focus on the most important information
asset such as data that they have collected about the behavior
of their customers and potential customers. Most of the
analytical techniques used in data mining are often well-
known mathematical algorithms and techniques. It explores
information within the data that queries and reports can't
effectively reveal. Data mining techniques such as Decision
trees, Genetic algorithms, Neural networks and many more
help to analyze data in efficient manner. What is new is the
application of those techniques to general business problems
made possible by the increased availability of data and
inexpensive storage and processing power.
Clustering is nothing but “grouping similar kind of data
together”. By making use of clustering and the analytical tool
proper interrelationships between data points can be found out.
Thus, Data Mining will surely allow to analyze the data for
developing a good analytical tool. Thus such a tool should be
able to compare between different characteristics or attributes
of different groups and indentify different important
characteristics of each segment to decide different business
strategies. Hence, Clustering analysis can find out the
distribution of different data entities as well can find out
proper inter relationships between the data objects so that it
can divide the data set into series of meaningful subclasses.
One such common yet exclusive method used in clustering
analysis is K-means Clustering algorithm, which is a fast
method for classification of data into required clusters. Also,
Optimization of this algorithm will lead to faster segmentation
and will surely lead to more efficient results.
3. RELATED ALGORITHMS
3.1 Standard K-Means
K-means algorithm is an algorithm used to classify or to group
the objects based on attributes features into K number of
group. K is positive integer number. The grouping is done by
minimizing the sum of squares of distances between data and
the corresponding cluster centroid. Thus, the purpose of K-
mean clustering is to classify the data [5].
Standard k-means algorithm:
1. Initially, the number of clusters must be known, or
chosen, to be K say. K is positive integer number
.These points represent initial group centroids.Often
chosen such that the points are mutually “farthest
apart”, in some way
2. Assign each object to the group that has the closest
centroid.
3. When all objects have been assigned, recalculate the
positions of the K centroids.
4. This process is iterated until the centroids no longer
move. This produces a separation of the objects into
groups from which the metric to be minimized can be
calculated.
Advantage is that it is simple and has high processing speed
when applied to large amount of data. K-Means calculates
centroid of the clusters by taking average of the data points in
the data set. Its disadvantage is that it does not yield the same
result with each execution, as the resultant clusters depend
upon the initial random assignments as discussed in[1][4] and
most distance calculations in standard K-means are redundant.
3.2 Optimized K-Means
We use triangle inequality to reduce these redundant
calculations. In this way we improved the efficiency of the
algorithm to a large extent. As can be seen from the generally
acknowledged truth, the sum of two sides is greater than the
third side in a triangle. Euclidean distance meets the triangle
inequality, which we can [1] extend to the multi-dimensional
Euclidean space. We can take three vectors in Euclidean space
randomly: x, a, b, then:
d(x,a) + d(a,b) ≥ d(x,b)
d(a,b)− d(x,a )≤ d(x,b)
d(Ci,Cj), is the distance between two cluster centers.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
__________________________________________________________________________________________
Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 349
If 2d(x,a )≤ d(Ci,Cj) then:
2d(x,Cj )- d(x,Cj) ≤ d(Cj,Ck)- d(x,Cj) (1)
According to equation (1) then : d(x,Cj) ≤ d(x,Ck)
First, select initial cluster centers, and set the lower bound
y(x,f)=0 for each data point and cluster center. Second, assign
each data point to its nearest initial cluster, we will use the
results obtained previously to avoid unnecessary distance
calculations in this process. Each time d(x,f) is computed, set
y(x,f)=d(x,f).
4. APPLICATION
If the system is build to trace that which services or products
or application of the website are requested by the Visitors,
then it leads Business Intelligence to take place. We can
provide reports as desired which will surely help the
organization to make decisions regarding whether to expand,
shrink and retain their services, products or applications.
CONCLUSIONS
Customer is an important asset of an enterprise. Considering
this, the proposed system does the market research and
analysis which helps to determine target markets and
consumer density. Here, Data mining provides the technology
to analyze mass volume of data and/or detect hidden patterns
in data to convert raw data into valuable information.
ACKNOWLEDGMENTS
Thanks to Assistant Prof N.V.Alone for his valuable,
intellectual and encouraging guidance .He is the Head of the
Department of Computer Department at GES R.H.S COE,
Nashik. He has received Master in Computer Engineering and
has more than twelve years of teaching experience.
REFERENCES
[1]. Gao Hua , “Customer Relationship Management Based on
Data Mining Technique” 978-1-4244-8694-6/11/$26.00
©2011 IEEE
[2]. Xiaoping Qin, Shijue Zheng , Tingting HeMing Zou,Ying
Huang, “Optimizated K-means algorithm and application in
CRM system” 2010 International Symposium on Computer,
Communication, Control and Automation
[3]. Shu-Hsien Liao , Pei-Hui Chu, Pei-Yuan Hsiao “Data
mining techniques and its applications –A Decade review
from 2000 to 2011” , journal homepage:
www.elsevier.com/locate/eswa,Expert Systems with
Applications 39 (2012) 11303–11311
[4]. Mrs.G.P.Dharne, Mrs.S.A. Kinariwala Mrs.A.S.vaidya,
MS.P.V. Pandit, “A web user analyser by hierarchical and
optimized K-means algotrithm”, vol.1, issue7, dec.2011
Technique” 978-1- 4244-8694-6/11/$26.00 ©2011 IEEE
[5]. J. Han and M. Kamber, Data Mining: Concepts and
Techniques 2006
BIOGRAPHIES
Gauri Sanjay Kalekar, She is pursuing her
B.E. course in computer from University of
Pune.
Aditi Prakash Mulmule, She is pursuing her
B.E. course in computer from University of
Pune.
Akshay Arvind Pujari, He is pursuing his
B.E. course in computer from University of
Pune.
Abhilash Ajay Ugaonkar, He is pursuing his
B.E. course in computer from University of
Pune

Mais conteúdo relacionado

Mais procurados

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
 
Web Based Fuzzy Clustering Analysis
Web Based Fuzzy Clustering AnalysisWeb Based Fuzzy Clustering Analysis
Web Based Fuzzy Clustering Analysisinventy
 
V2 i9 ijertv2is90699-1
V2 i9 ijertv2is90699-1V2 i9 ijertv2is90699-1
V2 i9 ijertv2is90699-1warishali570
 
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...theijes
 
Study and Analysis of K-Means Clustering Algorithm Using Rapidminer
Study and Analysis of K-Means Clustering Algorithm Using RapidminerStudy and Analysis of K-Means Clustering Algorithm Using Rapidminer
Study and Analysis of K-Means Clustering Algorithm Using RapidminerIJERA Editor
 
An Robust Outsourcing of Multi Party Dataset by Utilizing Super-Modularity an...
An Robust Outsourcing of Multi Party Dataset by Utilizing Super-Modularity an...An Robust Outsourcing of Multi Party Dataset by Utilizing Super-Modularity an...
An Robust Outsourcing of Multi Party Dataset by Utilizing Super-Modularity an...IRJET Journal
 
Survey paper on Big Data Imputation and Privacy Algorithms
Survey paper on Big Data Imputation and Privacy AlgorithmsSurvey paper on Big Data Imputation and Privacy Algorithms
Survey paper on Big Data Imputation and Privacy AlgorithmsIRJET Journal
 
Data Mining In Market Research
Data Mining In Market ResearchData Mining In Market Research
Data Mining In Market Researchkevinlan
 
Analysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetAnalysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetIRJET Journal
 
A STUDY ON SIMILARITY MEASURE FUNCTIONS ON ENGINEERING MATERIALS SELECTION
A STUDY ON SIMILARITY MEASURE FUNCTIONS ON ENGINEERING MATERIALS SELECTION A STUDY ON SIMILARITY MEASURE FUNCTIONS ON ENGINEERING MATERIALS SELECTION
A STUDY ON SIMILARITY MEASURE FUNCTIONS ON ENGINEERING MATERIALS SELECTION cscpconf
 
IRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET - An Overview of Machine Learning Algorithms for Data ScienceIRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET - An Overview of Machine Learning Algorithms for Data ScienceIRJET Journal
 
A study on rough set theory based
A study on rough set theory basedA study on rough set theory based
A study on rough set theory basedijaia
 
A frame work for clustering time evolving data
A frame work for clustering time evolving dataA frame work for clustering time evolving data
A frame work for clustering time evolving dataiaemedu
 
data generalization and summarization
data generalization and summarization data generalization and summarization
data generalization and summarization janani thirupathi
 
TWO PARTY HIERARICHAL CLUSTERING OVER HORIZONTALLY PARTITIONED DATA SET
TWO PARTY HIERARICHAL CLUSTERING OVER HORIZONTALLY PARTITIONED DATA SETTWO PARTY HIERARICHAL CLUSTERING OVER HORIZONTALLY PARTITIONED DATA SET
TWO PARTY HIERARICHAL CLUSTERING OVER HORIZONTALLY PARTITIONED DATA SETIJDKP
 

Mais procurados (18)

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
 
Web Based Fuzzy Clustering Analysis
Web Based Fuzzy Clustering AnalysisWeb Based Fuzzy Clustering Analysis
Web Based Fuzzy Clustering Analysis
 
V2 i9 ijertv2is90699-1
V2 i9 ijertv2is90699-1V2 i9 ijertv2is90699-1
V2 i9 ijertv2is90699-1
 
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
 
Study and Analysis of K-Means Clustering Algorithm Using Rapidminer
Study and Analysis of K-Means Clustering Algorithm Using RapidminerStudy and Analysis of K-Means Clustering Algorithm Using Rapidminer
Study and Analysis of K-Means Clustering Algorithm Using Rapidminer
 
An Robust Outsourcing of Multi Party Dataset by Utilizing Super-Modularity an...
An Robust Outsourcing of Multi Party Dataset by Utilizing Super-Modularity an...An Robust Outsourcing of Multi Party Dataset by Utilizing Super-Modularity an...
An Robust Outsourcing of Multi Party Dataset by Utilizing Super-Modularity an...
 
Survey paper on Big Data Imputation and Privacy Algorithms
Survey paper on Big Data Imputation and Privacy AlgorithmsSurvey paper on Big Data Imputation and Privacy Algorithms
Survey paper on Big Data Imputation and Privacy Algorithms
 
Data Mining In Market Research
Data Mining In Market ResearchData Mining In Market Research
Data Mining In Market Research
 
Analysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease DatasetAnalysis on Data Mining Techniques for Heart Disease Dataset
Analysis on Data Mining Techniques for Heart Disease Dataset
 
Clustering
ClusteringClustering
Clustering
 
A STUDY ON SIMILARITY MEASURE FUNCTIONS ON ENGINEERING MATERIALS SELECTION
A STUDY ON SIMILARITY MEASURE FUNCTIONS ON ENGINEERING MATERIALS SELECTION A STUDY ON SIMILARITY MEASURE FUNCTIONS ON ENGINEERING MATERIALS SELECTION
A STUDY ON SIMILARITY MEASURE FUNCTIONS ON ENGINEERING MATERIALS SELECTION
 
IRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET - An Overview of Machine Learning Algorithms for Data ScienceIRJET - An Overview of Machine Learning Algorithms for Data Science
IRJET - An Overview of Machine Learning Algorithms for Data Science
 
A study on rough set theory based
A study on rough set theory basedA study on rough set theory based
A study on rough set theory based
 
130509
130509130509
130509
 
A frame work for clustering time evolving data
A frame work for clustering time evolving dataA frame work for clustering time evolving data
A frame work for clustering time evolving data
 
data generalization and summarization
data generalization and summarization data generalization and summarization
data generalization and summarization
 
TWO PARTY HIERARICHAL CLUSTERING OVER HORIZONTALLY PARTITIONED DATA SET
TWO PARTY HIERARICHAL CLUSTERING OVER HORIZONTALLY PARTITIONED DATA SETTWO PARTY HIERARICHAL CLUSTERING OVER HORIZONTALLY PARTITIONED DATA SET
TWO PARTY HIERARICHAL CLUSTERING OVER HORIZONTALLY PARTITIONED DATA SET
 
F04463437
F04463437F04463437
F04463437
 

Destaque

Safety zone determination for wireless cellular tower a case study from tan...
Safety zone determination for wireless cellular tower   a case study from tan...Safety zone determination for wireless cellular tower   a case study from tan...
Safety zone determination for wireless cellular tower a case study from tan...eSAT Journals
 
Template based framework for rapid fast development of enterprise applications
Template based framework for rapid fast development of enterprise applicationsTemplate based framework for rapid fast development of enterprise applications
Template based framework for rapid fast development of enterprise applicationseSAT Journals
 
Value stream mapping
Value stream mappingValue stream mapping
Value stream mappingeSAT Journals
 
Effect of chopping oil palm fruit spikelets on the free fatty acid content re...
Effect of chopping oil palm fruit spikelets on the free fatty acid content re...Effect of chopping oil palm fruit spikelets on the free fatty acid content re...
Effect of chopping oil palm fruit spikelets on the free fatty acid content re...eSAT Journals
 
Smart phone as a cloud server machine computing framework
Smart phone as a cloud server machine computing frameworkSmart phone as a cloud server machine computing framework
Smart phone as a cloud server machine computing frameworkeSAT Journals
 
Study of cigarette butts extract as corrosiveinhibiting agent in j55 steel ma...
Study of cigarette butts extract as corrosiveinhibiting agent in j55 steel ma...Study of cigarette butts extract as corrosiveinhibiting agent in j55 steel ma...
Study of cigarette butts extract as corrosiveinhibiting agent in j55 steel ma...eSAT Journals
 
Reengineering of relational databases to object oriented database
Reengineering of relational databases to object oriented databaseReengineering of relational databases to object oriented database
Reengineering of relational databases to object oriented databaseeSAT Journals
 
Effectiveness of multilayer coated tool in turning of aisi 430 f steel
Effectiveness of multilayer coated tool in turning of aisi 430 f steelEffectiveness of multilayer coated tool in turning of aisi 430 f steel
Effectiveness of multilayer coated tool in turning of aisi 430 f steeleSAT Journals
 
Comparision of different imaging techniques used for chronic wounds
Comparision of different imaging techniques used for chronic woundsComparision of different imaging techniques used for chronic wounds
Comparision of different imaging techniques used for chronic woundseSAT Journals
 
An algorithm for solving integer linear programming problems
An algorithm for solving integer linear programming problemsAn algorithm for solving integer linear programming problems
An algorithm for solving integer linear programming problemseSAT Journals
 
Bioremediation of xenobiotics
Bioremediation of xenobioticsBioremediation of xenobiotics
Bioremediation of xenobioticseSAT Journals
 
Color measurements of electroplated gold film on hull cell panels
Color measurements of electroplated gold film on hull cell panelsColor measurements of electroplated gold film on hull cell panels
Color measurements of electroplated gold film on hull cell panelseSAT Journals
 
Recommendation generation by integrating sequential pattern mining and semantics
Recommendation generation by integrating sequential pattern mining and semanticsRecommendation generation by integrating sequential pattern mining and semantics
Recommendation generation by integrating sequential pattern mining and semanticseSAT Journals
 
Optimization of a multistorey building by optimum positioning of shear wall
Optimization of a multistorey building by optimum positioning of shear wallOptimization of a multistorey building by optimum positioning of shear wall
Optimization of a multistorey building by optimum positioning of shear walleSAT Journals
 
Biogas production potential from municipalorganic wastes in dhaka city, bangl...
Biogas production potential from municipalorganic wastes in dhaka city, bangl...Biogas production potential from municipalorganic wastes in dhaka city, bangl...
Biogas production potential from municipalorganic wastes in dhaka city, bangl...eSAT Journals
 
Risk assessment of a hydroelectric dam with parallel redundant turbine
Risk assessment of a hydroelectric dam with parallel redundant turbineRisk assessment of a hydroelectric dam with parallel redundant turbine
Risk assessment of a hydroelectric dam with parallel redundant turbineeSAT Journals
 
Effect of construction delays on project time overrun
Effect of construction delays on project time overrunEffect of construction delays on project time overrun
Effect of construction delays on project time overruneSAT Journals
 

Destaque (17)

Safety zone determination for wireless cellular tower a case study from tan...
Safety zone determination for wireless cellular tower   a case study from tan...Safety zone determination for wireless cellular tower   a case study from tan...
Safety zone determination for wireless cellular tower a case study from tan...
 
Template based framework for rapid fast development of enterprise applications
Template based framework for rapid fast development of enterprise applicationsTemplate based framework for rapid fast development of enterprise applications
Template based framework for rapid fast development of enterprise applications
 
Value stream mapping
Value stream mappingValue stream mapping
Value stream mapping
 
Effect of chopping oil palm fruit spikelets on the free fatty acid content re...
Effect of chopping oil palm fruit spikelets on the free fatty acid content re...Effect of chopping oil palm fruit spikelets on the free fatty acid content re...
Effect of chopping oil palm fruit spikelets on the free fatty acid content re...
 
Smart phone as a cloud server machine computing framework
Smart phone as a cloud server machine computing frameworkSmart phone as a cloud server machine computing framework
Smart phone as a cloud server machine computing framework
 
Study of cigarette butts extract as corrosiveinhibiting agent in j55 steel ma...
Study of cigarette butts extract as corrosiveinhibiting agent in j55 steel ma...Study of cigarette butts extract as corrosiveinhibiting agent in j55 steel ma...
Study of cigarette butts extract as corrosiveinhibiting agent in j55 steel ma...
 
Reengineering of relational databases to object oriented database
Reengineering of relational databases to object oriented databaseReengineering of relational databases to object oriented database
Reengineering of relational databases to object oriented database
 
Effectiveness of multilayer coated tool in turning of aisi 430 f steel
Effectiveness of multilayer coated tool in turning of aisi 430 f steelEffectiveness of multilayer coated tool in turning of aisi 430 f steel
Effectiveness of multilayer coated tool in turning of aisi 430 f steel
 
Comparision of different imaging techniques used for chronic wounds
Comparision of different imaging techniques used for chronic woundsComparision of different imaging techniques used for chronic wounds
Comparision of different imaging techniques used for chronic wounds
 
An algorithm for solving integer linear programming problems
An algorithm for solving integer linear programming problemsAn algorithm for solving integer linear programming problems
An algorithm for solving integer linear programming problems
 
Bioremediation of xenobiotics
Bioremediation of xenobioticsBioremediation of xenobiotics
Bioremediation of xenobiotics
 
Color measurements of electroplated gold film on hull cell panels
Color measurements of electroplated gold film on hull cell panelsColor measurements of electroplated gold film on hull cell panels
Color measurements of electroplated gold film on hull cell panels
 
Recommendation generation by integrating sequential pattern mining and semantics
Recommendation generation by integrating sequential pattern mining and semanticsRecommendation generation by integrating sequential pattern mining and semantics
Recommendation generation by integrating sequential pattern mining and semantics
 
Optimization of a multistorey building by optimum positioning of shear wall
Optimization of a multistorey building by optimum positioning of shear wallOptimization of a multistorey building by optimum positioning of shear wall
Optimization of a multistorey building by optimum positioning of shear wall
 
Biogas production potential from municipalorganic wastes in dhaka city, bangl...
Biogas production potential from municipalorganic wastes in dhaka city, bangl...Biogas production potential from municipalorganic wastes in dhaka city, bangl...
Biogas production potential from municipalorganic wastes in dhaka city, bangl...
 
Risk assessment of a hydroelectric dam with parallel redundant turbine
Risk assessment of a hydroelectric dam with parallel redundant turbineRisk assessment of a hydroelectric dam with parallel redundant turbine
Risk assessment of a hydroelectric dam with parallel redundant turbine
 
Effect of construction delays on project time overrun
Effect of construction delays on project time overrunEffect of construction delays on project time overrun
Effect of construction delays on project time overrun
 

Semelhante a Variance rover system

Data mining techniques
Data mining techniquesData mining techniques
Data mining techniqueseSAT Journals
 
Data mining techniques a survey paper
Data mining techniques a survey paperData mining techniques a survey paper
Data mining techniques a survey papereSAT Publishing House
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYCLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYEditor IJMTER
 
A 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
 
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
 
Different Classification Technique for Data mining in Insurance Industry usin...
Different Classification Technique for Data mining in Insurance Industry usin...Different Classification Technique for Data mining in Insurance Industry usin...
Different Classification Technique for Data mining in Insurance Industry usin...IOSRjournaljce
 
How Partitioning Clustering Technique For Implementing...
How Partitioning Clustering Technique For Implementing...How Partitioning Clustering Technique For Implementing...
How Partitioning Clustering Technique For Implementing...Nicolle Dammann
 
Correlation of artificial neural network classification and nfrs attribute fi...
Correlation of artificial neural network classification and nfrs attribute fi...Correlation of artificial neural network classification and nfrs attribute fi...
Correlation of artificial neural network classification and nfrs attribute fi...eSAT Journals
 
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
 
Applications Of Clustering Techniques In Data Mining A Comparative Study
Applications Of Clustering Techniques In Data Mining  A Comparative StudyApplications Of Clustering Techniques In Data Mining  A Comparative Study
Applications Of Clustering Techniques In Data Mining A Comparative StudyFiona Phillips
 
IRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data MiningIRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data MiningIRJET Journal
 
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
 
Introduction to feature subset selection method
Introduction to feature subset selection methodIntroduction to feature subset selection method
Introduction to feature subset selection methodIJSRD
 
A Survey on Machine Learning Algorithms
A Survey on Machine Learning AlgorithmsA Survey on Machine Learning Algorithms
A Survey on Machine Learning AlgorithmsAM Publications
 
Review of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmReview of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmIRJET Journal
 
MPSKM Algorithm to Cluster Uneven Dimensional Time Series Subspace Data
MPSKM Algorithm to Cluster Uneven Dimensional Time Series Subspace DataMPSKM Algorithm to Cluster Uneven Dimensional Time Series Subspace Data
MPSKM Algorithm to Cluster Uneven Dimensional Time Series Subspace DataIRJET Journal
 
Prediction of Default Customer in Banking Sector using Artificial Neural Network
Prediction of Default Customer in Banking Sector using Artificial Neural NetworkPrediction of Default Customer in Banking Sector using Artificial Neural Network
Prediction of Default Customer in Banking Sector using Artificial Neural Networkrahulmonikasharma
 
Effectual citizen relationship management with data mining techniques
Effectual citizen relationship management with data mining techniquesEffectual citizen relationship management with data mining techniques
Effectual citizen relationship management with data mining techniqueseSAT Publishing House
 
Effectual citizen relationship management with data mining techniques
Effectual citizen relationship management with data mining techniquesEffectual citizen relationship management with data mining techniques
Effectual citizen relationship management with data mining techniqueseSAT Journals
 

Semelhante a Variance rover system (20)

Data mining techniques
Data mining techniquesData mining techniques
Data mining techniques
 
Data mining techniques a survey paper
Data mining techniques a survey paperData mining techniques a survey paper
Data mining techniques a survey paper
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEYCLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
 
A 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
 
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
 
Different Classification Technique for Data mining in Insurance Industry usin...
Different Classification Technique for Data mining in Insurance Industry usin...Different Classification Technique for Data mining in Insurance Industry usin...
Different Classification Technique for Data mining in Insurance Industry usin...
 
69.pdf
69.pdf69.pdf
69.pdf
 
How Partitioning Clustering Technique For Implementing...
How Partitioning Clustering Technique For Implementing...How Partitioning Clustering Technique For Implementing...
How Partitioning Clustering Technique For Implementing...
 
Correlation of artificial neural network classification and nfrs attribute fi...
Correlation of artificial neural network classification and nfrs attribute fi...Correlation of artificial neural network classification and nfrs attribute fi...
Correlation of artificial neural network classification and nfrs attribute fi...
 
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
 
Applications Of Clustering Techniques In Data Mining A Comparative Study
Applications Of Clustering Techniques In Data Mining  A Comparative StudyApplications Of Clustering Techniques In Data Mining  A Comparative Study
Applications Of Clustering Techniques In Data Mining A Comparative Study
 
IRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data MiningIRJET- A Detailed Study on Classification Techniques for Data Mining
IRJET- A Detailed Study on Classification Techniques for Data Mining
 
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
 
Introduction to feature subset selection method
Introduction to feature subset selection methodIntroduction to feature subset selection method
Introduction to feature subset selection method
 
A Survey on Machine Learning Algorithms
A Survey on Machine Learning AlgorithmsA Survey on Machine Learning Algorithms
A Survey on Machine Learning Algorithms
 
Review of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering AlgorithmReview of Existing Methods in K-means Clustering Algorithm
Review of Existing Methods in K-means Clustering Algorithm
 
MPSKM Algorithm to Cluster Uneven Dimensional Time Series Subspace Data
MPSKM Algorithm to Cluster Uneven Dimensional Time Series Subspace DataMPSKM Algorithm to Cluster Uneven Dimensional Time Series Subspace Data
MPSKM Algorithm to Cluster Uneven Dimensional Time Series Subspace Data
 
Prediction of Default Customer in Banking Sector using Artificial Neural Network
Prediction of Default Customer in Banking Sector using Artificial Neural NetworkPrediction of Default Customer in Banking Sector using Artificial Neural Network
Prediction of Default Customer in Banking Sector using Artificial Neural Network
 
Effectual citizen relationship management with data mining techniques
Effectual citizen relationship management with data mining techniquesEffectual citizen relationship management with data mining techniques
Effectual citizen relationship management with data mining techniques
 
Effectual citizen relationship management with data mining techniques
Effectual citizen relationship management with data mining techniquesEffectual citizen relationship management with data mining techniques
Effectual citizen relationship management with data mining techniques
 

Mais de 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 & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & 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
 

Mais de 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 & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & 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...
 

Último

VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...SUHANI PANDEY
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01KreezheaRecto
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfRagavanV2
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VDineshKumar4165
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdfKamal Acharya
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Bookingdharasingh5698
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdfSuman Jyoti
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxJuliansyahHarahap1
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueBhangaleSonal
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 

Último (20)

VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01Double rodded leveling 1 pdf activity 01
Double rodded leveling 1 pdf activity 01
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
Online banking management system project.pdf
Online banking management system project.pdfOnline banking management system project.pdf
Online banking management system project.pdf
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank  Design by Working Stress - IS Method.pdfIntze Overhead Water Tank  Design by Working Stress - IS Method.pdf
Intze Overhead Water Tank Design by Working Stress - IS Method.pdf
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Double Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torqueDouble Revolving field theory-how the rotor develops torque
Double Revolving field theory-how the rotor develops torque
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 

Variance rover system

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 347 VARIANCE ROVER SYSTEM: WEB ANALYTICS TOOL USING DATA MINING G. S. Kalekar1 , A.P.Mulmule2 , A. A. Pujari3 , A. A. Ugaonkar4 1, 2, 3, 4 Student, Computer Engineering Department, GES's R.H.S.COEMSR, Nashik, Maharashtra, India Abstract Learning Analytics by nature relies on computational information processing activities intended to extract from raw data some interesting aspects that can be used to obtain insights into the behaviors of learners, the design of learning experiences, etc. There is a large variety of computational techniques that can be employed, all with interesting properties, but it is the interpretation of their results that really forms the core of the analytics process. As a rising subject, data mining and business intelligence are playing an increasingly important role in the decision support activity of every walk of life. The Variance Rover System (VRS) mainly focused on the large data sets obtained from online web visiting and categorizing this into clusters according some similarity and the process of predicting customer behavior and selecting actions to influence that behavior to benefit the company, so as to take optimized and beneficial decisions of business expansion. Keywords: Analytics, Business intelligence, Clustering, Data Mining, Standard K-means, Optimized K-means ----------------------------------------------------------------------***------------------------------------------------------------------------ 1. INTRODUCTION With the tremendous competition in the domestic and international business, Data Analytics has become one of matters of concern to the enterprise. This important concept has been given a new lease of life because of the growth of the Internet and E-business. Data analysis takes Data at the center. It gives a new life to the enterprise organization system and optimizes the business process. Data Mining Can be Used in Various business application for different purposes such as decision support system, customer retention strategies ,selective marketing, business management user profile analysis to name a few. Data mining is the process of discovering the knowledge. In today’s electronic information era it becomes highly challenged to digital firms to manage customer data to retrieve useful information as per their requirement from that data, so market segmentation can be used. Market segmentation also include customer retention strategies, allocation of resources for advertising, to check profit margins so outcome of segmentation plays big role in deciding price of the products, attracting new customers and identifying potential customers. Clustering analysis is able to find out data distribution and proper inter relationship between data items clustering is defined as “grouping of similar data” .Clustering splits records in the database or data objects in the dataset into series of meaningful subclasses or group. Data mining is basically a useful process in which formation which is incomplete and random that has been generated from various business tasks such as production, marketing, customer services of the enterprise. 1.1 Necessity The focus area of this system is market research and analysis. It is a web-based application and aims at determining target markets and consumer density and identifying potential customers. We have used the concept of Cluster analysis for the same. This application will help determine the user’s browsing details and monitor customer population. Web User analysis is a simple template that provides a graphical, time- phased overview of process in terms of conceptual design, mission, analysis, and definition phases. Fig -1: Web Analytics Template diagram
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 348 To trace the future market at particular place we need to find that from which location of the world the visitors of the website belong. Maximum used services by this visitors also referral of the website and whole control of the system at administrator. The similar kind of facility is available with Google Analytic Tools but for every domain we have to pay the different fees, also the whole database needs to be shared with Google. Report formation is not as per our requirement which is the major task in every system. But, unfortunately the ownership of the generated reports lies with Google Analytics. 1.2 Objectives The main objective of this paper is market research from mass of real time data which work faster, better and robust. Along with market research the project will cover the following aspects: i. Market research. ii. Analyzing visitor traffic country wise and product wise. iii. Customer tracking iv. Referrer researches v. Product Positioning vi. Business expansion vii. Predicting future markets viii. Retrieve user’s browsing details ix. Reporting 2. LITERATURE SURVEY Data mining is a powerful new technology with great ability to help organizations to focus on the most important information asset such as data that they have collected about the behavior of their customers and potential customers. Most of the analytical techniques used in data mining are often well- known mathematical algorithms and techniques. It explores information within the data that queries and reports can't effectively reveal. Data mining techniques such as Decision trees, Genetic algorithms, Neural networks and many more help to analyze data in efficient manner. What is new is the application of those techniques to general business problems made possible by the increased availability of data and inexpensive storage and processing power. Clustering is nothing but “grouping similar kind of data together”. By making use of clustering and the analytical tool proper interrelationships between data points can be found out. Thus, Data Mining will surely allow to analyze the data for developing a good analytical tool. Thus such a tool should be able to compare between different characteristics or attributes of different groups and indentify different important characteristics of each segment to decide different business strategies. Hence, Clustering analysis can find out the distribution of different data entities as well can find out proper inter relationships between the data objects so that it can divide the data set into series of meaningful subclasses. One such common yet exclusive method used in clustering analysis is K-means Clustering algorithm, which is a fast method for classification of data into required clusters. Also, Optimization of this algorithm will lead to faster segmentation and will surely lead to more efficient results. 3. RELATED ALGORITHMS 3.1 Standard K-Means K-means algorithm is an algorithm used to classify or to group the objects based on attributes features into K number of group. K is positive integer number. The grouping is done by minimizing the sum of squares of distances between data and the corresponding cluster centroid. Thus, the purpose of K- mean clustering is to classify the data [5]. Standard k-means algorithm: 1. Initially, the number of clusters must be known, or chosen, to be K say. K is positive integer number .These points represent initial group centroids.Often chosen such that the points are mutually “farthest apart”, in some way 2. Assign each object to the group that has the closest centroid. 3. When all objects have been assigned, recalculate the positions of the K centroids. 4. This process is iterated until the centroids no longer move. This produces a separation of the objects into groups from which the metric to be minimized can be calculated. Advantage is that it is simple and has high processing speed when applied to large amount of data. K-Means calculates centroid of the clusters by taking average of the data points in the data set. Its disadvantage is that it does not yield the same result with each execution, as the resultant clusters depend upon the initial random assignments as discussed in[1][4] and most distance calculations in standard K-means are redundant. 3.2 Optimized K-Means We use triangle inequality to reduce these redundant calculations. In this way we improved the efficiency of the algorithm to a large extent. As can be seen from the generally acknowledged truth, the sum of two sides is greater than the third side in a triangle. Euclidean distance meets the triangle inequality, which we can [1] extend to the multi-dimensional Euclidean space. We can take three vectors in Euclidean space randomly: x, a, b, then: d(x,a) + d(a,b) ≥ d(x,b) d(a,b)− d(x,a )≤ d(x,b) d(Ci,Cj), is the distance between two cluster centers.
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 __________________________________________________________________________________________ Volume: 03 Issue: 01 | Jan-2014, Available @ http://www.ijret.org 349 If 2d(x,a )≤ d(Ci,Cj) then: 2d(x,Cj )- d(x,Cj) ≤ d(Cj,Ck)- d(x,Cj) (1) According to equation (1) then : d(x,Cj) ≤ d(x,Ck) First, select initial cluster centers, and set the lower bound y(x,f)=0 for each data point and cluster center. Second, assign each data point to its nearest initial cluster, we will use the results obtained previously to avoid unnecessary distance calculations in this process. Each time d(x,f) is computed, set y(x,f)=d(x,f). 4. APPLICATION If the system is build to trace that which services or products or application of the website are requested by the Visitors, then it leads Business Intelligence to take place. We can provide reports as desired which will surely help the organization to make decisions regarding whether to expand, shrink and retain their services, products or applications. CONCLUSIONS Customer is an important asset of an enterprise. Considering this, the proposed system does the market research and analysis which helps to determine target markets and consumer density. Here, Data mining provides the technology to analyze mass volume of data and/or detect hidden patterns in data to convert raw data into valuable information. ACKNOWLEDGMENTS Thanks to Assistant Prof N.V.Alone for his valuable, intellectual and encouraging guidance .He is the Head of the Department of Computer Department at GES R.H.S COE, Nashik. He has received Master in Computer Engineering and has more than twelve years of teaching experience. REFERENCES [1]. Gao Hua , “Customer Relationship Management Based on Data Mining Technique” 978-1-4244-8694-6/11/$26.00 ©2011 IEEE [2]. Xiaoping Qin, Shijue Zheng , Tingting HeMing Zou,Ying Huang, “Optimizated K-means algorithm and application in CRM system” 2010 International Symposium on Computer, Communication, Control and Automation [3]. Shu-Hsien Liao , Pei-Hui Chu, Pei-Yuan Hsiao “Data mining techniques and its applications –A Decade review from 2000 to 2011” , journal homepage: www.elsevier.com/locate/eswa,Expert Systems with Applications 39 (2012) 11303–11311 [4]. Mrs.G.P.Dharne, Mrs.S.A. Kinariwala Mrs.A.S.vaidya, MS.P.V. Pandit, “A web user analyser by hierarchical and optimized K-means algotrithm”, vol.1, issue7, dec.2011 Technique” 978-1- 4244-8694-6/11/$26.00 ©2011 IEEE [5]. J. Han and M. Kamber, Data Mining: Concepts and Techniques 2006 BIOGRAPHIES Gauri Sanjay Kalekar, She is pursuing her B.E. course in computer from University of Pune. Aditi Prakash Mulmule, She is pursuing her B.E. course in computer from University of Pune. Akshay Arvind Pujari, He is pursuing his B.E. course in computer from University of Pune. Abhilash Ajay Ugaonkar, He is pursuing his B.E. course in computer from University of Pune