SlideShare a Scribd company logo
1 of 9
Download to read offline
http://www.iaeme.com/IJCET/index.asp 20 editor@iaeme.com
International Journal of Computer Engineering & Technology (IJCET)
Volume 6, Issue 6, Jun 2015, pp. 20-28, Article ID: IJCET_06_06_003
Available online at
http://www.iaeme.com/IJCET/issues.asp?JTypeIJCET&VType=6&IType=6
ISSN Print: 0976-6367 and ISSN Online: 0976–6375
© IAEME Publication
___________________________________________________________________________
EFFICIENT MINING OF FAST FREQUENT
ITEM SET DISCOVERY FROM STOCK
MARKET DATA
Hitesh R. Raval
Research Scholar, Mewar University Chittorgarh, Rajasthan
Dr. Vikram Kaushik
Director, Manish Institute of Computer Studies, Visnagar
ABSTRACT
Stock market is a changeable environment. Traditional data analysis
techniques using of some tools can provide investors to manage stocks and
predict prices. However these traditional techniques cannot determine all the
possible relations between stocks and that’s why needing a different approach
that will provide deeper kind of analysis. Data mining can be use
comprehensively in the stock-price predicting. In this paper investigators
propose a new approach with efficient preprocessing, pruning data structure
techniques to discover inter-transaction association rules with business
intelligence characteristics. Propose work also provides better in-depth study
of inter-transaction stock price movement of companies to financial research
community, money managers, fund managers, investors, etc.
Key words: Data Mining, Stock, Inter –Transaction, Association Rule.
Preprocessing and Pruning.
Cite this Article: Raval, H. R. and Dr. Kaushik, V. Efficient Mining of Fast
Frequent Item Set Discovery from Stock Market Data. International Journal
of Computer Engineering and Technology, 6(6), 2015, pp. 20-28.
http://www.iaeme.com/IJCET/issues.asp?JTypeIJCET&VType=6&IType=6
_____________________________________________________________________
1. INTRODUCTION
Data mining play very important role in applications developing and research in the
area of knowledge discovery since last decade. There are several methods available
into data mining like association rule mining, classification, clustering etc.
Association rule mining [1] is one of the techniques of data mining by which several
related items (patterns) are discovered from large amount of data. Mining association
rules is a two step process. In first step, sets of items (candidate item-sets) which
occur frequently in database are found using some known algorithm like Apriori. The
Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data
http://www.iaeme.com/IJCET/index.asp 21 editor@iaeme.com
frequency (support) of item-set is the no. of transactions containing all the items of
that item-set. The frequent item-set is one whose support is greater than or equal to
some predefined parameter minimum support (min_sup). After frequent item-sets are
found, association rules are developed from them by considering one more parameter
minimum confidence (min_conf). Temporal data mining provides some additional
capabilities required in cases where the evolution of the existing data and their
interactions need to be observed through the time dimension [2]. Temporal data
mining can be defined as the activity of looking for interesting correlations or patterns
in large sets of temporal data accumulated for other purposes [3]. Main aim of a stock
market is, dealing of stocks between investors. Stocks are grouped into industry
according to their primary business focus [4]. Each stock is not only characterized by
its price but also by many others variable. Dealing with all these variables and
determine the result its required deeper kind of study. So, it could show the behavior
of a stock over time. The main variables are shown in the table below [5][6].
Table 1 Stock Variables
Variable Description
Price Current price of a stock
Opening Price Opening price of a stock on specific trading day
Closing Price Closing price of a stock on specific trading day
Volume Transactions Volume (buy / sell)
Change Percentile Opening and Closing stock value difference
Change (U) Percentile opening and closing stock value difference
1.1 Temporal Data Mining
Temporal data mining is concerned with data mining of large sequential data sets. By
sequential data, it means data that is ordered with respect to some index. It provides
some additional capabilities required in cases where the evaluation of the existing data
and their interactions need to be observed through the time dimension [7].
1.2 Time Series
Order sequence of data point is a time Series. It is measured at successive times
spaced at uniform time intervals. A large amount of data is collected everyday in the
form of event time sequences. These sequences represent valuable sources of
information not only to search for a particular value or event at a specific time, but
also to analyze the frequency of certain events, discover their regularity, or discover
set of events related by particular temporal relationships [9].
2. THE PRINCIPLE OF THE APRIORI ALGORITHM.
Apriori method is the common approaches to mining frequent patterns. In apriori
algorithm support is the fraction of entities which consumed the itemsets in any of
their possible transaction. After identifying the large itemsets the itemsets with
support greater than the minimum support allowed, they are translated to an integer
and each sequence is transformed in a new sequence whose elements are the large
itemsets of the previous-one. The next step is to find the large sequences. For achieve
this, the algorithm acts iteratively as apriori: first it generates the candidate sequences
and then it chooses the large sequences from the candidate ones, until there are no
candidates. An effective algorithm to discover association rules is the apriori.
Hitesh R. Raval and Dr. Vikram Kaushik
http://www.iaeme.com/IJCET/index.asp 22 editor@iaeme.com
Adapting this method to deal with temporal information leads to some different
approaches. Common sub-sequences can be used to derive association rules with
predictive value, as is done, for instance, in the analysis of multi-dimensional time
series [9][14].
A possible approach consists on extending the notion of a typical rule X → Y
(which states if X occurs then Y occurs) to be a rule with a new meaning: X →T
Y
(which states: if X occurs then Y will occur within time T). In order to discover these
rules, it is necessary to search for them in a restrict portion of time, since they may
occur repeatedly at specific time instants but on a little portion of the global time
considered. A method to discover such rules is applying an algorithm similar to the
apriori, and after having the set of traditional rules, detects the cycles behind the rules
[14].
Definition 1: The support of an item (or set of items) is the numbers of transactions in
which that item (or items) occur. Given a set of transactions in a database where each
letter corresponds to a certain product such as Jeans or T-shirt and each transaction
corresponds to a customer buying the products A, B, C or D the first step in the
apriori algorithm is to count the support (number of occurrences) of each item
separately.
Table 2 Transaction Items
Transaction Items
T1 A, B, C, D
T2 B, C, D
T3 B, C
T4 A, B, D
T5 A, B, C, D
T6 B, D
Table 3 Number of Transactions for Items
Item Support
A 3
B 6
C 4
D 5
The items in the transactions represented in Table 2 have their support represented
in Table 3.
Definition 2: The support threshold is defined by the user and is a number for which
the support for each item (or items) has to be equal or above for the support
threshold to be fulfilled [13, 14]
In this example we will use support threshold = 3. This means all items in Table 3
meets this condition since none of them have a support below 2 as seen in Table 3.
Definition 3: Given a set of items I = {I1 I2 … In} an item set is a subset of I [14].
Definition 4: A large item set is an item set whose numbers of occurrences in the
transactions is above the support threshold. Here use the notation L to indicate the
complete set of large item sets [14].
Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data
http://www.iaeme.com/IJCET/index.asp 23 editor@iaeme.com
In example the complete set of large itemset L in this first iteration is L = {A, B,
C, D} since all of these terms meets the support threshold. If any of these items had
been below the support threshold they had not been included in the subsequent steps.
In the next steps will form all pairs, triples and so on of the items in Table 3. If A
would have a support threshold below three all pairs, triples etc containing A would
also be below the support threshold. This is the fundamental basis of the apriori
algorithm since it allows us to prune all transactions having only items under the
support threshold, hence reducing the amount of data in each step.
The next step is to form all 2-pair item sets. Can do this by making all possible
combinations of the large item sets without regarding the order.
Table 4 Transaction Items Together
Item Support
A,B 3
A,C 2
A,D 3
B,C 4
B,D 5
C,D 3
Table 5 Large Itemsets
Large Itemsets
A,B
A,D
B,C
B,D
C,D
In Table 4 the new itemsets are illustrated together with respective support. The
item set A, C only have support 2 and since our support threshold is 3 the item set is
not a large item set. Next generate the 3-sets by joining the full set of large item sets
in Table 5 over a common item.
Table 6 Combination of Three sets
Item Support
A,B,C 2
A,C,D 2
A,B,D 3
B,C,D 3
Table 7 Large Itemsets in Three set Combation
Large Itemsets
A,B,C
B,C,D
Hitesh R. Raval and Dr. Vikram Kaushik
http://www.iaeme.com/IJCET/index.asp 24 editor@iaeme.com
The only 3-set that fulfills the support threshold is {A, B, D} and {B, C, D} as
illustrated in Table 7. If continue this process by joining the item sets in the complete
large item set over a common pair user get the last possible combination.
Table 8 Four set Combination
Item Support
A,B,C,D 2
Figure 1 Illustration of the possible combinations of the A, B, C, D without regarding the
order in the apriori algorithm.
The process of joining terms in the apriori algorithm is illustrated in Figure 1.
Note that the position of item in the itemsets doesn’t matter. i.e. the item set {A, B,
D} is regarded in the same way as {D, A, B} and to keep track of this don’t get any
redundancies later in the implementation all items in each item set is ordered by its
value.
The apriori algorithm cuts some of the branches in the tree in Figure 1, for
example the item set {A,C} did only occur 2 times which was below the support
threshold at 3. The apriori algorithm makes use of this by not generating any branches
from this node and thus reduces the computational cost. This is as said the foundation
of the apriori algorithm [9].
2. 1. Algorithm 1. Apriori algorithm [15]
Input:
I //Itemsets
D //Transactions
S //support threshold
Output:
L // large itemsets
Apriori algorithm
k = 0 // k is used as the scan number
L = Ø
Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data
http://www.iaeme.com/IJCET/index.asp 25 editor@iaeme.com
C1 = I //Initial candidates are set to be the items
Repeat
k = k + 1
Lk = Ø
for each Ii € Ck do
ci = 0 //Initial counts for each itemset are 0
for each tj € D do
for each Ii € Ck do
if Ii € tj then
ci = ci + 1
for each Ii € Ck do
if ci ≥ s do
Lk = Lk U Ii
L = L U Lk
Ck+1 = aPriori-Gen (Lk)
2.2. Algorithm 2. Apriori-Gen algorithm [14]
Input:
Li-1 //Large itemsets of size i-1
Output:
Ci //Candidates of size i
Apriori-Gen algorithm
Ci = Ø
for each I € Li-1
for each J ≠ I € Li-1 do
if i-2 of the elements in
I and J are equal
then
Ck = Ck U {I U J}.
2.1 Impact of the Algorithm
Past few years, numbers of studies have been published new algorithms or
improvements on existing algorithm to solve frequent itemset mining. Some
algorithms require a small amount of memory, but heavy disk access (such as Apriori-
like algorithms); others necessitate low I/O activity, but large amount of memory such
Hitesh R. Raval and Dr. Vikram Kaushik
http://www.iaeme.com/IJCET/index.asp 26 editor@iaeme.com
as FP-growth. However, the number of research papers on the inter-transaction
mining problem is still few since it is a more challenging problem than intra-
transaction mining.
3. PROPOSED WORK
Luhr et al. [10] and Tung et al. [11] proposed a framework that can only discover
inter-transaction association rules, whereas proposed an approach to mine quantitative
intra-transaction association rules. In order to discover quantitative inter-transaction
association rules, a new approach is developed to extract rules from single
dimensional transaction datasets of stock closing price and traded volume.
Investigator proposed framework called ITARM for mining inter-transaction
association rules for the dataset that contains constant number of items in each
transaction. Investigator approach not only predicts the movement of stock price in
either direction with user defined minimum support and confidence value but also
predicts the probable variation in stock closing price and traded quantity based on
historical data of attributes.
The proposed approach employs an effective preprocessing phase as shown in
Figure 2 that reduces over all mining time and efficient pruning techniques to
eliminate frequent itemsets which are occurring in same transaction and also which
are not started with first transaction of each sliding window. ITARM uses FP-tree
based algorithm because it requires only two scan of transaction database to construct
a tree and uses prefix-tree structure which requires less memory.
Figure 2 Process of mining inter-transaction association rules (ITARM)
4. THE PROPOSED ALGORITHM (FP-TREE CONSTRUCTION
AND PRUNING)
Input: A transaction database D and a minimum support threshold minsup
Output: Its frequent pattern tree, FP-tree
Method: The FP-tree is constructed in the following steps
1. Scan the transaction database D once. Collect the set of frequent items F and their
supports. Sort F in support descending order as L, the list of frequent items.
2. Create the root of an FP-tree, T, and label it as “null”. For each transaction Trans in
D do the following.
Select and sort the frequent items in Trans according to the order of L. Let the
sorted frequent item list in Trans be [p | P], where p is the first element and P is the
remaining list. Call insert tree ([p | P], T).
The function insert tree ([p | P], T) is performed as follows.
Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data
http://www.iaeme.com/IJCET/index.asp 27 editor@iaeme.com
If T has a child N such that N.item-name = p.item-name, then increment N’s count
by 1; else create a new node N, and let its count be 1, its parent link be linked to T,
and its node-link be linked to the nodes with the same item-name via the node-link
structure. If P is nonempty, call insert tree (P, N) recursively.
3. Sort (P, size of p). If sorted frequent items has first digit 1 than store itemset in hash
table else skip itemset because it is not satisfying inter-transaction criteria.
After tree construction over, sort frequent mega-transaction itemsets on their sub
window number. If each sorted frequent itemsets has sub window number 1 than store
itemset in hash table else skip itemset because it is not satisfying inter-transaction
criteria. Step 3 shows modification to current FP-tree algorithm to incorporate
frequent inter-transaction mining.
Algorithm (FP-growth: Mining frequent inter-transaction patterns with FP-tree by
pattern fragment growth and pruning)
Input: Constructed FP-tree, using transaction database D and a minimum support
threshold minsup
Output: The complete set of inter-transaction frequent patterns
Method: Call FP-growth (FP-tree, null)
Procedure FP-growth (Tree, α)
• if Tree contains a single path P
• then for each combination (denoted as β) of the nodes in the path P do
• generate pattern β ∪ α with support = minimum support of nodes in β;
• else for each ai in the header of Tree do {
• generate pattern β = ai ∪ α with support = ai.support;
• construct β ’s conditional pattern base and then β ’s conditional FP-tree Treeβ;
• if Treeβ ≠ Ø
• then call FP-growth (Treeβ, β)
• if Treeβ has all items starting with ‘1’
• then it confirms intra-transaction rule, Prune such instances else keep
5. RELATED WORK
While the amount of data increases gradually, the frequent itemsets of inter-
transaction association rule will become larger and larger and hard to handle [12]. At
least there is no algorithm available that deals with quantitative inter-transaction
association rules. Unfortunately very less work has been done to discover this kind of
rules in financial domain and this area is still emerging.
6. CONCLUSION
Frequent itemset mining and association rule mining are the two important tasks of
data mining. Incorporating utility considerations in data mining tasks is gaining
popularity in recent years. In this paper, we are trying to discovering itemsets under
all time windows of data streams can be achieved effectively with limited memory
space, less candidate itemsets and CPU I/O. This meets the critical requirements of
time and space efficiency for mining data streams. In this paper we have taken two
most influencing factors - closing price and traded volume of the National Stock
Exchange (NSE) India, as company stock price is following movement of higher
index based companies for reasonable higher support and confidence. Stock closing
Hitesh R. Raval and Dr. Vikram Kaushik
http://www.iaeme.com/IJCET/index.asp 28 editor@iaeme.com
price, traded volume, business sector, earning numbers, Price Earnings ratio, rumors
etc. are some of the factors that influence the stock price. Obviously, all these factors
cannot be easily modeled and embedded, since some of them are related with human
psychology. Enhanced mechanism that provides better trade-off between main
memory and interactive inter-transaction rule. We have considered set boundary for
symbolic representation, applying fuzzy logic can provide more accuracy with higher
computation complexity.
REFERENCES
[1] Han, J. and Kambler, M. Data Mining Concepts & Techniques.
[2] Agrawal, R., Imielinski, T. and Swai, A. Mining association rules between sets of
items in large databases. In Proceedings of 1993 ACM S IGMOD Intl Conf. on
Management of Data, Washington, D. C., May 1993. pp 207--216
[3] Bettini, C., Wang, X. S. and Jajodia, S. Testing complex temporal relationships
involving multiple granularities its application to data mining. In Proc of the 15th
ACM SIGACT-SIGMOD-SIGART Symposium on Principles of Database
Systems, June 3–5, 1996, Montreal, Canada, ACM Press, 1996, pp 68–78.
[4] Ayn, N. F., Tansel, A. U. and Arun, E. An efficient algorithm to update large
itemsets with early pruning Proceedings of the Fifth AC M SIGKDD
International Conference on Knowledge Discovery and Data Mining San Diego,
August 1999.
[5] Marketos, G., Pediaditakis, K., Theodoridis, Y. and Theodoulidis, B. Intelligent
Stock Market Assistant Using Temporal Data Mining.
[6] Mrs. Mahajan, K. S. and Kulkarni, R. V. Application of Data mining Tools For
Stock Market.
[7] Antunes, C. M. and Oliveira, A. L. Temporal Data Mining: an overview: Institute
Superior Technical, Dep. Engenharia Informatics, Av. Rovisco Pais 1, 1049-001
Lisboa, Portugal, pp 2–15.
[8] Cheung, D., Han, J., Ng, V. and Wong, C. Y. Maintenance of Discovered
Association Rules in Large Databases: An Incremental Updating Technique. Proc
of 1996 Int’l Conf. on Data Engineering, February 1996, pp. 106–114.
[9] Soni, S. and Shibu, S. Advance Mining of Temporal High Utility Itemset. I. J.
Information Technology and Computer Science, 2012, 4, pp. 26–32.
[10] Luhr, S. and Venkatesh, S. An extended frequent pattern tree for inter-transaction
association rule mining. Technical Report, 2005.
[11] Tung, A. K. H., Lu, H., Han, J. and Feng, L. Breaking the barrier of transactions:
Mining inter-transaction association rules. Knowledge Discovery and Data
Mining, August 1999, pp 297–301.
[12] Dong, J. and Han, M. Ifcia: An efficient algorithm for mining inter-transaction
frequent closed itemsets. FSKD’07: In Proceedings of the 4th International
Conference on Fuzzy Systems and Knowledge Discovery, August 2007, pp. 678–
682.
[13] Argiddi, R. V. and Apte, S. S. An Evolutionary Fragment Mining Approach To
Extract Stock Market Behavior For Investment Portfolio International journal of
Computer Engineering & Technology, 4(5) 2013, pp. 138–146
[14] Dunham, Margaret H. Data mining: Introductory and advanced topics, 1 edn., Ch
6. Prentice Hall, September 1, 2002, ISBN: 0130888923
[15] www.slideshare.net/Tommy96/Temporal-data-mining-an-overview

More Related Content

What's hot

Simulation and Performance Analysis of Long Term Evolution (LTE) Cellular Net...
Simulation and Performance Analysis of Long Term Evolution (LTE) Cellular Net...Simulation and Performance Analysis of Long Term Evolution (LTE) Cellular Net...
Simulation and Performance Analysis of Long Term Evolution (LTE) Cellular Net...ijsrd.com
 
Introduction To Multilevel Association Rule And Its Methods
Introduction To Multilevel Association Rule And Its MethodsIntroduction To Multilevel Association Rule And Its Methods
Introduction To Multilevel Association Rule And Its MethodsIJSRD
 
Result analysis of mining fast frequent itemset using compacted data
Result analysis of mining fast frequent itemset using compacted dataResult analysis of mining fast frequent itemset using compacted data
Result analysis of mining fast frequent itemset using compacted dataijistjournal
 
Lect6 Association rule & Apriori algorithm
Lect6 Association rule & Apriori algorithmLect6 Association rule & Apriori algorithm
Lect6 Association rule & Apriori algorithmhktripathy
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)theijes
 
Association Analysis
Association AnalysisAssociation Analysis
Association Analysisguest0edcaf
 
Apriori algorithm
Apriori algorithmApriori algorithm
Apriori algorithmGangadhar S
 
Association Analysis in Data Mining
Association Analysis in Data MiningAssociation Analysis in Data Mining
Association Analysis in Data MiningKamal Acharya
 
A classification of methods for frequent pattern mining
A classification of methods for frequent pattern miningA classification of methods for frequent pattern mining
A classification of methods for frequent pattern miningIOSR Journals
 
3 association rule mining
3 association rule mining3 association rule mining
3 association rule miningVishal Dutt
 
Presentation on the topic of association rule mining
Presentation on the topic of association rule miningPresentation on the topic of association rule mining
Presentation on the topic of association rule miningHamzaJaved64
 
Literature Survey of modern frequent item set mining methods
Literature Survey of modern frequent item set mining methodsLiterature Survey of modern frequent item set mining methods
Literature Survey of modern frequent item set mining methodsijsrd.com
 
An improvised frequent pattern tree
An improvised frequent pattern treeAn improvised frequent pattern tree
An improvised frequent pattern treeIJDKP
 

What's hot (19)

Apriori algorithm
Apriori algorithmApriori algorithm
Apriori algorithm
 
Simulation and Performance Analysis of Long Term Evolution (LTE) Cellular Net...
Simulation and Performance Analysis of Long Term Evolution (LTE) Cellular Net...Simulation and Performance Analysis of Long Term Evolution (LTE) Cellular Net...
Simulation and Performance Analysis of Long Term Evolution (LTE) Cellular Net...
 
Apriori Algorithm
Apriori AlgorithmApriori Algorithm
Apriori Algorithm
 
Introduction To Multilevel Association Rule And Its Methods
Introduction To Multilevel Association Rule And Its MethodsIntroduction To Multilevel Association Rule And Its Methods
Introduction To Multilevel Association Rule And Its Methods
 
Result analysis of mining fast frequent itemset using compacted data
Result analysis of mining fast frequent itemset using compacted dataResult analysis of mining fast frequent itemset using compacted data
Result analysis of mining fast frequent itemset using compacted data
 
Lect6 Association rule & Apriori algorithm
Lect6 Association rule & Apriori algorithmLect6 Association rule & Apriori algorithm
Lect6 Association rule & Apriori algorithm
 
An Approach of Improvisation in Efficiency of Apriori Algorithm
An Approach of Improvisation in Efficiency of Apriori AlgorithmAn Approach of Improvisation in Efficiency of Apriori Algorithm
An Approach of Improvisation in Efficiency of Apriori Algorithm
 
The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)The International Journal of Engineering and Science (The IJES)
The International Journal of Engineering and Science (The IJES)
 
Association Analysis
Association AnalysisAssociation Analysis
Association Analysis
 
Apriori algorithm
Apriori algorithmApriori algorithm
Apriori algorithm
 
Association Analysis in Data Mining
Association Analysis in Data MiningAssociation Analysis in Data Mining
Association Analysis in Data Mining
 
A classification of methods for frequent pattern mining
A classification of methods for frequent pattern miningA classification of methods for frequent pattern mining
A classification of methods for frequent pattern mining
 
Ijariie1129
Ijariie1129Ijariie1129
Ijariie1129
 
3 association rule mining
3 association rule mining3 association rule mining
3 association rule mining
 
B0950814
B0950814B0950814
B0950814
 
Ej36829834
Ej36829834Ej36829834
Ej36829834
 
Presentation on the topic of association rule mining
Presentation on the topic of association rule miningPresentation on the topic of association rule mining
Presentation on the topic of association rule mining
 
Literature Survey of modern frequent item set mining methods
Literature Survey of modern frequent item set mining methodsLiterature Survey of modern frequent item set mining methods
Literature Survey of modern frequent item set mining methods
 
An improvised frequent pattern tree
An improvised frequent pattern treeAn improvised frequent pattern tree
An improvised frequent pattern tree
 

Viewers also liked

Force isotropy of three limb spatial parallel manipulator
Force isotropy of three limb spatial parallel manipulatorForce isotropy of three limb spatial parallel manipulator
Force isotropy of three limb spatial parallel manipulatorIAEME Publication
 
Modification of the casagrandes equation of phreatic line
Modification of the casagrandes equation of phreatic lineModification of the casagrandes equation of phreatic line
Modification of the casagrandes equation of phreatic lineIAEME Publication
 
3 d concrete printing machine and mix design
3 d concrete printing machine and mix design3 d concrete printing machine and mix design
3 d concrete printing machine and mix designIAEME Publication
 
Benchmarking internal supply chain performance development of a frame work
Benchmarking internal supply chain performance development of a frame workBenchmarking internal supply chain performance development of a frame work
Benchmarking internal supply chain performance development of a frame workIAEME Publication
 
Manipulability index of a parallel robot manipulator
Manipulability index of a parallel robot manipulatorManipulability index of a parallel robot manipulator
Manipulability index of a parallel robot manipulatorIAEME Publication
 
Seismic response of existing rc building under revised seismic zone classific...
Seismic response of existing rc building under revised seismic zone classific...Seismic response of existing rc building under revised seismic zone classific...
Seismic response of existing rc building under revised seismic zone classific...IAEME Publication
 
Design of stone dust stabilized road
Design of stone dust stabilized roadDesign of stone dust stabilized road
Design of stone dust stabilized roadIAEME Publication
 

Viewers also liked (19)

Ijciet 06 08_003
Ijciet 06 08_003Ijciet 06 08_003
Ijciet 06 08_003
 
Force isotropy of three limb spatial parallel manipulator
Force isotropy of three limb spatial parallel manipulatorForce isotropy of three limb spatial parallel manipulator
Force isotropy of three limb spatial parallel manipulator
 
Ijaret 06 09_002
Ijaret 06 09_002Ijaret 06 09_002
Ijaret 06 09_002
 
Ijciet 06 07_011
Ijciet 06 07_011Ijciet 06 07_011
Ijciet 06 07_011
 
Ijecet 06 06_006
Ijecet 06 06_006Ijecet 06 06_006
Ijecet 06 06_006
 
Ijecet 06 07_005
Ijecet 06 07_005Ijecet 06 07_005
Ijecet 06 07_005
 
Ijcet 06 06_005
Ijcet 06 06_005Ijcet 06 06_005
Ijcet 06 06_005
 
Modification of the casagrandes equation of phreatic line
Modification of the casagrandes equation of phreatic lineModification of the casagrandes equation of phreatic line
Modification of the casagrandes equation of phreatic line
 
3 d concrete printing machine and mix design
3 d concrete printing machine and mix design3 d concrete printing machine and mix design
3 d concrete printing machine and mix design
 
Ijciet 06 07_008
Ijciet 06 07_008Ijciet 06 07_008
Ijciet 06 07_008
 
Benchmarking internal supply chain performance development of a frame work
Benchmarking internal supply chain performance development of a frame workBenchmarking internal supply chain performance development of a frame work
Benchmarking internal supply chain performance development of a frame work
 
Ijm 06 07_007
Ijm 06 07_007Ijm 06 07_007
Ijm 06 07_007
 
Manipulability index of a parallel robot manipulator
Manipulability index of a parallel robot manipulatorManipulability index of a parallel robot manipulator
Manipulability index of a parallel robot manipulator
 
Ijciet 06 07_003
Ijciet 06 07_003Ijciet 06 07_003
Ijciet 06 07_003
 
Seismic response of existing rc building under revised seismic zone classific...
Seismic response of existing rc building under revised seismic zone classific...Seismic response of existing rc building under revised seismic zone classific...
Seismic response of existing rc building under revised seismic zone classific...
 
Design of stone dust stabilized road
Design of stone dust stabilized roadDesign of stone dust stabilized road
Design of stone dust stabilized road
 
Ijaret 06 09_003
Ijaret 06 09_003Ijaret 06 09_003
Ijaret 06 09_003
 
Ijeet 06 08_010
Ijeet 06 08_010Ijeet 06 08_010
Ijeet 06 08_010
 
Ijeet 06 08_007
Ijeet 06 08_007Ijeet 06 08_007
Ijeet 06 08_007
 

Similar to Efficient Mining of Fast Frequent Item Sets from Stock Data

A NEW ASSOCIATION RULE MINING BASED ON FREQUENT ITEM SET
A NEW ASSOCIATION RULE MINING BASED  ON FREQUENT ITEM SETA NEW ASSOCIATION RULE MINING BASED  ON FREQUENT ITEM SET
A NEW ASSOCIATION RULE MINING BASED ON FREQUENT ITEM SETcscpconf
 
Comparative study of frequent item set in data mining
Comparative study of frequent item set in data miningComparative study of frequent item set in data mining
Comparative study of frequent item set in data miningijpla
 
Top Down Approach to find Maximal Frequent Item Sets using Subset Creation
Top Down Approach to find Maximal Frequent Item Sets using Subset CreationTop Down Approach to find Maximal Frequent Item Sets using Subset Creation
Top Down Approach to find Maximal Frequent Item Sets using Subset Creationcscpconf
 
A Survey on Identification of Closed Frequent Item Sets Using Intersecting Al...
A Survey on Identification of Closed Frequent Item Sets Using Intersecting Al...A Survey on Identification of Closed Frequent Item Sets Using Intersecting Al...
A Survey on Identification of Closed Frequent Item Sets Using Intersecting Al...IOSR Journals
 
Efficient Temporal Association Rule Mining
Efficient Temporal Association Rule MiningEfficient Temporal Association Rule Mining
Efficient Temporal Association Rule MiningIJMER
 
Pattern Discovery Using Apriori and Ch-Search Algorithm
 Pattern Discovery Using Apriori and Ch-Search Algorithm Pattern Discovery Using Apriori and Ch-Search Algorithm
Pattern Discovery Using Apriori and Ch-Search Algorithmijceronline
 
IRJET-Comparative Analysis of Apriori and Apriori with Hashing Algorithm
IRJET-Comparative Analysis of  Apriori and Apriori with Hashing AlgorithmIRJET-Comparative Analysis of  Apriori and Apriori with Hashing Algorithm
IRJET-Comparative Analysis of Apriori and Apriori with Hashing AlgorithmIRJET Journal
 
Result Analysis of Mining Fast Frequent Itemset Using Compacted Data
Result Analysis of Mining Fast Frequent Itemset Using Compacted DataResult Analysis of Mining Fast Frequent Itemset Using Compacted Data
Result Analysis of Mining Fast Frequent Itemset Using Compacted Dataijistjournal
 
Ijsrdv1 i2039
Ijsrdv1 i2039Ijsrdv1 i2039
Ijsrdv1 i2039ijsrd.com
 
Improved Frequent Pattern Mining Algorithm using Divide and Conquer Technique...
Improved Frequent Pattern Mining Algorithm using Divide and Conquer Technique...Improved Frequent Pattern Mining Algorithm using Divide and Conquer Technique...
Improved Frequent Pattern Mining Algorithm using Divide and Conquer Technique...ijsrd.com
 
A Performance Based Transposition algorithm for Frequent Itemsets Generation
A Performance Based Transposition algorithm for Frequent Itemsets GenerationA Performance Based Transposition algorithm for Frequent Itemsets Generation
A Performance Based Transposition algorithm for Frequent Itemsets GenerationWaqas Tariq
 
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 Itemsvivatechijri
 
Comparative analysis of association rule generation algorithms in data streams
Comparative analysis of association rule generation algorithms in data streamsComparative analysis of association rule generation algorithms in data streams
Comparative analysis of association rule generation algorithms in data streamsIJCI JOURNAL
 
ASSOCIATION RULE MINING BASED ON TRADE LIST
ASSOCIATION RULE MINING BASED  ON TRADE LISTASSOCIATION RULE MINING BASED  ON TRADE LIST
ASSOCIATION RULE MINING BASED ON TRADE LISTIJDKP
 
A Novel preprocessing Algorithm for Frequent Pattern Mining in Multidatasets
A Novel preprocessing Algorithm for Frequent Pattern Mining in MultidatasetsA Novel preprocessing Algorithm for Frequent Pattern Mining in Multidatasets
A Novel preprocessing Algorithm for Frequent Pattern Mining in MultidatasetsWaqas Tariq
 

Similar to Efficient Mining of Fast Frequent Item Sets from Stock Data (20)

A NEW ASSOCIATION RULE MINING BASED ON FREQUENT ITEM SET
A NEW ASSOCIATION RULE MINING BASED  ON FREQUENT ITEM SETA NEW ASSOCIATION RULE MINING BASED  ON FREQUENT ITEM SET
A NEW ASSOCIATION RULE MINING BASED ON FREQUENT ITEM SET
 
Comparative study of frequent item set in data mining
Comparative study of frequent item set in data miningComparative study of frequent item set in data mining
Comparative study of frequent item set in data mining
 
Top Down Approach to find Maximal Frequent Item Sets using Subset Creation
Top Down Approach to find Maximal Frequent Item Sets using Subset CreationTop Down Approach to find Maximal Frequent Item Sets using Subset Creation
Top Down Approach to find Maximal Frequent Item Sets using Subset Creation
 
A Survey on Identification of Closed Frequent Item Sets Using Intersecting Al...
A Survey on Identification of Closed Frequent Item Sets Using Intersecting Al...A Survey on Identification of Closed Frequent Item Sets Using Intersecting Al...
A Survey on Identification of Closed Frequent Item Sets Using Intersecting Al...
 
Efficient Temporal Association Rule Mining
Efficient Temporal Association Rule MiningEfficient Temporal Association Rule Mining
Efficient Temporal Association Rule Mining
 
Efficient Temporal Association Rule Mining
Efficient Temporal Association Rule MiningEfficient Temporal Association Rule Mining
Efficient Temporal Association Rule Mining
 
A04010105
A04010105A04010105
A04010105
 
Pattern Discovery Using Apriori and Ch-Search Algorithm
 Pattern Discovery Using Apriori and Ch-Search Algorithm Pattern Discovery Using Apriori and Ch-Search Algorithm
Pattern Discovery Using Apriori and Ch-Search Algorithm
 
IRJET-Comparative Analysis of Apriori and Apriori with Hashing Algorithm
IRJET-Comparative Analysis of  Apriori and Apriori with Hashing AlgorithmIRJET-Comparative Analysis of  Apriori and Apriori with Hashing Algorithm
IRJET-Comparative Analysis of Apriori and Apriori with Hashing Algorithm
 
Result Analysis of Mining Fast Frequent Itemset Using Compacted Data
Result Analysis of Mining Fast Frequent Itemset Using Compacted DataResult Analysis of Mining Fast Frequent Itemset Using Compacted Data
Result Analysis of Mining Fast Frequent Itemset Using Compacted Data
 
Ijsrdv1 i2039
Ijsrdv1 i2039Ijsrdv1 i2039
Ijsrdv1 i2039
 
Improved Frequent Pattern Mining Algorithm using Divide and Conquer Technique...
Improved Frequent Pattern Mining Algorithm using Divide and Conquer Technique...Improved Frequent Pattern Mining Algorithm using Divide and Conquer Technique...
Improved Frequent Pattern Mining Algorithm using Divide and Conquer Technique...
 
A Performance Based Transposition algorithm for Frequent Itemsets Generation
A Performance Based Transposition algorithm for Frequent Itemsets GenerationA Performance Based Transposition algorithm for Frequent Itemsets Generation
A Performance Based Transposition algorithm for Frequent Itemsets Generation
 
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
 
Comparative analysis of association rule generation algorithms in data streams
Comparative analysis of association rule generation algorithms in data streamsComparative analysis of association rule generation algorithms in data streams
Comparative analysis of association rule generation algorithms in data streams
 
50120140503019
5012014050301950120140503019
50120140503019
 
ASSOCIATION RULE MINING BASED ON TRADE LIST
ASSOCIATION RULE MINING BASED  ON TRADE LISTASSOCIATION RULE MINING BASED  ON TRADE LIST
ASSOCIATION RULE MINING BASED ON TRADE LIST
 
Ijtra130516
Ijtra130516Ijtra130516
Ijtra130516
 
A Novel preprocessing Algorithm for Frequent Pattern Mining in Multidatasets
A Novel preprocessing Algorithm for Frequent Pattern Mining in MultidatasetsA Novel preprocessing Algorithm for Frequent Pattern Mining in Multidatasets
A Novel preprocessing Algorithm for Frequent Pattern Mining in Multidatasets
 
A1030105
A1030105A1030105
A1030105
 

More from IAEME Publication

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

More from IAEME Publication (20)

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

Recently uploaded

247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZTE
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 

Recently uploaded (20)

247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
ZXCTN 5804 / ZTE PTN / ZTE POTN / ZTE 5804 PTN / ZTE POTN 5804 ( 100/200 GE Z...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 

Efficient Mining of Fast Frequent Item Sets from Stock Data

  • 1. http://www.iaeme.com/IJCET/index.asp 20 editor@iaeme.com International Journal of Computer Engineering & Technology (IJCET) Volume 6, Issue 6, Jun 2015, pp. 20-28, Article ID: IJCET_06_06_003 Available online at http://www.iaeme.com/IJCET/issues.asp?JTypeIJCET&VType=6&IType=6 ISSN Print: 0976-6367 and ISSN Online: 0976–6375 © IAEME Publication ___________________________________________________________________________ EFFICIENT MINING OF FAST FREQUENT ITEM SET DISCOVERY FROM STOCK MARKET DATA Hitesh R. Raval Research Scholar, Mewar University Chittorgarh, Rajasthan Dr. Vikram Kaushik Director, Manish Institute of Computer Studies, Visnagar ABSTRACT Stock market is a changeable environment. Traditional data analysis techniques using of some tools can provide investors to manage stocks and predict prices. However these traditional techniques cannot determine all the possible relations between stocks and that’s why needing a different approach that will provide deeper kind of analysis. Data mining can be use comprehensively in the stock-price predicting. In this paper investigators propose a new approach with efficient preprocessing, pruning data structure techniques to discover inter-transaction association rules with business intelligence characteristics. Propose work also provides better in-depth study of inter-transaction stock price movement of companies to financial research community, money managers, fund managers, investors, etc. Key words: Data Mining, Stock, Inter –Transaction, Association Rule. Preprocessing and Pruning. Cite this Article: Raval, H. R. and Dr. Kaushik, V. Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data. International Journal of Computer Engineering and Technology, 6(6), 2015, pp. 20-28. http://www.iaeme.com/IJCET/issues.asp?JTypeIJCET&VType=6&IType=6 _____________________________________________________________________ 1. INTRODUCTION Data mining play very important role in applications developing and research in the area of knowledge discovery since last decade. There are several methods available into data mining like association rule mining, classification, clustering etc. Association rule mining [1] is one of the techniques of data mining by which several related items (patterns) are discovered from large amount of data. Mining association rules is a two step process. In first step, sets of items (candidate item-sets) which occur frequently in database are found using some known algorithm like Apriori. The
  • 2. Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data http://www.iaeme.com/IJCET/index.asp 21 editor@iaeme.com frequency (support) of item-set is the no. of transactions containing all the items of that item-set. The frequent item-set is one whose support is greater than or equal to some predefined parameter minimum support (min_sup). After frequent item-sets are found, association rules are developed from them by considering one more parameter minimum confidence (min_conf). Temporal data mining provides some additional capabilities required in cases where the evolution of the existing data and their interactions need to be observed through the time dimension [2]. Temporal data mining can be defined as the activity of looking for interesting correlations or patterns in large sets of temporal data accumulated for other purposes [3]. Main aim of a stock market is, dealing of stocks between investors. Stocks are grouped into industry according to their primary business focus [4]. Each stock is not only characterized by its price but also by many others variable. Dealing with all these variables and determine the result its required deeper kind of study. So, it could show the behavior of a stock over time. The main variables are shown in the table below [5][6]. Table 1 Stock Variables Variable Description Price Current price of a stock Opening Price Opening price of a stock on specific trading day Closing Price Closing price of a stock on specific trading day Volume Transactions Volume (buy / sell) Change Percentile Opening and Closing stock value difference Change (U) Percentile opening and closing stock value difference 1.1 Temporal Data Mining Temporal data mining is concerned with data mining of large sequential data sets. By sequential data, it means data that is ordered with respect to some index. It provides some additional capabilities required in cases where the evaluation of the existing data and their interactions need to be observed through the time dimension [7]. 1.2 Time Series Order sequence of data point is a time Series. It is measured at successive times spaced at uniform time intervals. A large amount of data is collected everyday in the form of event time sequences. These sequences represent valuable sources of information not only to search for a particular value or event at a specific time, but also to analyze the frequency of certain events, discover their regularity, or discover set of events related by particular temporal relationships [9]. 2. THE PRINCIPLE OF THE APRIORI ALGORITHM. Apriori method is the common approaches to mining frequent patterns. In apriori algorithm support is the fraction of entities which consumed the itemsets in any of their possible transaction. After identifying the large itemsets the itemsets with support greater than the minimum support allowed, they are translated to an integer and each sequence is transformed in a new sequence whose elements are the large itemsets of the previous-one. The next step is to find the large sequences. For achieve this, the algorithm acts iteratively as apriori: first it generates the candidate sequences and then it chooses the large sequences from the candidate ones, until there are no candidates. An effective algorithm to discover association rules is the apriori.
  • 3. Hitesh R. Raval and Dr. Vikram Kaushik http://www.iaeme.com/IJCET/index.asp 22 editor@iaeme.com Adapting this method to deal with temporal information leads to some different approaches. Common sub-sequences can be used to derive association rules with predictive value, as is done, for instance, in the analysis of multi-dimensional time series [9][14]. A possible approach consists on extending the notion of a typical rule X → Y (which states if X occurs then Y occurs) to be a rule with a new meaning: X →T Y (which states: if X occurs then Y will occur within time T). In order to discover these rules, it is necessary to search for them in a restrict portion of time, since they may occur repeatedly at specific time instants but on a little portion of the global time considered. A method to discover such rules is applying an algorithm similar to the apriori, and after having the set of traditional rules, detects the cycles behind the rules [14]. Definition 1: The support of an item (or set of items) is the numbers of transactions in which that item (or items) occur. Given a set of transactions in a database where each letter corresponds to a certain product such as Jeans or T-shirt and each transaction corresponds to a customer buying the products A, B, C or D the first step in the apriori algorithm is to count the support (number of occurrences) of each item separately. Table 2 Transaction Items Transaction Items T1 A, B, C, D T2 B, C, D T3 B, C T4 A, B, D T5 A, B, C, D T6 B, D Table 3 Number of Transactions for Items Item Support A 3 B 6 C 4 D 5 The items in the transactions represented in Table 2 have their support represented in Table 3. Definition 2: The support threshold is defined by the user and is a number for which the support for each item (or items) has to be equal or above for the support threshold to be fulfilled [13, 14] In this example we will use support threshold = 3. This means all items in Table 3 meets this condition since none of them have a support below 2 as seen in Table 3. Definition 3: Given a set of items I = {I1 I2 … In} an item set is a subset of I [14]. Definition 4: A large item set is an item set whose numbers of occurrences in the transactions is above the support threshold. Here use the notation L to indicate the complete set of large item sets [14].
  • 4. Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data http://www.iaeme.com/IJCET/index.asp 23 editor@iaeme.com In example the complete set of large itemset L in this first iteration is L = {A, B, C, D} since all of these terms meets the support threshold. If any of these items had been below the support threshold they had not been included in the subsequent steps. In the next steps will form all pairs, triples and so on of the items in Table 3. If A would have a support threshold below three all pairs, triples etc containing A would also be below the support threshold. This is the fundamental basis of the apriori algorithm since it allows us to prune all transactions having only items under the support threshold, hence reducing the amount of data in each step. The next step is to form all 2-pair item sets. Can do this by making all possible combinations of the large item sets without regarding the order. Table 4 Transaction Items Together Item Support A,B 3 A,C 2 A,D 3 B,C 4 B,D 5 C,D 3 Table 5 Large Itemsets Large Itemsets A,B A,D B,C B,D C,D In Table 4 the new itemsets are illustrated together with respective support. The item set A, C only have support 2 and since our support threshold is 3 the item set is not a large item set. Next generate the 3-sets by joining the full set of large item sets in Table 5 over a common item. Table 6 Combination of Three sets Item Support A,B,C 2 A,C,D 2 A,B,D 3 B,C,D 3 Table 7 Large Itemsets in Three set Combation Large Itemsets A,B,C B,C,D
  • 5. Hitesh R. Raval and Dr. Vikram Kaushik http://www.iaeme.com/IJCET/index.asp 24 editor@iaeme.com The only 3-set that fulfills the support threshold is {A, B, D} and {B, C, D} as illustrated in Table 7. If continue this process by joining the item sets in the complete large item set over a common pair user get the last possible combination. Table 8 Four set Combination Item Support A,B,C,D 2 Figure 1 Illustration of the possible combinations of the A, B, C, D without regarding the order in the apriori algorithm. The process of joining terms in the apriori algorithm is illustrated in Figure 1. Note that the position of item in the itemsets doesn’t matter. i.e. the item set {A, B, D} is regarded in the same way as {D, A, B} and to keep track of this don’t get any redundancies later in the implementation all items in each item set is ordered by its value. The apriori algorithm cuts some of the branches in the tree in Figure 1, for example the item set {A,C} did only occur 2 times which was below the support threshold at 3. The apriori algorithm makes use of this by not generating any branches from this node and thus reduces the computational cost. This is as said the foundation of the apriori algorithm [9]. 2. 1. Algorithm 1. Apriori algorithm [15] Input: I //Itemsets D //Transactions S //support threshold Output: L // large itemsets Apriori algorithm k = 0 // k is used as the scan number L = Ø
  • 6. Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data http://www.iaeme.com/IJCET/index.asp 25 editor@iaeme.com C1 = I //Initial candidates are set to be the items Repeat k = k + 1 Lk = Ø for each Ii € Ck do ci = 0 //Initial counts for each itemset are 0 for each tj € D do for each Ii € Ck do if Ii € tj then ci = ci + 1 for each Ii € Ck do if ci ≥ s do Lk = Lk U Ii L = L U Lk Ck+1 = aPriori-Gen (Lk) 2.2. Algorithm 2. Apriori-Gen algorithm [14] Input: Li-1 //Large itemsets of size i-1 Output: Ci //Candidates of size i Apriori-Gen algorithm Ci = Ø for each I € Li-1 for each J ≠ I € Li-1 do if i-2 of the elements in I and J are equal then Ck = Ck U {I U J}. 2.1 Impact of the Algorithm Past few years, numbers of studies have been published new algorithms or improvements on existing algorithm to solve frequent itemset mining. Some algorithms require a small amount of memory, but heavy disk access (such as Apriori- like algorithms); others necessitate low I/O activity, but large amount of memory such
  • 7. Hitesh R. Raval and Dr. Vikram Kaushik http://www.iaeme.com/IJCET/index.asp 26 editor@iaeme.com as FP-growth. However, the number of research papers on the inter-transaction mining problem is still few since it is a more challenging problem than intra- transaction mining. 3. PROPOSED WORK Luhr et al. [10] and Tung et al. [11] proposed a framework that can only discover inter-transaction association rules, whereas proposed an approach to mine quantitative intra-transaction association rules. In order to discover quantitative inter-transaction association rules, a new approach is developed to extract rules from single dimensional transaction datasets of stock closing price and traded volume. Investigator proposed framework called ITARM for mining inter-transaction association rules for the dataset that contains constant number of items in each transaction. Investigator approach not only predicts the movement of stock price in either direction with user defined minimum support and confidence value but also predicts the probable variation in stock closing price and traded quantity based on historical data of attributes. The proposed approach employs an effective preprocessing phase as shown in Figure 2 that reduces over all mining time and efficient pruning techniques to eliminate frequent itemsets which are occurring in same transaction and also which are not started with first transaction of each sliding window. ITARM uses FP-tree based algorithm because it requires only two scan of transaction database to construct a tree and uses prefix-tree structure which requires less memory. Figure 2 Process of mining inter-transaction association rules (ITARM) 4. THE PROPOSED ALGORITHM (FP-TREE CONSTRUCTION AND PRUNING) Input: A transaction database D and a minimum support threshold minsup Output: Its frequent pattern tree, FP-tree Method: The FP-tree is constructed in the following steps 1. Scan the transaction database D once. Collect the set of frequent items F and their supports. Sort F in support descending order as L, the list of frequent items. 2. Create the root of an FP-tree, T, and label it as “null”. For each transaction Trans in D do the following. Select and sort the frequent items in Trans according to the order of L. Let the sorted frequent item list in Trans be [p | P], where p is the first element and P is the remaining list. Call insert tree ([p | P], T). The function insert tree ([p | P], T) is performed as follows.
  • 8. Efficient Mining of Fast Frequent Item Set Discovery from Stock Market Data http://www.iaeme.com/IJCET/index.asp 27 editor@iaeme.com If T has a child N such that N.item-name = p.item-name, then increment N’s count by 1; else create a new node N, and let its count be 1, its parent link be linked to T, and its node-link be linked to the nodes with the same item-name via the node-link structure. If P is nonempty, call insert tree (P, N) recursively. 3. Sort (P, size of p). If sorted frequent items has first digit 1 than store itemset in hash table else skip itemset because it is not satisfying inter-transaction criteria. After tree construction over, sort frequent mega-transaction itemsets on their sub window number. If each sorted frequent itemsets has sub window number 1 than store itemset in hash table else skip itemset because it is not satisfying inter-transaction criteria. Step 3 shows modification to current FP-tree algorithm to incorporate frequent inter-transaction mining. Algorithm (FP-growth: Mining frequent inter-transaction patterns with FP-tree by pattern fragment growth and pruning) Input: Constructed FP-tree, using transaction database D and a minimum support threshold minsup Output: The complete set of inter-transaction frequent patterns Method: Call FP-growth (FP-tree, null) Procedure FP-growth (Tree, α) • if Tree contains a single path P • then for each combination (denoted as β) of the nodes in the path P do • generate pattern β ∪ α with support = minimum support of nodes in β; • else for each ai in the header of Tree do { • generate pattern β = ai ∪ α with support = ai.support; • construct β ’s conditional pattern base and then β ’s conditional FP-tree Treeβ; • if Treeβ ≠ Ø • then call FP-growth (Treeβ, β) • if Treeβ has all items starting with ‘1’ • then it confirms intra-transaction rule, Prune such instances else keep 5. RELATED WORK While the amount of data increases gradually, the frequent itemsets of inter- transaction association rule will become larger and larger and hard to handle [12]. At least there is no algorithm available that deals with quantitative inter-transaction association rules. Unfortunately very less work has been done to discover this kind of rules in financial domain and this area is still emerging. 6. CONCLUSION Frequent itemset mining and association rule mining are the two important tasks of data mining. Incorporating utility considerations in data mining tasks is gaining popularity in recent years. In this paper, we are trying to discovering itemsets under all time windows of data streams can be achieved effectively with limited memory space, less candidate itemsets and CPU I/O. This meets the critical requirements of time and space efficiency for mining data streams. In this paper we have taken two most influencing factors - closing price and traded volume of the National Stock Exchange (NSE) India, as company stock price is following movement of higher index based companies for reasonable higher support and confidence. Stock closing
  • 9. Hitesh R. Raval and Dr. Vikram Kaushik http://www.iaeme.com/IJCET/index.asp 28 editor@iaeme.com price, traded volume, business sector, earning numbers, Price Earnings ratio, rumors etc. are some of the factors that influence the stock price. Obviously, all these factors cannot be easily modeled and embedded, since some of them are related with human psychology. Enhanced mechanism that provides better trade-off between main memory and interactive inter-transaction rule. We have considered set boundary for symbolic representation, applying fuzzy logic can provide more accuracy with higher computation complexity. REFERENCES [1] Han, J. and Kambler, M. Data Mining Concepts & Techniques. [2] Agrawal, R., Imielinski, T. and Swai, A. Mining association rules between sets of items in large databases. In Proceedings of 1993 ACM S IGMOD Intl Conf. on Management of Data, Washington, D. C., May 1993. pp 207--216 [3] Bettini, C., Wang, X. S. and Jajodia, S. Testing complex temporal relationships involving multiple granularities its application to data mining. In Proc of the 15th ACM SIGACT-SIGMOD-SIGART Symposium on Principles of Database Systems, June 3–5, 1996, Montreal, Canada, ACM Press, 1996, pp 68–78. [4] Ayn, N. F., Tansel, A. U. and Arun, E. An efficient algorithm to update large itemsets with early pruning Proceedings of the Fifth AC M SIGKDD International Conference on Knowledge Discovery and Data Mining San Diego, August 1999. [5] Marketos, G., Pediaditakis, K., Theodoridis, Y. and Theodoulidis, B. Intelligent Stock Market Assistant Using Temporal Data Mining. [6] Mrs. Mahajan, K. S. and Kulkarni, R. V. Application of Data mining Tools For Stock Market. [7] Antunes, C. M. and Oliveira, A. L. Temporal Data Mining: an overview: Institute Superior Technical, Dep. Engenharia Informatics, Av. Rovisco Pais 1, 1049-001 Lisboa, Portugal, pp 2–15. [8] Cheung, D., Han, J., Ng, V. and Wong, C. Y. Maintenance of Discovered Association Rules in Large Databases: An Incremental Updating Technique. Proc of 1996 Int’l Conf. on Data Engineering, February 1996, pp. 106–114. [9] Soni, S. and Shibu, S. Advance Mining of Temporal High Utility Itemset. I. J. Information Technology and Computer Science, 2012, 4, pp. 26–32. [10] Luhr, S. and Venkatesh, S. An extended frequent pattern tree for inter-transaction association rule mining. Technical Report, 2005. [11] Tung, A. K. H., Lu, H., Han, J. and Feng, L. Breaking the barrier of transactions: Mining inter-transaction association rules. Knowledge Discovery and Data Mining, August 1999, pp 297–301. [12] Dong, J. and Han, M. Ifcia: An efficient algorithm for mining inter-transaction frequent closed itemsets. FSKD’07: In Proceedings of the 4th International Conference on Fuzzy Systems and Knowledge Discovery, August 2007, pp. 678– 682. [13] Argiddi, R. V. and Apte, S. S. An Evolutionary Fragment Mining Approach To Extract Stock Market Behavior For Investment Portfolio International journal of Computer Engineering & Technology, 4(5) 2013, pp. 138–146 [14] Dunham, Margaret H. Data mining: Introductory and advanced topics, 1 edn., Ch 6. Prentice Hall, September 1, 2002, ISBN: 0130888923 [15] www.slideshare.net/Tommy96/Temporal-data-mining-an-overview