SlideShare a Scribd company logo
Riset dan E-Jurnal Manajemen Informatika Komputer
Volume 3, Number 2, April 2019
e-ISSN : 2541-1330
p-ISSN : 2541-1332
41
Analysis of Sales by Using Apriori and FP-
Growth at PT. Panca Putra Solusindo
1
Sita Anggraeni, 2
Marlina Ana Iha, 3
Wati Erawati, 4
Sayyid Khairunnas
STMIK Nusa Mandiri ,STMIK Nusa Mandiri ,Universitas Bina Sarana Informatika,
Universitas Bina Sarana Informatika
Jakarta, Indonesia
sita.sia@nusamandiri.ac.id,marlina.anaiha@yahoo.co.id,wati.wti@bsi.ac.id, sayyid.skh@bsi.ac.id
Abstract— PT. Panca Putra Solusindo is a company which sells Electronic equipment.
It has a lot of transactions. Among these data, the company has not been able to provide
such platform that can be used as information for management to find out which products
are most preferred by consumers. Data mining is present to provide information patterns
to companies in answering these needs and helping in marketing to be more effective.
In this research, the function of the Apriori algorithm association is used to find out the
minimum support and minimum confidence and FP-Growth in knowing the frequent
itemset and both of them can find out the best rule that occurs in the transaction. These
two algorithms are tested by using Weka application version 3.8.
Keywords: Data Mining, Association Rule, Apriori, Frequent pattern growth, FP-Growth,
WEKA
I. INTRODUCTION (HEADING 1)
The increase of business competition requires
developers to find a strategy that can enhance
sales and marketing of products, one of which is
to use sales data. With sales activities every day,
the data will grow more and more. The data does
not only function as an archive for the company,
the data can be utilized and processed into useful
information for increasing sales of the product
and promotions.
Electronic products are items that are very
much needed today, because electronic
equpments are very helpful for humans in
carrying out various activities. This study raised
the problems that exist in PT. Panca Putra
Solusindo, which is still not providing the most
sold and interconnected products. Then the
promotion of products that are made in one
interconnected package is not maximized. In
addition, there are still many products in the
inventory, but the sales process is not or has not
been maximal.
One method that can be used is by applying
data mining usage. Because in data mining, there
are ways and techniques in meeting broad
information needs and that information can be
used as material for decision making. The
implemenation of data mining is by performing
one of the association functions in data mining
using apriori algorithms and analyst associations,
namely FP-Growth algorithm. The Apriori
algorithm which aims to find frequent itemsets is
run on a set of data. Apriori analysis defined a
process for finding all apriori rules that meet the
minimum requirements for support and
minimum requirements for confidence. As for
FPGrowth itself, it is an alternative algorithm
that can be used in terms of determining the set
of data that most frequently appears (frequent
itemset) in a set of data.
According to those backgrounds, the statements
of problems as follows:
1. How to apply the apriori and FP-Growth
algorithms to find out the sales of the most sold
electronic products?
2. Can apriori algorithms and FP-Growth help to
develop marketing strategies?
Riset dan E-Jurnal Manajemen Informatika Komputer
Volume 3, Number 2, April 2019
e-ISSN : 2541-1330
p-ISSN : 2541-1332
42
3. How to implement apriori and FP-Growth
algorithms on sales with the Weka application?
The purpose of this research is: To determine the
extent to which apriori and FP-Growth algorithms
can help the development of marketing strategies
with the implementation of Weka's data mining
application software.
The benefit of this research is: Helping companies
to find out the most sold electronic products.
II. LITERATURE REVIEW
Data mining is a term used to describe certain
knowledge and discover data in a database. Data
mining is a process that uses statistical techniques,
mathematics, artificial intelligence, and learning
machine to extract and identify useful information
and related knowledge from various large databases
(KusriniEmha, 2010)
Data mining has several main functions which in
each function has different usage goals, namely
A. Description, to give a brief description of a
large number of data sets and types.
B. Estimation, to guess an unknown value, for
example guessing someone's income when
information about that person is known.
C. Prediction, to estimate future value, for
example predicting the stock of goods in the next year.
D. Classification, is a process of finding a model
or function that explains or distinguishes a concept or
class of data, with the aim of being able to estimate
the class of an object whose label is unknown.
E. Clustering, grouping and identifying data that
has certain characteristics.
F. Association, also called market basket analysis
where this function identifies products that
consumers might purchase together with other
products.
Apriori algorithm is a basic algorithm proposed
by Agrawal & Srikant in 1994 to determine Frequent
itemsets for Boolean association rules. Apriori
algorithms include the types of Association Rules for
data mining. Rules that state associations between
several attributes are often called affinity analysis or
market basket analysis. Association analysis or
association rule mining is a data mining technique to
find the rules of an item combination. One of the
stages of association analysis that attracted the
attention of many researchers to produce efficient
algorithms is the analysis of high frequency patterns.
The importance of an association can be known by
two benchmarks, namely: support and confidence.
Support (supporting value) is the percentage of the
combination of items in the database, whereas
confidence (the value of certainty) is the strength of
the relationship between items in the rules of
association (KusriniEmha, 2010)
1. Analysis of High Frequency Patterns with
Apriori Algorithms
This stage looks for item combinations that
meet the minimum requirements of the support
value in the database. The support value of an
item is obtained by using the following formula:
𝑠𝑢𝑝𝑝𝑜𝑟𝑡(𝐴) =
𝐽𝑢𝑚𝑙𝑎ℎ 𝑡𝑟𝑎𝑛𝑠𝑎𝑘𝑠𝑖 𝑚𝑒𝑛𝑔𝑎𝑛𝑑𝑢𝑛𝑔 𝐴
𝑇𝑜𝑡𝑎𝑙 𝑡𝑟𝑎𝑛𝑠𝑎𝑘𝑠𝑖
Meanwhile, the support value of 2 items is
obtained using the formula:
𝑠𝑢𝑝𝑝𝑜𝑟𝑡(𝐴, 𝐵) = 𝑃(𝐴 ∩ 𝐵)
𝑠𝑢𝑝𝑝𝑜𝑟𝑡 =
∑𝑡𝑟𝑎𝑛𝑠𝑎𝑘𝑠𝑖 𝑚𝑒𝑛𝑔𝑎𝑛𝑑𝑢𝑛𝑔 𝐴 𝑑𝑎𝑛 𝐵
∑𝑡𝑟𝑎𝑛𝑠𝑎𝑘𝑠𝑖
The frequent itemset shows itemset which
have a frequency of occurrence of more than the
specified minimum value (ø ). For instance ø= 2,
then all itemsets whose frequency of occurrence
is more than or equal to 2 times are called frequent.
The set of frequent k-itemset is denoted by Fk.
2. Formation of Association Rules
After all the high frequency patterns are found,
then association rules are sought that meet the
minimum requirements for confidence by
calculating the associative confidence rule A B.
The confidence values of the A B rule are
obtained by the following formula:
𝑐𝑜𝑛𝑓𝑖𝑑𝑒𝑛𝑐𝑒 =
∑𝑡𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛 𝑐𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 𝑎𝑛𝑑 𝐵
∑𝑡𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛 𝑐𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴
To determine the association rules to be chosen,
they must be sorted according to the Support ×
Confidence. Rules are taken as many as n rules
that have the greatest results.
The apriori algorithm is divided into several
stages called narration or pass
1. Forming itemset candidates. The k-itemset
candidate is formed from the combination (k-1)
itemset obtained from the previous iteration. One way
of apriori algorithm is to trim the k-itemset candidate
Riset dan E-Jurnal Manajemen Informatika Komputer
Volume 3, Number 2, April 2019
e-ISSN : 2541-1330
p-ISSN : 2541-1332
43
whose subset contains k-1 items not included in the
high-frequency pattern with length k-1.
2. Calculation of support for each k-itemset
candidate. Support from each k-itemset candidate is
obtained by scanning the database to calculate the
number of transactions that contain all items in the k-
itemset candidate. This is also a feature of apriori
algorithm where it is necessary to calculate the entire
database as many as the longest k-itemset.
3. Set a high frequency pattern.
The high frequency pattern that contains k items
or k-itemset is determined from the k-itemset
candidate whose support is greater than the minimum
support.
4. If no new high frequency pattern is obtained
then the whole process is stopped.
The FP-Growth algorithm is a development of the
Apriori algorithm. Frequent Pattern Growth (FP-
Growth) algorithm is an alternative algorithm that can
be used to determine the frequent itemset in a data set
[4].
The FP-Growth algorithm uses the concept of tree
development, commonly called FP-Tree, in frequent
itemset search instead of generate candidate as done
in the Apriori algorithm. By using this concept, the
FP-Growth algorithm is faster than the Apriori
algorithm.
The FP-Growth algorithm has stages that must be
passed in order to provide maximum results, these
stages are:
1. The stage of generating conditional pattern base.
2. The stage of generating conditional FP-Tree.
3. The Stage of frequent itemset search.
Association rules is a process in data mining to
determine all associative rules that meet the minimum
requirements for support (minsup) and confidence
(minconf) in a database. Both of these conditions will
be used for applying interesting association rules
compared to the prescribed limits, namely minsup
and minconf. In determining the minimum support
value of an item, it can be obtained by using the
formula (1) as below:
𝑆𝑢𝑝𝑝𝑜𝑟𝑡 (𝐴) =
𝐴𝑚𝑜𝑢𝑛𝑡 𝑜𝑓 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝐶𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴
𝑇𝑜𝑡𝑎𝑙 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠
𝑆𝑢𝑝𝑝𝑜𝑟𝑡 (𝐴 ∩ 𝐵)
=
𝐴𝑚𝑜𝑢𝑛𝑡 𝑜𝑓 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝐶𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 𝑎𝑛𝑑 𝐵
𝑇𝑜𝑡𝑎𝑙 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠
Whereas in determining minimum confidence can
be determined by the formula equation (2) as below:
𝐶𝑜𝑛𝑓𝑖𝑑𝑒𝑛𝑐𝑒 (𝐴 → 𝐵) = 𝑃(𝐴|𝐵) =
𝐴𝑚𝑜𝑢𝑛𝑡 𝑜𝑓 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝐶𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 𝑎𝑛𝑑 𝐵
𝐴𝑚𝑜𝑢𝑛𝑡 𝑜𝑓 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝐶𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴
III. PROPOSED METHOD
In composing this study, transaction data, in
which sales data, is taken from the sale of PT. Panca
Putra Solusindo Jakarta in January 2016 to December
2016, namely the association of data mining using the
Apriori Algorithm and FP-Growth methods. The
authors took a sample of 116 data from the total
population of data on sales transaction data of PT
Panca Putra Solusindo Jakarta, which amounted to
130 data. The sample to be taken is up to 116 top data
contained in the primary data and contains 14 items.
Before analyzing the Association of data mining
(Moh SholikAbu, 2018), we need the Apriori
algorithm flowchart as follows :
Figure of Flowchart of Apriori Algorithms
Then the steps in determining data mining
associations using the FP-Growth algorithm are as
follows :
Figure of Block Image of FP-Growth Algorithm
Diagram
Furthermore, the author will prepare data with
tabulations in the form of excel with the terms "Y"
and "N" to describe that buying and noting an item of
Riset dan E-Jurnal Manajemen Informatika Komputer
Volume 3, Number 2, April 2019
e-ISSN : 2541-1330
p-ISSN : 2541-1332
44
goods (SensuseGoldie, 2012), then the data is
changed in the form of "CSV". The following
tabulation data is as follows.
Table of Tabulation of Transaction data
The next step is to transform the coding into the
Weka data mining application (HagugianPaska, 2017)
by taking part in the Association with the Apriori and
FP-Growth methods.
IV. RESULT AND DISCUSSION
The important phase of data mining analysis
Apriori algorithm is determining the highest
frequency pattern by calculating the support value of
one set item, so that the table is formed as follows:
Tabel of Support Per Item
Item Support Support (%)
PC HP 53 46%
Notebook HP 35 30.2%
PC Lenovo 32 27.6%
Notebook Lenovo 29 25%
Memory 27 23.3%
Other Electronic 21 18.10%
USB Flashdisk 17 15%
PC Dell 16 14%
Printer HP 16 14%
Monitor 7 6.03%
Keyboard 6 5.2%
LCD/CRT Lenovo 5 4.31%
Notebook Dell 3 2.6%
Scanner HP 1 0.9%
From the table above, minimum support can be
determined at 9%, then itemset will be determined
which can meet the minimum support as follows:
Table of Itemset that meets the minimum support
Item Support Support (%)
PC HP 53 46%
Notebook HP 35 30.2%
PC Lenovo 32 27.6%
Notebook Lenovo 29 25%
Memory 27 23.3%
Other Electronic 21 18.10%
USB Flashdisk 17 15%
PC Dell 16 14%
Printer HP 16 14%
Next phase, two item frequency pattern formation
is formed from items of the type of goods that meet
the minimum support by combining all items into two
combinations, the result of the combination of two
items results in a minimum support of 9%. Then the
items that meet the requirements are as follows:
Table of two itemset that fulfill minimum
support
Item Support
Support
(%)
PC HP x Notebook HP 13 11.20%
Notebook HP x Notebook Lenovo 12 10.34%
Notebook HP x Memory 11 9.5%
PC HP x PC Lenovo 10 9%
PC HP x Other Electronic 10 9%
PC HP x PC Dell 10 9%
After the minimum support value is formed, the
author determines how to determine the value of
confidence. In this case, it will be tested using the
Weka application.
The writers use Weka application then select explore
to see the "CSV" type data then by using the Apriori
algorithm the Association rules will be formed as
many as ten best rules with the determination of
confidence of 0.4 so that the image looks as follows:
Riset dan E-Jurnal Manajemen Informatika Komputer
Volume 3, Number 2, April 2019
e-ISSN : 2541-1330
p-ISSN : 2541-1332
45
Figure of Minimum Confidence in Apriori using
Weka Application
From the results above, we will get some rules in
the apriori method as follows:
Figure of Best Rule Apriori with Weka Application
And items that have frequent frequent items are
PC HP for 53 times the same sales as the following
picture:
Figure of Frequent item Apriori with Weka
Application
After being proven by testing the Weka
application, the next phase is data processing
based on the FP-Growth Algorithm, in this case
the data is changed back in one format, namely the
condition "true" or "t" as shown below:
Table of FP-Growth Tabulation
After tabulation as shown above, the data is
prepared in the format "CSV", then open the Weka
application to calculate the value of confidence and
the rule produced.
In processing data here, it is necessary to convert
Weka application data into NominaltoBinary and
NumeriktoBinary in the Unsupervised Attribute filter
format as shown below:
Riset dan E-Jurnal Manajemen Informatika Komputer
Volume 3, Number 2, April 2019
e-ISSN : 2541-1330
p-ISSN : 2541-1332
46
Figure of Filter Type FP-Growth data
Then after the data type filter is appropriate, rules
will be obtained by determining the minimum
confidence 0.4, which is as follows:
Figure of of FP-Growth results in Weka
Application
Overall, both the Apriori Association algorithm
and the expansion of FP-Growth produce several
rules that often occur in a transaction (frequent items).
This helps management to expand marketing
strategies in increasing sales according to the
combination of items in the association method that
has been described and tested by the Weka
application.
V. CONCLUSION AND SUGGESTION
1. In the Apriori Algorithm, the confidence
value of an item is 92% and we can clearly
know what products are sold high in a period,
while the FP-Growth algorithm produces
several rules that have the most value,
namely frequent itemset, so they can be
rooted in making the next FP-Tree.
2. The best rules are produced from the Apriori
and FP-Growth algorithms which provide
several choices with a predetermined
minimum confidence value of 0.4 so that it
can provide data to marketing to find out in
the future in the sales strategy planning to
improve a better performance.
3. The author is aware of many shortcomings
in data processing and data retrieval, the
authors hope that in the future there will be
other writers developing different
algorithmic methods and producing accurate
analysis for the needs of the company.
VI. ACKNOWLEDGMENT
We gratefully thank to the principal of PT Panca
Putra Solusindo for allowing our to conduct the
research there. We thank our colleagues from STMIK
Nusa Mandiri and Universitas Bina Sarana
Informatika who provided insight and expertise that
greatly assisted the research.
VII. REFERENCES
Hagugian, P. M. (2017). Pengujian Algoritma
Apriori dengan Aplikasi Weka dalam
Pembentukan Asosiation Rule. Jurnal
Mantik Penusa, 98-103.
Kennedi Tampubolon, H. S. (2013). Implementasi
Data Mining Algoritma Apriori pada
Sistem Persediaan Alat-alat Kesehatan.
Majalah Ilmiah INTI, 93-106.
Khoiriah, R. Y. (2015). Implementasi Data Mining
dengan Metode Algoritma Apriori dalam
Menentukan Pola Pembelian Obat. Citec
Journal, 102-113.
Kusrini, E. T. (2010). Algoritma Data Mining. In E.
T. Luthfi, Algoritma Data Mining.
Yogyakarta: Andi.
Moh Sholik, A. S. (2018). Implementasi Algoritma
Apriori untuk mencari Asosiasi Barang
yang dijual di E-Commerce Ordermas.
Techno Com, 158-170.
Nugroho Wandi, R. A. (2012). Pengembangan
Sistem Rekomendasi Penelusuran Buku
dengan Penggalian Association Rule
menggunakan Algoritma Apriori (Studi
Kasus Badan Perpustakaan dan Kearsipan
Provinsi Jawa Timur). Jurnal Teknik ITS,
445-449.
Riset dan E-Jurnal Manajemen Informatika Komputer
Volume 3, Number 2, April 2019
e-ISSN : 2541-1330
p-ISSN : 2541-1332
47
Purnamasari, D. (2013). Get Easy Using Weka. In
D. Purnamasari, Get Easy Using Weka.
Jakarta: Dapur Buku.
Samuel, D. (2008). Penerapan Struktur FP-Tree dan
Algoritma FP-Growth dalam Optimasi
Penentuan Frequent Itemset. In D. Samuel,
Penerapan Struktur FP-Tree dan Algoritma
FP-Growth dalam Optimasi Penentuan
Frequent Itemset. Bandung: Institut
Teknologi Bandung.
Sensuse, G. G. (2012). Penerapan Metode Data
Mining Market Basket Analysis terhadap
data Penjualan Produk Buku dengan
menggunakan Algoritma Apriori dan
Frequent Pattern Growth(FP-Growth) Studi
Kasus Percetakan PT Gramedia. Telematika
MKOM, 118-132.
Suryadi, S. S. (2010). Menggali Pengetahuan dan
Bongkahan Data. In S. S. Suryadi,
Menggali Pengetahuan dan Bongkahan
Data. Yogyakarta: Andi Publisher.
Triyanto, W. A. (2014). Association Rule Mining
untuk Penentuan Rekomendasi Promosi
Produk. Simetris, 121-126.
Wiyana, S. K. (2018). Analisis Algoritma FP
Growth untuk Rekomendasi Produk pada
Data Retail Penjualan Produk Kosmetik
(Studi Kasus: MT Shop Kelapa Gading).
Seminar Nasional Teknologi Informasi, 61-
69.

More Related Content

What's hot

Recommendation based on Clustering and Association Rules
Recommendation based on Clustering and Association RulesRecommendation based on Clustering and Association Rules
Recommendation based on Clustering and Association Rules
IJARIIE JOURNAL
 
Data Science - Part XI - Text Analytics
Data Science - Part XI - Text AnalyticsData Science - Part XI - Text Analytics
Data Science - Part XI - Text Analytics
Derek Kane
 
Text Analytics for Dummies 2010
Text Analytics for Dummies 2010Text Analytics for Dummies 2010
Text Analytics for Dummies 2010
Seth Grimes
 
Opinion mining on newspaper headlines using SVM and NLP
Opinion mining on newspaper headlines using SVM and NLPOpinion mining on newspaper headlines using SVM and NLP
Opinion mining on newspaper headlines using SVM and NLP
IJECEIAES
 
IRJET- A Review on: Sentiment Polarity Analysis on Twitter Data from Diff...
IRJET-  	  A Review on: Sentiment Polarity Analysis on Twitter Data from Diff...IRJET-  	  A Review on: Sentiment Polarity Analysis on Twitter Data from Diff...
IRJET- A Review on: Sentiment Polarity Analysis on Twitter Data from Diff...
IRJET Journal
 
Volume 2-issue-6-2081-2084
Volume 2-issue-6-2081-2084Volume 2-issue-6-2081-2084
Volume 2-issue-6-2081-2084
Editor IJARCET
 
An Introduction to Text Analytics: 2013 Workshop presentation
An Introduction to Text Analytics: 2013 Workshop presentationAn Introduction to Text Analytics: 2013 Workshop presentation
An Introduction to Text Analytics: 2013 Workshop presentation
Seth Grimes
 
Automation Tool Development to Improve Machine Results using Data Analysis
Automation Tool Development to Improve Machine Results using Data AnalysisAutomation Tool Development to Improve Machine Results using Data Analysis
Automation Tool Development to Improve Machine Results using Data Analysis
IRJET 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 Network
rahulmonikasharma
 
Complaint Analysis in Indonesian Language Using WPKE and RAKE Algorithm
Complaint Analysis in Indonesian Language Using WPKE and RAKE Algorithm Complaint Analysis in Indonesian Language Using WPKE and RAKE Algorithm
Complaint Analysis in Indonesian Language Using WPKE and RAKE Algorithm
IJECEIAES
 
Gr2411971203
Gr2411971203Gr2411971203
Gr2411971203
IJERA Editor
 
Report
ReportReport
IRJET- Fake News Detection using Logistic Regression
IRJET- Fake News Detection using Logistic RegressionIRJET- Fake News Detection using Logistic Regression
IRJET- Fake News Detection using Logistic Regression
IRJET Journal
 
Twitter’s Sentiment Analysis on Gsm Services using Multinomial Naïve Bayes
Twitter’s Sentiment Analysis on Gsm Services using Multinomial Naïve BayesTwitter’s Sentiment Analysis on Gsm Services using Multinomial Naïve Bayes
Twitter’s Sentiment Analysis on Gsm Services using Multinomial Naïve Bayes
TELKOMNIKA JOURNAL
 
Popular Text Analytics Algorithms
Popular Text Analytics AlgorithmsPopular Text Analytics Algorithms
Popular Text Analytics Algorithms
PromptCloud
 
An Optimal Approach to derive Disjunctive Positive and Negative Rules from As...
An Optimal Approach to derive Disjunctive Positive and Negative Rules from As...An Optimal Approach to derive Disjunctive Positive and Negative Rules from As...
An Optimal Approach to derive Disjunctive Positive and Negative Rules from As...
IOSR Journals
 
Final Report
Final ReportFinal Report
Final Report
imu409
 
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
IOSR Journals
 

What's hot (18)

Recommendation based on Clustering and Association Rules
Recommendation based on Clustering and Association RulesRecommendation based on Clustering and Association Rules
Recommendation based on Clustering and Association Rules
 
Data Science - Part XI - Text Analytics
Data Science - Part XI - Text AnalyticsData Science - Part XI - Text Analytics
Data Science - Part XI - Text Analytics
 
Text Analytics for Dummies 2010
Text Analytics for Dummies 2010Text Analytics for Dummies 2010
Text Analytics for Dummies 2010
 
Opinion mining on newspaper headlines using SVM and NLP
Opinion mining on newspaper headlines using SVM and NLPOpinion mining on newspaper headlines using SVM and NLP
Opinion mining on newspaper headlines using SVM and NLP
 
IRJET- A Review on: Sentiment Polarity Analysis on Twitter Data from Diff...
IRJET-  	  A Review on: Sentiment Polarity Analysis on Twitter Data from Diff...IRJET-  	  A Review on: Sentiment Polarity Analysis on Twitter Data from Diff...
IRJET- A Review on: Sentiment Polarity Analysis on Twitter Data from Diff...
 
Volume 2-issue-6-2081-2084
Volume 2-issue-6-2081-2084Volume 2-issue-6-2081-2084
Volume 2-issue-6-2081-2084
 
An Introduction to Text Analytics: 2013 Workshop presentation
An Introduction to Text Analytics: 2013 Workshop presentationAn Introduction to Text Analytics: 2013 Workshop presentation
An Introduction to Text Analytics: 2013 Workshop presentation
 
Automation Tool Development to Improve Machine Results using Data Analysis
Automation Tool Development to Improve Machine Results using Data AnalysisAutomation Tool Development to Improve Machine Results using Data Analysis
Automation Tool Development to Improve Machine Results using Data Analysis
 
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
 
Complaint Analysis in Indonesian Language Using WPKE and RAKE Algorithm
Complaint Analysis in Indonesian Language Using WPKE and RAKE Algorithm Complaint Analysis in Indonesian Language Using WPKE and RAKE Algorithm
Complaint Analysis in Indonesian Language Using WPKE and RAKE Algorithm
 
Gr2411971203
Gr2411971203Gr2411971203
Gr2411971203
 
Report
ReportReport
Report
 
IRJET- Fake News Detection using Logistic Regression
IRJET- Fake News Detection using Logistic RegressionIRJET- Fake News Detection using Logistic Regression
IRJET- Fake News Detection using Logistic Regression
 
Twitter’s Sentiment Analysis on Gsm Services using Multinomial Naïve Bayes
Twitter’s Sentiment Analysis on Gsm Services using Multinomial Naïve BayesTwitter’s Sentiment Analysis on Gsm Services using Multinomial Naïve Bayes
Twitter’s Sentiment Analysis on Gsm Services using Multinomial Naïve Bayes
 
Popular Text Analytics Algorithms
Popular Text Analytics AlgorithmsPopular Text Analytics Algorithms
Popular Text Analytics Algorithms
 
An Optimal Approach to derive Disjunctive Positive and Negative Rules from As...
An Optimal Approach to derive Disjunctive Positive and Negative Rules from As...An Optimal Approach to derive Disjunctive Positive and Negative Rules from As...
An Optimal Approach to derive Disjunctive Positive and Negative Rules from As...
 
Final Report
Final ReportFinal Report
Final Report
 
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
 

Similar to Jurnal REMIK 2019

Study on Positive and Negative Rule Based Mining Techniques for E-Commerce Ap...
Study on Positive and Negative Rule Based Mining Techniques for E-Commerce Ap...Study on Positive and Negative Rule Based Mining Techniques for E-Commerce Ap...
Study on Positive and Negative Rule Based Mining Techniques for E-Commerce Ap...
Association of Scientists, Developers and Faculties
 
IRJET- Improving the Performance of Smart Heterogeneous Big Data
IRJET- Improving the Performance of Smart Heterogeneous Big DataIRJET- Improving the Performance of Smart Heterogeneous Big Data
IRJET- Improving the Performance of Smart Heterogeneous Big Data
IRJET Journal
 
27 71-1-pb, fp ap rp
27 71-1-pb, fp ap rp27 71-1-pb, fp ap rp
27 71-1-pb, fp ap rp
ssuser82ed8e
 
Association Rules Analysis using FP Growth Algorithm to Make Product Recommen...
Association Rules Analysis using FP Growth Algorithm to Make Product Recommen...Association Rules Analysis using FP Growth Algorithm to Make Product Recommen...
Association Rules Analysis using FP Growth Algorithm to Make Product Recommen...
ijtsrd
 
Paper id 212014126
Paper id 212014126Paper id 212014126
Paper id 212014126
IJRAT
 
H044063843
H044063843H044063843
H044063843
IJERA Editor
 
Data Mining based on Hashing Technique
Data Mining based on Hashing TechniqueData Mining based on Hashing Technique
Data Mining based on Hashing Technique
ijtsrd
 
Irjet v4 iA Survey on FP (Growth) Tree using Association Rule Mining7351
Irjet v4 iA Survey on FP (Growth) Tree using Association Rule Mining7351Irjet v4 iA Survey on FP (Growth) Tree using Association Rule Mining7351
Irjet v4 iA Survey on FP (Growth) Tree using Association Rule Mining7351
IRJET Journal
 
Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...
Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...
Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...
ijsrd.com
 
IRJET- Online Sequential Behaviour Analysis using Apriori Algorithm
IRJET- Online Sequential Behaviour Analysis using Apriori AlgorithmIRJET- Online Sequential Behaviour Analysis using Apriori Algorithm
IRJET- Online Sequential Behaviour Analysis using Apriori Algorithm
IRJET Journal
 
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and ClusteringKIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
Dr. Radhey Shyam
 
Effieient Algorithms to Find Frequent Itemset using Data Mining
Effieient Algorithms to Find Frequent Itemset using Data MiningEffieient Algorithms to Find Frequent Itemset using Data Mining
Effieient Algorithms to Find Frequent Itemset using Data Mining
IRJET Journal
 
Comparison Between High Utility Frequent Item sets Mining Techniques
Comparison Between High Utility Frequent Item sets Mining TechniquesComparison Between High Utility Frequent Item sets Mining Techniques
Comparison Between High Utility Frequent Item sets Mining Techniques
ijsrd.com
 
WEB-BASED DATA MINING TOOLS : PERFORMING FEEDBACK ANALYSIS AND ASSOCIATION RU...
WEB-BASED DATA MINING TOOLS : PERFORMING FEEDBACK ANALYSIS AND ASSOCIATION RU...WEB-BASED DATA MINING TOOLS : PERFORMING FEEDBACK ANALYSIS AND ASSOCIATION RU...
WEB-BASED DATA MINING TOOLS : PERFORMING FEEDBACK ANALYSIS AND ASSOCIATION RU...
IJDKP
 
Data Mining Module 4 Business Analytics.pdf
Data Mining Module 4 Business Analytics.pdfData Mining Module 4 Business Analytics.pdf
Data Mining Module 4 Business Analytics.pdf
Jayanti Pande
 
Machine learning based recommender system for e-commerce
Machine learning based recommender system for e-commerceMachine learning based recommender system for e-commerce
Machine learning based recommender system for e-commerce
IAESIJAI
 
V34132136
V34132136V34132136
V34132136
IJERA Editor
 
Sales analysis using product rating in data mining techniques
Sales analysis using product rating in data mining techniquesSales analysis using product rating in data mining techniques
Sales analysis using product rating in data mining techniques
eSAT Journals
 
Review on: Techniques for Predicting Frequent Items
Review on: Techniques for Predicting Frequent ItemsReview on: Techniques for Predicting Frequent Items
Review on: Techniques for Predicting Frequent Items
vivatechijri
 
G017633943
G017633943G017633943
G017633943
IOSR Journals
 

Similar to Jurnal REMIK 2019 (20)

Study on Positive and Negative Rule Based Mining Techniques for E-Commerce Ap...
Study on Positive and Negative Rule Based Mining Techniques for E-Commerce Ap...Study on Positive and Negative Rule Based Mining Techniques for E-Commerce Ap...
Study on Positive and Negative Rule Based Mining Techniques for E-Commerce Ap...
 
IRJET- Improving the Performance of Smart Heterogeneous Big Data
IRJET- Improving the Performance of Smart Heterogeneous Big DataIRJET- Improving the Performance of Smart Heterogeneous Big Data
IRJET- Improving the Performance of Smart Heterogeneous Big Data
 
27 71-1-pb, fp ap rp
27 71-1-pb, fp ap rp27 71-1-pb, fp ap rp
27 71-1-pb, fp ap rp
 
Association Rules Analysis using FP Growth Algorithm to Make Product Recommen...
Association Rules Analysis using FP Growth Algorithm to Make Product Recommen...Association Rules Analysis using FP Growth Algorithm to Make Product Recommen...
Association Rules Analysis using FP Growth Algorithm to Make Product Recommen...
 
Paper id 212014126
Paper id 212014126Paper id 212014126
Paper id 212014126
 
H044063843
H044063843H044063843
H044063843
 
Data Mining based on Hashing Technique
Data Mining based on Hashing TechniqueData Mining based on Hashing Technique
Data Mining based on Hashing Technique
 
Irjet v4 iA Survey on FP (Growth) Tree using Association Rule Mining7351
Irjet v4 iA Survey on FP (Growth) Tree using Association Rule Mining7351Irjet v4 iA Survey on FP (Growth) Tree using Association Rule Mining7351
Irjet v4 iA Survey on FP (Growth) Tree using Association Rule Mining7351
 
Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...
Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...
Multiple Minimum Support Implementations with Dynamic Matrix Apriori Algorith...
 
IRJET- Online Sequential Behaviour Analysis using Apriori Algorithm
IRJET- Online Sequential Behaviour Analysis using Apriori AlgorithmIRJET- Online Sequential Behaviour Analysis using Apriori Algorithm
IRJET- Online Sequential Behaviour Analysis using Apriori Algorithm
 
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and ClusteringKIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
KIT-601 Lecture Notes-UNIT-4.pdf Frequent Itemsets and Clustering
 
Effieient Algorithms to Find Frequent Itemset using Data Mining
Effieient Algorithms to Find Frequent Itemset using Data MiningEffieient Algorithms to Find Frequent Itemset using Data Mining
Effieient Algorithms to Find Frequent Itemset using Data Mining
 
Comparison Between High Utility Frequent Item sets Mining Techniques
Comparison Between High Utility Frequent Item sets Mining TechniquesComparison Between High Utility Frequent Item sets Mining Techniques
Comparison Between High Utility Frequent Item sets Mining Techniques
 
WEB-BASED DATA MINING TOOLS : PERFORMING FEEDBACK ANALYSIS AND ASSOCIATION RU...
WEB-BASED DATA MINING TOOLS : PERFORMING FEEDBACK ANALYSIS AND ASSOCIATION RU...WEB-BASED DATA MINING TOOLS : PERFORMING FEEDBACK ANALYSIS AND ASSOCIATION RU...
WEB-BASED DATA MINING TOOLS : PERFORMING FEEDBACK ANALYSIS AND ASSOCIATION RU...
 
Data Mining Module 4 Business Analytics.pdf
Data Mining Module 4 Business Analytics.pdfData Mining Module 4 Business Analytics.pdf
Data Mining Module 4 Business Analytics.pdf
 
Machine learning based recommender system for e-commerce
Machine learning based recommender system for e-commerceMachine learning based recommender system for e-commerce
Machine learning based recommender system for e-commerce
 
V34132136
V34132136V34132136
V34132136
 
Sales analysis using product rating in data mining techniques
Sales analysis using product rating in data mining techniquesSales analysis using product rating in data mining techniques
Sales analysis using product rating in data mining techniques
 
Review on: Techniques for Predicting Frequent Items
Review on: Techniques for Predicting Frequent ItemsReview on: Techniques for Predicting Frequent Items
Review on: Techniques for Predicting Frequent Items
 
G017633943
G017633943G017633943
G017633943
 

More from Sita Anggraeni

SURAT TUGAS PM NOVEMBER 2018
SURAT TUGAS PM NOVEMBER 2018SURAT TUGAS PM NOVEMBER 2018
SURAT TUGAS PM NOVEMBER 2018
Sita Anggraeni
 
BUKTI SURAT KETERANGAN NOVEMBER 2018
BUKTI SURAT KETERANGAN  NOVEMBER 2018BUKTI SURAT KETERANGAN  NOVEMBER 2018
BUKTI SURAT KETERANGAN NOVEMBER 2018
Sita Anggraeni
 
BUKTI SURAT KETERANGAN DAN ST JUNI 2018
BUKTI SURAT KETERANGAN  DAN ST JUNI 2018BUKTI SURAT KETERANGAN  DAN ST JUNI 2018
BUKTI SURAT KETERANGAN DAN ST JUNI 2018
Sita Anggraeni
 
BUKTI SURAT KETERANGAN JANUARI 2018
BUKTI SURAT KETERANGAN  JANUARI 2018BUKTI SURAT KETERANGAN  JANUARI 2018
BUKTI SURAT KETERANGAN JANUARI 2018
Sita Anggraeni
 
BUKTI SURAT KETERANGAN JULY 2017
BUKTI SURAT KETERANGAN JULY 2017BUKTI SURAT KETERANGAN JULY 2017
BUKTI SURAT KETERANGAN JULY 2017
Sita Anggraeni
 
BUKTI SURAT KETERANGAN JANUARI 2017
BUKTI SURAT KETERANGAN  JANUARI 2017BUKTI SURAT KETERANGAN  JANUARI 2017
BUKTI SURAT KETERANGAN JANUARI 2017
Sita Anggraeni
 
BUKTI SURAT KETERANGAN JULI 2016
BUKTI SURAT KETERANGAN  JULI 2016BUKTI SURAT KETERANGAN  JULI 2016
BUKTI SURAT KETERANGAN JULI 2016
Sita Anggraeni
 
BUKTI SURAT KETERANGAN JANUARI 2016
BUKTI SURAT KETERANGAN  JANUARI 2016BUKTI SURAT KETERANGAN  JANUARI 2016
BUKTI SURAT KETERANGAN JANUARI 2016
Sita Anggraeni
 
BUKTI SURAT KETERANGAN DAN ST JULI 2015
BUKTI SURAT KETERANGAN DAN ST JULI 2015BUKTI SURAT KETERANGAN DAN ST JULI 2015
BUKTI SURAT KETERANGAN DAN ST JULI 2015
Sita Anggraeni
 
BUKTI SURAT KETERANGAN DAN ST JANUARI 2015
BUKTI SURAT KETERANGAN DAN ST JANUARI 2015BUKTI SURAT KETERANGAN DAN ST JANUARI 2015
BUKTI SURAT KETERANGAN DAN ST JANUARI 2015
Sita Anggraeni
 
BUKTI SURAT KETERANGAN DAN ST JULI 2014
BUKTI SURAT KETERANGAN DAN ST JULI 2014BUKTI SURAT KETERANGAN DAN ST JULI 2014
BUKTI SURAT KETERANGAN DAN ST JULI 2014
Sita Anggraeni
 
BUKTI SURAT KETERANGAN DAN ST JANUARI 2014
BUKTI SURAT KETERANGAN DAN ST JANUARI 2014BUKTI SURAT KETERANGAN DAN ST JANUARI 2014
BUKTI SURAT KETERANGAN DAN ST JANUARI 2014
Sita Anggraeni
 
BUKTI SURAT KETERANGAN DAN ST JULI 2013
BUKTI SURAT KETERANGAN DAN ST JULI 2013BUKTI SURAT KETERANGAN DAN ST JULI 2013
BUKTI SURAT KETERANGAN DAN ST JULI 2013
Sita Anggraeni
 
BUKTI SURAT KETERANGAN DAN ST FEBRUARI 2013
BUKTI SURAT KETERANGAN DAN ST FEBRUARI 2013BUKTI SURAT KETERANGAN DAN ST FEBRUARI 2013
BUKTI SURAT KETERANGAN DAN ST FEBRUARI 2013
Sita Anggraeni
 
BUKTI SURAT KETERANGAN 2012
BUKTI SURAT KETERANGAN 2012BUKTI SURAT KETERANGAN 2012
BUKTI SURAT KETERANGAN 2012
Sita Anggraeni
 
BUKTI SURAT KETERANGAN 2011
BUKTI SURAT KETERANGAN 2011BUKTI SURAT KETERANGAN 2011
BUKTI SURAT KETERANGAN 2011
Sita Anggraeni
 
Sertifikasi Komputer
Sertifikasi KomputerSertifikasi Komputer
Sertifikasi Komputer
Sita Anggraeni
 
Profile Simlibtabnas
Profile SimlibtabnasProfile Simlibtabnas
Profile Simlibtabnas
Sita Anggraeni
 
Prosiding ICIC 2018
Prosiding ICIC 2018Prosiding ICIC 2018
Prosiding ICIC 2018
Sita Anggraeni
 
Jurnal JAIC 2018
Jurnal JAIC 2018Jurnal JAIC 2018
Jurnal JAIC 2018
Sita Anggraeni
 

More from Sita Anggraeni (20)

SURAT TUGAS PM NOVEMBER 2018
SURAT TUGAS PM NOVEMBER 2018SURAT TUGAS PM NOVEMBER 2018
SURAT TUGAS PM NOVEMBER 2018
 
BUKTI SURAT KETERANGAN NOVEMBER 2018
BUKTI SURAT KETERANGAN  NOVEMBER 2018BUKTI SURAT KETERANGAN  NOVEMBER 2018
BUKTI SURAT KETERANGAN NOVEMBER 2018
 
BUKTI SURAT KETERANGAN DAN ST JUNI 2018
BUKTI SURAT KETERANGAN  DAN ST JUNI 2018BUKTI SURAT KETERANGAN  DAN ST JUNI 2018
BUKTI SURAT KETERANGAN DAN ST JUNI 2018
 
BUKTI SURAT KETERANGAN JANUARI 2018
BUKTI SURAT KETERANGAN  JANUARI 2018BUKTI SURAT KETERANGAN  JANUARI 2018
BUKTI SURAT KETERANGAN JANUARI 2018
 
BUKTI SURAT KETERANGAN JULY 2017
BUKTI SURAT KETERANGAN JULY 2017BUKTI SURAT KETERANGAN JULY 2017
BUKTI SURAT KETERANGAN JULY 2017
 
BUKTI SURAT KETERANGAN JANUARI 2017
BUKTI SURAT KETERANGAN  JANUARI 2017BUKTI SURAT KETERANGAN  JANUARI 2017
BUKTI SURAT KETERANGAN JANUARI 2017
 
BUKTI SURAT KETERANGAN JULI 2016
BUKTI SURAT KETERANGAN  JULI 2016BUKTI SURAT KETERANGAN  JULI 2016
BUKTI SURAT KETERANGAN JULI 2016
 
BUKTI SURAT KETERANGAN JANUARI 2016
BUKTI SURAT KETERANGAN  JANUARI 2016BUKTI SURAT KETERANGAN  JANUARI 2016
BUKTI SURAT KETERANGAN JANUARI 2016
 
BUKTI SURAT KETERANGAN DAN ST JULI 2015
BUKTI SURAT KETERANGAN DAN ST JULI 2015BUKTI SURAT KETERANGAN DAN ST JULI 2015
BUKTI SURAT KETERANGAN DAN ST JULI 2015
 
BUKTI SURAT KETERANGAN DAN ST JANUARI 2015
BUKTI SURAT KETERANGAN DAN ST JANUARI 2015BUKTI SURAT KETERANGAN DAN ST JANUARI 2015
BUKTI SURAT KETERANGAN DAN ST JANUARI 2015
 
BUKTI SURAT KETERANGAN DAN ST JULI 2014
BUKTI SURAT KETERANGAN DAN ST JULI 2014BUKTI SURAT KETERANGAN DAN ST JULI 2014
BUKTI SURAT KETERANGAN DAN ST JULI 2014
 
BUKTI SURAT KETERANGAN DAN ST JANUARI 2014
BUKTI SURAT KETERANGAN DAN ST JANUARI 2014BUKTI SURAT KETERANGAN DAN ST JANUARI 2014
BUKTI SURAT KETERANGAN DAN ST JANUARI 2014
 
BUKTI SURAT KETERANGAN DAN ST JULI 2013
BUKTI SURAT KETERANGAN DAN ST JULI 2013BUKTI SURAT KETERANGAN DAN ST JULI 2013
BUKTI SURAT KETERANGAN DAN ST JULI 2013
 
BUKTI SURAT KETERANGAN DAN ST FEBRUARI 2013
BUKTI SURAT KETERANGAN DAN ST FEBRUARI 2013BUKTI SURAT KETERANGAN DAN ST FEBRUARI 2013
BUKTI SURAT KETERANGAN DAN ST FEBRUARI 2013
 
BUKTI SURAT KETERANGAN 2012
BUKTI SURAT KETERANGAN 2012BUKTI SURAT KETERANGAN 2012
BUKTI SURAT KETERANGAN 2012
 
BUKTI SURAT KETERANGAN 2011
BUKTI SURAT KETERANGAN 2011BUKTI SURAT KETERANGAN 2011
BUKTI SURAT KETERANGAN 2011
 
Sertifikasi Komputer
Sertifikasi KomputerSertifikasi Komputer
Sertifikasi Komputer
 
Profile Simlibtabnas
Profile SimlibtabnasProfile Simlibtabnas
Profile Simlibtabnas
 
Prosiding ICIC 2018
Prosiding ICIC 2018Prosiding ICIC 2018
Prosiding ICIC 2018
 
Jurnal JAIC 2018
Jurnal JAIC 2018Jurnal JAIC 2018
Jurnal JAIC 2018
 

Recently uploaded

Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdfEnhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
GetInData
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
u86oixdj
 
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
mbawufebxi
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
g4dpvqap0
 
University of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma TranscriptUniversity of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma Transcript
soxrziqu
 
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Aggregage
 
原版制作(swinburne毕业证书)斯威本科技大学毕业证毕业完成信一模一样
原版制作(swinburne毕业证书)斯威本科技大学毕业证毕业完成信一模一样原版制作(swinburne毕业证书)斯威本科技大学毕业证毕业完成信一模一样
原版制作(swinburne毕业证书)斯威本科技大学毕业证毕业完成信一模一样
u86oixdj
 
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
v3tuleee
 
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
apvysm8
 
The Ipsos - AI - Monitor 2024 Report.pdf
The  Ipsos - AI - Monitor 2024 Report.pdfThe  Ipsos - AI - Monitor 2024 Report.pdf
The Ipsos - AI - Monitor 2024 Report.pdf
Social Samosa
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
v7oacc3l
 
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
slg6lamcq
 
Influence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business PlanInfluence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business Plan
jerlynmaetalle
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
ahzuo
 
End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024
Lars Albertsson
 
Everything you wanted to know about LIHTC
Everything you wanted to know about LIHTCEverything you wanted to know about LIHTC
Everything you wanted to know about LIHTC
Roger Valdez
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
bopyb
 
Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......
Sachin Paul
 
The Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series DatabaseThe Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series Database
javier ramirez
 
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
nuttdpt
 

Recently uploaded (20)

Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdfEnhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
Enhanced Enterprise Intelligence with your personal AI Data Copilot.pdf
 
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
原版制作(Deakin毕业证书)迪肯大学毕业证学位证一模一样
 
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
 
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
一比一原版(爱大毕业证书)爱丁堡大学毕业证如何办理
 
University of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma TranscriptUniversity of New South Wales degree offer diploma Transcript
University of New South Wales degree offer diploma Transcript
 
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
Beyond the Basics of A/B Tests: Highly Innovative Experimentation Tactics You...
 
原版制作(swinburne毕业证书)斯威本科技大学毕业证毕业完成信一模一样
原版制作(swinburne毕业证书)斯威本科技大学毕业证毕业完成信一模一样原版制作(swinburne毕业证书)斯威本科技大学毕业证毕业完成信一模一样
原版制作(swinburne毕业证书)斯威本科技大学毕业证毕业完成信一模一样
 
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
 
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
办(uts毕业证书)悉尼科技大学毕业证学历证书原版一模一样
 
The Ipsos - AI - Monitor 2024 Report.pdf
The  Ipsos - AI - Monitor 2024 Report.pdfThe  Ipsos - AI - Monitor 2024 Report.pdf
The Ipsos - AI - Monitor 2024 Report.pdf
 
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
在线办理(英国UCA毕业证书)创意艺术大学毕业证在读证明一模一样
 
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
 
Influence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business PlanInfluence of Marketing Strategy and Market Competition on Business Plan
Influence of Marketing Strategy and Market Competition on Business Plan
 
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
一比一原版(UIUC毕业证)伊利诺伊大学|厄巴纳-香槟分校毕业证如何办理
 
End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024End-to-end pipeline agility - Berlin Buzzwords 2024
End-to-end pipeline agility - Berlin Buzzwords 2024
 
Everything you wanted to know about LIHTC
Everything you wanted to know about LIHTCEverything you wanted to know about LIHTC
Everything you wanted to know about LIHTC
 
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
一比一原版(GWU,GW文凭证书)乔治·华盛顿大学毕业证如何办理
 
Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......Palo Alto Cortex XDR presentation .......
Palo Alto Cortex XDR presentation .......
 
The Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series DatabaseThe Building Blocks of QuestDB, a Time Series Database
The Building Blocks of QuestDB, a Time Series Database
 
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
一比一原版(UCSB文凭证书)圣芭芭拉分校毕业证如何办理
 

Jurnal REMIK 2019

  • 1. Riset dan E-Jurnal Manajemen Informatika Komputer Volume 3, Number 2, April 2019 e-ISSN : 2541-1330 p-ISSN : 2541-1332 41 Analysis of Sales by Using Apriori and FP- Growth at PT. Panca Putra Solusindo 1 Sita Anggraeni, 2 Marlina Ana Iha, 3 Wati Erawati, 4 Sayyid Khairunnas STMIK Nusa Mandiri ,STMIK Nusa Mandiri ,Universitas Bina Sarana Informatika, Universitas Bina Sarana Informatika Jakarta, Indonesia sita.sia@nusamandiri.ac.id,marlina.anaiha@yahoo.co.id,wati.wti@bsi.ac.id, sayyid.skh@bsi.ac.id Abstract— PT. Panca Putra Solusindo is a company which sells Electronic equipment. It has a lot of transactions. Among these data, the company has not been able to provide such platform that can be used as information for management to find out which products are most preferred by consumers. Data mining is present to provide information patterns to companies in answering these needs and helping in marketing to be more effective. In this research, the function of the Apriori algorithm association is used to find out the minimum support and minimum confidence and FP-Growth in knowing the frequent itemset and both of them can find out the best rule that occurs in the transaction. These two algorithms are tested by using Weka application version 3.8. Keywords: Data Mining, Association Rule, Apriori, Frequent pattern growth, FP-Growth, WEKA I. INTRODUCTION (HEADING 1) The increase of business competition requires developers to find a strategy that can enhance sales and marketing of products, one of which is to use sales data. With sales activities every day, the data will grow more and more. The data does not only function as an archive for the company, the data can be utilized and processed into useful information for increasing sales of the product and promotions. Electronic products are items that are very much needed today, because electronic equpments are very helpful for humans in carrying out various activities. This study raised the problems that exist in PT. Panca Putra Solusindo, which is still not providing the most sold and interconnected products. Then the promotion of products that are made in one interconnected package is not maximized. In addition, there are still many products in the inventory, but the sales process is not or has not been maximal. One method that can be used is by applying data mining usage. Because in data mining, there are ways and techniques in meeting broad information needs and that information can be used as material for decision making. The implemenation of data mining is by performing one of the association functions in data mining using apriori algorithms and analyst associations, namely FP-Growth algorithm. The Apriori algorithm which aims to find frequent itemsets is run on a set of data. Apriori analysis defined a process for finding all apriori rules that meet the minimum requirements for support and minimum requirements for confidence. As for FPGrowth itself, it is an alternative algorithm that can be used in terms of determining the set of data that most frequently appears (frequent itemset) in a set of data. According to those backgrounds, the statements of problems as follows: 1. How to apply the apriori and FP-Growth algorithms to find out the sales of the most sold electronic products? 2. Can apriori algorithms and FP-Growth help to develop marketing strategies?
  • 2. Riset dan E-Jurnal Manajemen Informatika Komputer Volume 3, Number 2, April 2019 e-ISSN : 2541-1330 p-ISSN : 2541-1332 42 3. How to implement apriori and FP-Growth algorithms on sales with the Weka application? The purpose of this research is: To determine the extent to which apriori and FP-Growth algorithms can help the development of marketing strategies with the implementation of Weka's data mining application software. The benefit of this research is: Helping companies to find out the most sold electronic products. II. LITERATURE REVIEW Data mining is a term used to describe certain knowledge and discover data in a database. Data mining is a process that uses statistical techniques, mathematics, artificial intelligence, and learning machine to extract and identify useful information and related knowledge from various large databases (KusriniEmha, 2010) Data mining has several main functions which in each function has different usage goals, namely A. Description, to give a brief description of a large number of data sets and types. B. Estimation, to guess an unknown value, for example guessing someone's income when information about that person is known. C. Prediction, to estimate future value, for example predicting the stock of goods in the next year. D. Classification, is a process of finding a model or function that explains or distinguishes a concept or class of data, with the aim of being able to estimate the class of an object whose label is unknown. E. Clustering, grouping and identifying data that has certain characteristics. F. Association, also called market basket analysis where this function identifies products that consumers might purchase together with other products. Apriori algorithm is a basic algorithm proposed by Agrawal & Srikant in 1994 to determine Frequent itemsets for Boolean association rules. Apriori algorithms include the types of Association Rules for data mining. Rules that state associations between several attributes are often called affinity analysis or market basket analysis. Association analysis or association rule mining is a data mining technique to find the rules of an item combination. One of the stages of association analysis that attracted the attention of many researchers to produce efficient algorithms is the analysis of high frequency patterns. The importance of an association can be known by two benchmarks, namely: support and confidence. Support (supporting value) is the percentage of the combination of items in the database, whereas confidence (the value of certainty) is the strength of the relationship between items in the rules of association (KusriniEmha, 2010) 1. Analysis of High Frequency Patterns with Apriori Algorithms This stage looks for item combinations that meet the minimum requirements of the support value in the database. The support value of an item is obtained by using the following formula: 𝑠𝑢𝑝𝑝𝑜𝑟𝑡(𝐴) = 𝐽𝑢𝑚𝑙𝑎ℎ 𝑡𝑟𝑎𝑛𝑠𝑎𝑘𝑠𝑖 𝑚𝑒𝑛𝑔𝑎𝑛𝑑𝑢𝑛𝑔 𝐴 𝑇𝑜𝑡𝑎𝑙 𝑡𝑟𝑎𝑛𝑠𝑎𝑘𝑠𝑖 Meanwhile, the support value of 2 items is obtained using the formula: 𝑠𝑢𝑝𝑝𝑜𝑟𝑡(𝐴, 𝐵) = 𝑃(𝐴 ∩ 𝐵) 𝑠𝑢𝑝𝑝𝑜𝑟𝑡 = ∑𝑡𝑟𝑎𝑛𝑠𝑎𝑘𝑠𝑖 𝑚𝑒𝑛𝑔𝑎𝑛𝑑𝑢𝑛𝑔 𝐴 𝑑𝑎𝑛 𝐵 ∑𝑡𝑟𝑎𝑛𝑠𝑎𝑘𝑠𝑖 The frequent itemset shows itemset which have a frequency of occurrence of more than the specified minimum value (ø ). For instance ø= 2, then all itemsets whose frequency of occurrence is more than or equal to 2 times are called frequent. The set of frequent k-itemset is denoted by Fk. 2. Formation of Association Rules After all the high frequency patterns are found, then association rules are sought that meet the minimum requirements for confidence by calculating the associative confidence rule A B. The confidence values of the A B rule are obtained by the following formula: 𝑐𝑜𝑛𝑓𝑖𝑑𝑒𝑛𝑐𝑒 = ∑𝑡𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛 𝑐𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 𝑎𝑛𝑑 𝐵 ∑𝑡𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛 𝑐𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 To determine the association rules to be chosen, they must be sorted according to the Support × Confidence. Rules are taken as many as n rules that have the greatest results. The apriori algorithm is divided into several stages called narration or pass 1. Forming itemset candidates. The k-itemset candidate is formed from the combination (k-1) itemset obtained from the previous iteration. One way of apriori algorithm is to trim the k-itemset candidate
  • 3. Riset dan E-Jurnal Manajemen Informatika Komputer Volume 3, Number 2, April 2019 e-ISSN : 2541-1330 p-ISSN : 2541-1332 43 whose subset contains k-1 items not included in the high-frequency pattern with length k-1. 2. Calculation of support for each k-itemset candidate. Support from each k-itemset candidate is obtained by scanning the database to calculate the number of transactions that contain all items in the k- itemset candidate. This is also a feature of apriori algorithm where it is necessary to calculate the entire database as many as the longest k-itemset. 3. Set a high frequency pattern. The high frequency pattern that contains k items or k-itemset is determined from the k-itemset candidate whose support is greater than the minimum support. 4. If no new high frequency pattern is obtained then the whole process is stopped. The FP-Growth algorithm is a development of the Apriori algorithm. Frequent Pattern Growth (FP- Growth) algorithm is an alternative algorithm that can be used to determine the frequent itemset in a data set [4]. The FP-Growth algorithm uses the concept of tree development, commonly called FP-Tree, in frequent itemset search instead of generate candidate as done in the Apriori algorithm. By using this concept, the FP-Growth algorithm is faster than the Apriori algorithm. The FP-Growth algorithm has stages that must be passed in order to provide maximum results, these stages are: 1. The stage of generating conditional pattern base. 2. The stage of generating conditional FP-Tree. 3. The Stage of frequent itemset search. Association rules is a process in data mining to determine all associative rules that meet the minimum requirements for support (minsup) and confidence (minconf) in a database. Both of these conditions will be used for applying interesting association rules compared to the prescribed limits, namely minsup and minconf. In determining the minimum support value of an item, it can be obtained by using the formula (1) as below: 𝑆𝑢𝑝𝑝𝑜𝑟𝑡 (𝐴) = 𝐴𝑚𝑜𝑢𝑛𝑡 𝑜𝑓 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝐶𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 𝑇𝑜𝑡𝑎𝑙 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝑆𝑢𝑝𝑝𝑜𝑟𝑡 (𝐴 ∩ 𝐵) = 𝐴𝑚𝑜𝑢𝑛𝑡 𝑜𝑓 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝐶𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 𝑎𝑛𝑑 𝐵 𝑇𝑜𝑡𝑎𝑙 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 Whereas in determining minimum confidence can be determined by the formula equation (2) as below: 𝐶𝑜𝑛𝑓𝑖𝑑𝑒𝑛𝑐𝑒 (𝐴 → 𝐵) = 𝑃(𝐴|𝐵) = 𝐴𝑚𝑜𝑢𝑛𝑡 𝑜𝑓 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝐶𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 𝑎𝑛𝑑 𝐵 𝐴𝑚𝑜𝑢𝑛𝑡 𝑜𝑓 𝑇𝑟𝑎𝑛𝑠𝑎𝑐𝑡𝑖𝑜𝑛𝑠 𝐶𝑜𝑛𝑡𝑎𝑖𝑛𝑖𝑛𝑔 𝐴 III. PROPOSED METHOD In composing this study, transaction data, in which sales data, is taken from the sale of PT. Panca Putra Solusindo Jakarta in January 2016 to December 2016, namely the association of data mining using the Apriori Algorithm and FP-Growth methods. The authors took a sample of 116 data from the total population of data on sales transaction data of PT Panca Putra Solusindo Jakarta, which amounted to 130 data. The sample to be taken is up to 116 top data contained in the primary data and contains 14 items. Before analyzing the Association of data mining (Moh SholikAbu, 2018), we need the Apriori algorithm flowchart as follows : Figure of Flowchart of Apriori Algorithms Then the steps in determining data mining associations using the FP-Growth algorithm are as follows : Figure of Block Image of FP-Growth Algorithm Diagram Furthermore, the author will prepare data with tabulations in the form of excel with the terms "Y" and "N" to describe that buying and noting an item of
  • 4. Riset dan E-Jurnal Manajemen Informatika Komputer Volume 3, Number 2, April 2019 e-ISSN : 2541-1330 p-ISSN : 2541-1332 44 goods (SensuseGoldie, 2012), then the data is changed in the form of "CSV". The following tabulation data is as follows. Table of Tabulation of Transaction data The next step is to transform the coding into the Weka data mining application (HagugianPaska, 2017) by taking part in the Association with the Apriori and FP-Growth methods. IV. RESULT AND DISCUSSION The important phase of data mining analysis Apriori algorithm is determining the highest frequency pattern by calculating the support value of one set item, so that the table is formed as follows: Tabel of Support Per Item Item Support Support (%) PC HP 53 46% Notebook HP 35 30.2% PC Lenovo 32 27.6% Notebook Lenovo 29 25% Memory 27 23.3% Other Electronic 21 18.10% USB Flashdisk 17 15% PC Dell 16 14% Printer HP 16 14% Monitor 7 6.03% Keyboard 6 5.2% LCD/CRT Lenovo 5 4.31% Notebook Dell 3 2.6% Scanner HP 1 0.9% From the table above, minimum support can be determined at 9%, then itemset will be determined which can meet the minimum support as follows: Table of Itemset that meets the minimum support Item Support Support (%) PC HP 53 46% Notebook HP 35 30.2% PC Lenovo 32 27.6% Notebook Lenovo 29 25% Memory 27 23.3% Other Electronic 21 18.10% USB Flashdisk 17 15% PC Dell 16 14% Printer HP 16 14% Next phase, two item frequency pattern formation is formed from items of the type of goods that meet the minimum support by combining all items into two combinations, the result of the combination of two items results in a minimum support of 9%. Then the items that meet the requirements are as follows: Table of two itemset that fulfill minimum support Item Support Support (%) PC HP x Notebook HP 13 11.20% Notebook HP x Notebook Lenovo 12 10.34% Notebook HP x Memory 11 9.5% PC HP x PC Lenovo 10 9% PC HP x Other Electronic 10 9% PC HP x PC Dell 10 9% After the minimum support value is formed, the author determines how to determine the value of confidence. In this case, it will be tested using the Weka application. The writers use Weka application then select explore to see the "CSV" type data then by using the Apriori algorithm the Association rules will be formed as many as ten best rules with the determination of confidence of 0.4 so that the image looks as follows:
  • 5. Riset dan E-Jurnal Manajemen Informatika Komputer Volume 3, Number 2, April 2019 e-ISSN : 2541-1330 p-ISSN : 2541-1332 45 Figure of Minimum Confidence in Apriori using Weka Application From the results above, we will get some rules in the apriori method as follows: Figure of Best Rule Apriori with Weka Application And items that have frequent frequent items are PC HP for 53 times the same sales as the following picture: Figure of Frequent item Apriori with Weka Application After being proven by testing the Weka application, the next phase is data processing based on the FP-Growth Algorithm, in this case the data is changed back in one format, namely the condition "true" or "t" as shown below: Table of FP-Growth Tabulation After tabulation as shown above, the data is prepared in the format "CSV", then open the Weka application to calculate the value of confidence and the rule produced. In processing data here, it is necessary to convert Weka application data into NominaltoBinary and NumeriktoBinary in the Unsupervised Attribute filter format as shown below:
  • 6. Riset dan E-Jurnal Manajemen Informatika Komputer Volume 3, Number 2, April 2019 e-ISSN : 2541-1330 p-ISSN : 2541-1332 46 Figure of Filter Type FP-Growth data Then after the data type filter is appropriate, rules will be obtained by determining the minimum confidence 0.4, which is as follows: Figure of of FP-Growth results in Weka Application Overall, both the Apriori Association algorithm and the expansion of FP-Growth produce several rules that often occur in a transaction (frequent items). This helps management to expand marketing strategies in increasing sales according to the combination of items in the association method that has been described and tested by the Weka application. V. CONCLUSION AND SUGGESTION 1. In the Apriori Algorithm, the confidence value of an item is 92% and we can clearly know what products are sold high in a period, while the FP-Growth algorithm produces several rules that have the most value, namely frequent itemset, so they can be rooted in making the next FP-Tree. 2. The best rules are produced from the Apriori and FP-Growth algorithms which provide several choices with a predetermined minimum confidence value of 0.4 so that it can provide data to marketing to find out in the future in the sales strategy planning to improve a better performance. 3. The author is aware of many shortcomings in data processing and data retrieval, the authors hope that in the future there will be other writers developing different algorithmic methods and producing accurate analysis for the needs of the company. VI. ACKNOWLEDGMENT We gratefully thank to the principal of PT Panca Putra Solusindo for allowing our to conduct the research there. We thank our colleagues from STMIK Nusa Mandiri and Universitas Bina Sarana Informatika who provided insight and expertise that greatly assisted the research. VII. REFERENCES Hagugian, P. M. (2017). Pengujian Algoritma Apriori dengan Aplikasi Weka dalam Pembentukan Asosiation Rule. Jurnal Mantik Penusa, 98-103. Kennedi Tampubolon, H. S. (2013). Implementasi Data Mining Algoritma Apriori pada Sistem Persediaan Alat-alat Kesehatan. Majalah Ilmiah INTI, 93-106. Khoiriah, R. Y. (2015). Implementasi Data Mining dengan Metode Algoritma Apriori dalam Menentukan Pola Pembelian Obat. Citec Journal, 102-113. Kusrini, E. T. (2010). Algoritma Data Mining. In E. T. Luthfi, Algoritma Data Mining. Yogyakarta: Andi. Moh Sholik, A. S. (2018). Implementasi Algoritma Apriori untuk mencari Asosiasi Barang yang dijual di E-Commerce Ordermas. Techno Com, 158-170. Nugroho Wandi, R. A. (2012). Pengembangan Sistem Rekomendasi Penelusuran Buku dengan Penggalian Association Rule menggunakan Algoritma Apriori (Studi Kasus Badan Perpustakaan dan Kearsipan Provinsi Jawa Timur). Jurnal Teknik ITS, 445-449.
  • 7. Riset dan E-Jurnal Manajemen Informatika Komputer Volume 3, Number 2, April 2019 e-ISSN : 2541-1330 p-ISSN : 2541-1332 47 Purnamasari, D. (2013). Get Easy Using Weka. In D. Purnamasari, Get Easy Using Weka. Jakarta: Dapur Buku. Samuel, D. (2008). Penerapan Struktur FP-Tree dan Algoritma FP-Growth dalam Optimasi Penentuan Frequent Itemset. In D. Samuel, Penerapan Struktur FP-Tree dan Algoritma FP-Growth dalam Optimasi Penentuan Frequent Itemset. Bandung: Institut Teknologi Bandung. Sensuse, G. G. (2012). Penerapan Metode Data Mining Market Basket Analysis terhadap data Penjualan Produk Buku dengan menggunakan Algoritma Apriori dan Frequent Pattern Growth(FP-Growth) Studi Kasus Percetakan PT Gramedia. Telematika MKOM, 118-132. Suryadi, S. S. (2010). Menggali Pengetahuan dan Bongkahan Data. In S. S. Suryadi, Menggali Pengetahuan dan Bongkahan Data. Yogyakarta: Andi Publisher. Triyanto, W. A. (2014). Association Rule Mining untuk Penentuan Rekomendasi Promosi Produk. Simetris, 121-126. Wiyana, S. K. (2018). Analisis Algoritma FP Growth untuk Rekomendasi Produk pada Data Retail Penjualan Produk Kosmetik (Studi Kasus: MT Shop Kelapa Gading). Seminar Nasional Teknologi Informasi, 61- 69.