Open Access
ARTICLE
Mining High-Quantitative Periodic Frequent Patterns across Multiple Sequences
1 Reading Academy, Nanjing University of Information Science and Technology, Nanjing, China
2 China Unicom (Shandong) Industrial Internet Co., Ltd., Jinan, China
3 School of Artificial Intelligence, Nanjing University of Information Science and Technology, Nanjing, China
* Corresponding Author: Chien-Ming Chen. Email:
Computers, Materials & Continua 2026, 88(2), 38 https://doi.org/10.32604/cmc.2026.077790
Received 17 December 2025; Accepted 17 April 2026; Issue published 15 June 2026
Abstract
Periodic pattern mining plays an important role in revealing recurring behavioral regularities from temporal sequence data. Most existing approaches, however, are developed for single-sequence settings and rarely account for quantitative information or sequence-level constraints when patterns recur across multiple sequences. This limits their usefulness in practical scenarios, where a pattern is expected to be not only periodic but also quantitatively significant in a sufficiently large portion of sequences. In this work, we formulate the problem of mining High-Quantitative Periodic Frequent Patterns (HQPFPS) from multi-sequence databases and propose an efficient algorithm, termed MHQPFPS. The proposed method evaluates pattern significance through a quantitative ratio within each sequence and exploits a sequence-level upper bound to effectively prune unpromising candidates during pattern growth. To support efficient evaluation, a compact list-based structure is introduced to maintain support, periodicity, and quantitative statistics, thereby avoiding repeated scans of the database. These components are combined within a depth-first exploration framework to systematically generate valid patterns while discarding those that fail to satisfy the required periodic or quantitative constraints. Experimental results on both real-world and synthetic datasets show that MHQPFPS is able to extract meaningful high-quantitative periodic patterns across multiple sequences. Moreover, the results indicate that the proposed pruning strategies substantially reduce computational cost in terms of runtime and memory consumption under a wide range of parameter settings.Keywords
Frequent pattern mining (FPM) has long been regarded as a core task in data mining [1,2]. Its original objective is to identify itemsets that occur frequently in transactional databases under a minimum support threshold [3,4]. Over the years, FPM and its variants have been applied across a wide range of domains, including, text mining [5], network flow analysis [6,7], biomedical data analysis [8], malware detection [9,10], and smart city applications [11]. Despite its success, classical FPM treats transactions as unordered collections of items and therefore ignores the temporal order in which events occur. This assumption becomes problematic in applications where the timing and sequence of events carry important semantic meaning.
Sequential pattern mining (SPM) was introduced to address this limitation by explicitly modeling temporal order [12]. By discovering frequent subsequences in ordered transaction data, SPM has found practical use in customer behavior analysis, recommendation systems, and intelligent tutoring environments [13]. Nevertheless, SPM still focuses mainly on frequency and ordering. It does not explicitly consider whether patterns recur in a regular or near-regular manner over time. In many real-world scenarios, however, such temporal regularity is a defining characteristic. Periodic purchasing behaviors or recurring symptom combinations in clinical records are typical examples. Identifying these periodic patterns is often critical for tasks such as marketing analysis, resource planning, and anomaly detection.
To capture temporal regularity, periodic frequent pattern mining (PFPM) has been proposed to identify patterns that recur within bounded time intervals in sequences or transactional databases [14,15]. Most existing PFPM approaches are designed for single-sequence settings, where periodicity is evaluated within one long sequence. This design choice is increasingly restrictive in modern data environments. Internet of Things (IoT) systems and other multi-source platforms generate large collections of sequences, making it necessary to identify periodic patterns that recur consistently across multiple sequences [16,17]. Although several recent studies have begun to address this setting, they typically either ignore the quantitative information associated with item occurrences or fail to identify patterns that are both periodic and quantitatively significant across a large number of sequences.
In many practical applications, quantitative information [18,19] is not merely supplementary, but directly affects how periodic patterns should be interpreted. For example, in retail analytics, consider two items
Although some existing methods incorporate utility-based evaluation [17,19], they rely on absolute utility values that are not normalized with respect to the total quantitative content of each sequence. As a result, it becomes difficult to compare pattern significance across sequences of different lengths or value scales, and the utility threshold may become less consistent in heterogeneous databases. The present work addresses this limitation by introducing a normalized quantitative ratio into the multi-sequence periodic pattern mining framework, so that periodicity, quantitative contribution, and cross-sequence consistency can be considered jointly.
Motivated by these observations, this paper studies the problem of discovering High-Quantitative Periodic Frequent Patterns (HQPFPS) across multiple sequences. The proposed formulation jointly considers periodicity constraints and quantitative contributions and requires that a pattern exhibit both regular recurrence and sufficient quantitative significance in a substantial portion of the sequence database. To efficiently mine such patterns, we propose the MHQPFPS algorithm. The algorithm introduces a quantitative ratio to evaluate pattern contributions within individual sequences, derives a sequence-level upper bound to prune unpromising candidates during pattern growth, and employs a compact HQPFPS-list structure to avoid repeated scans of the original database.
The main contributions of this paper can be summarized as follows:
• We formulate the problem of mining High-Quantitative Periodic Frequent Patterns (HQPFPS) across multiple sequences by jointly considering periodicity constraints and quantitative ratios at both the sequence and database levels.
• We propose the MHQPFPS algorithm, which combines a quantitative ratio measure, a sequence-level upper-bound pruning strategy, and a unified list-based structure that maintains support, periodicity, and quantitative statistics, enabling efficient depth-first exploration of the search space.
• We evaluate the proposed approach on real-world and synthetic datasets to analyze the impact of key parameters on runtime, the number of discovered patterns, and memory usage. The results confirm that MHQPFPS can effectively extract meaningful high-quantitative periodic frequent patterns under various parameter configurations.
The remainder of this paper is organized as follows. Section 2 reviews related work. Section 3 defines the HQPFPS problem. Section 4 presents the MHQPFPS algorithm. Section 5 reports the experimental evaluation. Section 6 concludes the paper and discusses future research directions.
Pattern mining has been studied from multiple perspectives over the past decades, resulting in several research directions that are closely related to the problem considered in this paper. In particular, our work intersects with studies on periodic pattern mining, quantitative and high-utility pattern mining, and pattern discovery across multiple sequences. Existing surveys on frequent and sequential pattern mining provide a broad background for these topics [1–3,5]. In the following, we briefly review the most relevant studies and explain how they relate to the proposed HQPFPS framework.
Periodic pattern mining aims to identify patterns that recur at regular or near-regular intervals in temporal data. Early work introduced the concept of periodic frequent patterns and proposed pruning-based strategies to efficiently discover such patterns in transactional databases [14]. Subsequent studies demonstrated the usefulness of periodic pattern mining in real-world temporal applications, including public transportation analysis and urban mobility modeling [11,15].
While these approaches effectively capture temporal regularity, they are largely designed for single-sequence settings. In most cases, periodicity is evaluated within one long sequence, and the question of whether a pattern exhibits consistent periodic behavior across multiple sequences is not explicitly addressed. Moreover, periodic pattern mining is commonly based on binary item occurrence, without considering quantitative information associated with items. Even studies that extend periodic analysis to multiple sequences [16] typically focus on temporal aspects alone and do not incorporate quantitative constraints. This limits their ability to support applications where both periodicity and quantitative significance are important.
2.2 Quantitative and High-Utility Pattern Mining
Another relevant line of research focuses on mining patterns based on quantitative or utility-based criteria. Early work on quantitative association rules established mechanisms for evaluating item importance using numerical values rather than frequency alone [18]. This direction later evolved into weighted and high-utility pattern mining, enabling the discovery of patterns that reflect contribution or utility instead of pure occurrence counts [19]. More recently, high-utility sequential pattern mining has been explored in uncertain or dynamic environments, illustrating the flexibility of quantitative evaluation in sequential data analysis [13].
Despite their effectiveness, quantitative and high-utility approaches typically do not consider temporal periodicity. Patterns are evaluated mainly from the perspective of contribution or importance, and sequences are often processed independently. As a result, these methods cannot ensure that a pattern is both quantitatively significant and periodically recurrent across multiple sequences, which is a key requirement in many real-world scenarios.
2.3 Multi-Sequence and Cross-Sequence Pattern Mining
Pattern discovery across multiple sequences has also received increasing attention. Methods in this category aim to identify patterns that occur in a sufficient number of sequences, thereby capturing population-level or system-level behaviors. Representative examples include studies on correlated periodic patterns in multiple sequences [16] and approaches that combine periodicity with utility measures in multi-sequence settings [17]. These works move beyond single-sequence analysis and highlight the importance of cross-sequence consistency.
Despite these advances, the proposed MHQPFPS algorithm differs from the two most closely related methods, MRCPPS [16] and MHUPFPS [17], in several important aspects. MRCPPS focuses on correlated periodic pattern mining over multiple sequences, but it does not take into account the quantitative contribution of patterns, since pattern significance is evaluated mainly from occurrence information and correlation. MHUPFPS extends periodic pattern mining to the high-utility setting, but it uses absolute utility values rather than a normalized measure. Therefore, pattern significance may be difficult to compare directly across sequences with different lengths or quantitative scales. In contrast, MHQPFPS evaluates each pattern by a normalized quantitative ratio bounded in
Overall, these differences indicate that existing multi-sequence studies only partially cover the problem addressed in this work, which motivates the summary and gap analysis presented next.
Table 1 summarizes the main distinctions between MHQPFPS and the most closely related methods from five aspects: support for multiple sequences, periodicity consideration, quantitative measure, period stability constraint, and upper-bound-based pruning.

As shown in Table 1, existing studies cover only part of the problem addressed in this work. Some methods model periodicity, whereas others emphasize quantitative importance or cross-sequence behavior. However, these aspects are usually considered separately rather than within a unified mining framework. As a result, prior studies do not jointly address periodic recurrence within each sequence, quantitative contribution in a normalized form, and consistency across multiple sequences in the frequent-pattern setting considered here.
These observations motivate the present study. Accordingly, this work formulates the problem of discovering High-Quantitative Periodic Frequent Patterns across multiple sequences, where periodicity, quantitative contribution, and cross-sequence consistency are considered jointly. To solve this problem efficiently, we further develop an algorithmic framework based on HQPFPS-list and upper-bound-guided pruning.
3 Definitions and Problem Statement
This section introduces the notation and fundamental concepts used throughout this paper and formally defines the problem of mining High-Quantitative Periodic Frequent Patterns (HQPFPS) from a multi-sequence database. Table 2 summarizes the main symbols, including computed quantities, structural components, and user-specified thresholds, used throughout this paper.

Definition 1 (Basic Concepts): Let
Definition 2 (Occurrences and Support): For an itemset
denote the ordered list of 1-based transaction indices at which
Definition 3 (Support Ratio): The support ratio of an itemset
where
Definition 4 (Period and Maximum Period): Let
• Initial boundary period:
• Inter-occurrence periods:
• Final boundary period:
If
Definition 5 (Period Standard Deviation): Given the set of periods
where
Definition 6 (Quantitative Values): Each item
and the quantitative value of a sequence
Definition 7 (Quantitative Ratio): The quantitative contribution of an itemset
The total quantitative contribution of
The quantitative ratio of
For two disjoint itemsets
1. Transaction level:
2. Sequence level:
Note that
It is worth noting that the proposed quantitative ratio is not intended to redefine the concept of utility, but rather to provide a normalized quantitative measure tailored to multi-sequence periodic pattern mining. In contrast to traditional utility metrics based on absolute values,
The choice of
(1) Bounded range. Since the total contribution of any pattern in a sequence cannot exceed the total quantitative value of that sequence, we have
(2) Cross-sequence comparability. Normalizing by
(3) Consistency with upper-bound analysis. As shown in Definition 7, the quantitative contribution satisfies the additive property
Definition 8 (HQPFP in a Single Sequence): Given user-specified thresholds
1.
2.
3.
4.
Let
denote the set of sequences in which
Definition 9 (HQPFPS across Multiple Sequences): The high-quantitative periodic sequence ratio of a pattern
Given a threshold
Problem 1: Given a sequence database
The collection of all such patterns constitutes the complete set of HQPFPS in
Example 1: Fig. 1 illustrates a sequence database consisting of four sequences
we consider the pattern

Figure 1: An example illustrating HQPFP and HQPFPS evaluation.
In sequence
In
Similarly, in
Consequently,
Since
High-Quantitative Periodic Frequent Patterns across Sequences, abbreviated as HQPFPS, refer to patterns that jointly satisfy support-ratio, periodicity, period-stability, quantitative-contribution, and cross-sequence-consistency constraints. Efficiently mining HQPFPS from a multi-sequence database therefore requires a carefully designed search strategy that combines effective pruning with compact data representation. In this section, we present the MHQPFPS algorithm, which integrates a depth-first pattern-growth framework, an upper-bound pruning strategy derived from anti-monotonic properties, and an HQPFPS-list structure that maintains detailed occurrence and quantitative information for candidate patterns across sequences.
4.1 Overview of the Mining Strategy
MHQPFPS follows a depth-first pattern-growth strategy, similar to classical prefix-based mining frameworks. The mining process starts from all single-item patterns and recursively extends a current prefix pattern
A key observation underlying the pruning strategy is the anti-monotonicity of the support ratio defined in Section 3. Specifically, for any two patterns
This property implies that, as a pattern is extended, its ability to satisfy support-related and periodicity-related constraints cannot improve. Based on this observation, an upper bound on the achievable cross-sequence ratio of any pattern extension can be derived, which enables the algorithm to prune unpromising branches early and significantly reduce the search space.
4.2 Upper-Bound Pruning Based on Anti-Monotonicity
Definition 10 (Candidate Sequence Set): For a pattern
Remark: Only
Definition 11 (Upper-Bound Sequence Ratio): The upper bound on the high-quantitative periodic sequence ratio achievable by a pattern
Lemma 1 (Anti-Monotonicity Properties): For any two patterns
1.
2.
Proof: (1) Since
(2) As
Theorem 1 (Safe Upper Bound): For any pattern extension
where
Proof: By Lemma 1, for any sequence
Hence, any sequence that can satisfy both
Dividing both sides by
Corollary 1 (Pruning Condition): If
then for any extension
In this case, the entire search branch rooted at pattern


To efficiently evaluate candidate patterns across multiple sequences, MHQPFPS employs a vertical representation structure referred to as the HQPFPS-list. This structure is designed to compactly maintain all information required for computing support, periodicity, and quantitative measures, thereby avoiding repeated scans of the original database.
For a pattern
• sid: the identifier of sequence
• tran-list: the list
• q-list: the quantitative contributions
•
•
•
•
For a pattern
All entries in
Based on the pruning strategy and the HQPFPS-list structure introduced above, the MHQPFPS algorithm enumerates all High-Quantitative Periodic Frequent Patterns from a multi-sequence database. The overall procedure is outlined in Algorithm 3.

Given a database
A 1-itemset

The DFS-SEARCH procedure follows a depth-first pattern-growth strategy. Given a current prefix pattern
From
Algorithm 2 details the construction of
Finally, the procedure HQPFP-Check (Algorithm 4) counts the number of sequences in which a pattern satisfies all single-sequence constraints using
This section evaluates the performance and effectiveness of the proposed MHQPFPS algorithm. The experimental study focuses on three aspects that are critical for pattern mining algorithms: (1) runtime efficiency, (2) the number of discovered patterns, and (3) memory consumption. To better understand the behavior of the proposed method, the experiments include both parameter-based analysis and comparisons with reduced variants of MHQPFPS, which help illustrate the effect of its main components on efficiency and output behavior. All experiments are conducted under varying settings of
All experiments were carried out in a Python 3 environment using PyCharm on a MacBook Air running macOS, equipped with an Apple M4 processor and 16 GB of unified memory. The MHQPFPS algorithm was implemented in a single-threaded manner to provide a fair and controlled evaluation of its computational characteristics.
Four datasets were used in the experimental study, including three real-world datasets—FIFA, Bike, and Leviathan—and one synthetic dataset, T23L68KD15K. All datasets were obtained from the SPMF Library. The real-world datasets represent typical application scenarios of sequential and periodic pattern mining, while the synthetic dataset allows controlled adjustment of data characteristics, facilitating a systematic evaluation of algorithm behavior under different conditions.
The primary goal of the experiments is to investigate how the parameters
To provide a reference point for comparison, a baseline configuration is defined using relatively loose thresholds, allowing a large number of high-quantitative periodic patterns to be generated:
5.2 Influence of minSupRa and minSeqRa
Runtime: Fig. 2 reports the runtime of MHQPFPS under different combinations of

Figure 2: Runtime of MHQPFPS under different minSupRa and minSeqRa settings. The results show that runtime generally decreases as the thresholds become stricter, indicating that stronger support-based and cross-sequence constraints help reduce the search space.
This behavior is most pronounced on the Bike and T23L68KD15K datasets, where the runtime curves decrease monotonically with
For example, on the FIFA dataset, setting
Number of patterns: Fig. 3 illustrates how the number of discovered HQPFPS varies with

Figure 3: Number of discovered HQPFPS under different minSupRa and minSeqRa settings. The results show that increasing either threshold reduces the number of valid patterns, reflecting the stronger filtering effect of support and cross-sequence constraints.
A similar trend is observed on the Bike dataset: raising
Memory usage: Fig. 4 shows the memory consumption of MHQPFPS under different parameter configurations. On the FIFA dataset, memory usage under the baseline setting

Figure 4: Memory consumption of MHQPFPS under different minSupRa and minSeqRa settings on different datasets. The results indicate that memory usage generally decreases as the search space becomes smaller, with minSupRa showing a stronger influence than minSeqRa.
For the synthetic T23L68KD15K dataset, the influence of
Overall, these results indicate that
To isolate the effect of the main components of MHQPFPS, we compare the full method with two reduced variants: MHQPFPS-noUB, which disables the upper-bound pruning condition while keeping all other components unchanged, and MHQPFPS-noQ, which removes the quantitative ratio constraint
Fig. 5 reports the runtime comparison. MHQPFPS consistently runs faster than MHQPFPS-noUB across all datasets. The speedup is most pronounced on Leviathan, where MHQPFPS-noUB maintains a near-constant runtime of approximately

Figure 5: Runtime comparison of MHQPFPS and its reduced variants under different minSupRa settings. The results show that removing the upper-bound pruning strategy leads to a substantial increase in runtime, demonstrating its effectiveness in improving efficiency.
Fig. 6 shows the number of discovered patterns. Across all datasets and parameter settings, MHQPFPS and MHQPFPS-noUB discover exactly the same pattern set, which empirically supports the correctness of the pruning strategy. MHQPFPS-noQ consistently discovers more patterns than the full MHQPFPS, since it retains periodically frequent patterns regardless of quantitative contribution. On FIFA, MHQPFPS-noQ returns up to

Figure 6: Number of discovered patterns for MHQPFPS and its reduced variants under different minSupRa settings. The results show that disabling the quantitative ratio constraint produces more patterns, whereas removing upper-bound pruning does not change the discovered pattern set.
Fig. 7 shows memory consumption. MHQPFPS-noUB generally uses more memory than MHQPFPS on most datasets, since the absence of pruning forces the algorithm to maintain a larger number of active HQPFPS-list simultaneously. An exception is observed on FIFA at minSupRa

Figure 7: Memory consumption of MHQPFPS and its reduced variants under different minSupRa settings. The results indicate that the upper-bound pruning strategy generally reduces memory usage by limiting the number of active candidate lists maintained during the search.
5.4 Sensitivity Analysis of maxStd and minHqRa
To examine the influence of the two threshold parameters maxStd and minHqRa, Figs. 8 and 9 report the sensitivity of MHQPFPS to these two parameters, respectively, with all other parameters fixed at minSupRa

Figure 8: Sensitivity of MHQPFPS to maxStd in terms of runtime (top row) and number of discovered patterns (bottom row) across four datasets: (a) T23L68KD15K, (b) FIFA, (c) Bike, and (d) Leviathan. The results show that increasing maxStd mainly affects the number of valid patterns, while its influence on runtime remains limited.

Figure 9: Sensitivity of MHQPFPS to minHqRa in terms of runtime (top row) and number of discovered patterns (bottom row) across four datasets: (a) T23L68KD15K, (b) FIFA, (c) Bike, and (d) Leviathan. The results show that increasing minHqRa significantly reduces the number of discovered patterns, while runtime remains relatively stable.
Runtime. Across both parameters and all four datasets, runtime shows no clear monotonic trend and varies only within a narrow range. This behavior is consistent with the algorithm design: the upper-bound pruning condition depends only on supRa and maxPer, which are anti-monotonic, whereas maxStd and minHqRa affect only the final HQPFP verification step and do not alter the candidate search space explored during DFS.
Pattern count. For maxStd (Fig. 8), FIFA and Leviathan exhibit a clear increase in pattern count followed by saturation. On FIFA, the count rises from
For minHqRa (Fig. 9), FIFA and Leviathan exhibit a sharp decline in pattern count. On FIFA, the pattern count drops from
Bike remains insensitive to both parameters across all tested values, reflecting that its patterns inherently exhibit low period variance and high quantitative contribution. T23L68KD15K yields no patterns under the experimental configuration, consistent with the results reported in Figs. 3 and 6.
Overall, these results show that maxStd and minHqRa mainly act as quality-filtering thresholds whose influence on the output is data-dependent, while their effect on runtime remains limited.
5.5 Sensitivity to Quantitative Value Distribution
To examine the sensitivity of MHQPFPS to quantitative values, we conduct a controlled experiment on T23L68KD15K by replacing all item quantities with values drawn from three distributions while preserving the original sequence structure: (A) Uniform
Fig. 10 shows the number of discovered patterns under each distribution. Under the long-tail distribution, the pattern count drops sharply at low

Figure 10: Number of discovered patterns under different minHqRa settings for three quantitative value distributions. The results show that the distribution of quantitative values has a clear effect on pattern discovery, with the long-tail setting producing a sharper decline as minHqRa increases.
Fig. 11 shows that runtime remains relatively stable across all three distributions and all tested

Figure 11: Runtime under different minHqRa settings for three quantitative value distributions. The results show that runtime remains relatively stable across the tested distributions, although the number of discovered patterns varies substantially.
These results indicate that MHQPFPS is sensitive to the distribution of quantitative values mainly through its effect on
This work investigated the problem of mining High-Quantitative Periodic Frequent Patterns in multi-sequence databases, moving beyond the traditional focus on periodicity within a single sequence. By jointly modeling support ratio, periodic regularity, quantitative contribution, and cross-sequence consistency, we provided a unified definition of HQPFPS that better reflects the characteristics of real-world sequential data. To efficiently solve this problem, we designed the MHQPFPS algorithm, which combines a compact HQPFPS-list structure with a depth-first pattern-growth strategy and an anti-monotonic upper-bound pruning mechanism. This design enables effective candidate evaluation while avoiding repeated scans of the database.
Experimental results on both real-world and synthetic datasets show that the proposed approach is efficient and robust under a wide range of parameter settings. In particular,
Several directions remain for future research. One promising extension is to investigate adaptive or data-driven strategies for automatically selecting threshold parameters. In addition, the HQPFPS-list structure could be further optimized to reduce memory overhead, and parallel or distributed implementations could be explored to improve scalability on large-scale datasets. Finally, extending the proposed framework to uncertain, weighted, or multidimensional sequence databases would further broaden the applicability of high-quantitative periodic pattern mining in practical settings.
Acknowledgement: Not applicaple.
Funding Statement: This research was funded by the Startup Foundation for Introducing Talent of NUIST, China and the Natural Science Foundation of Shandong Province, China (Grant no. ZR2022MF298).
Author Contributions: The authors confirm contribution to the paper as follows: study conception and design: Yan Ge, Zhenzhou Zhang, Chien-Ming Chen; analysis and interpretation of results: Yan Ge, Zhenzhou Zhang; draft manuscript preparation: Yan Ge, Zhenzhou Zhang, Chien-Ming Chen. All authors reviewed and approved the final version of the manuscript.
Availability of Data and Materials:: Not applicable.
Ethics Approval:: Not applicable.
Conflicts of Interest:: The authors declare no conflicts of interest.
References
1. Chen MS, Han J, Yu PS. Data mining: an overview from a database perspective. IEEE Trans Knowl Data Eng. 2002;8(6):866–83. doi:10.1109/69.553155. [Google Scholar] [CrossRef]
2. Bramer M. Principles of data mining. London, UK: Springer; 2007. [Google Scholar]
3. Han J, Cheng H, Xin D, Yan X. Frequent pattern mining: current status and future directions. Data Min Knowl Discov. 2007;15(1):55–86. doi:10.1007/s10618-006-0059-1. [Google Scholar] [CrossRef]
4. Chen J, Yang S, Gao T, Ying Y, Li T, Li P. Multi-type concept drift detection under a dual-layer variable sliding window in frequent pattern mining with cloud computing. J Cloud Comput. 2024;13(1):40. doi: 10.1186/s13677-023-00566-9. [Google Scholar] [CrossRef]
5. Zhong N, Li Y, Wu ST. Effective pattern discovery for text mining. IEEE Trans Knowl Data Eng. 2010;24(1):30–44. doi:10.1109/tkde.2010.211. [Google Scholar] [CrossRef]
6. Li X, Deng ZH. Mining frequent patterns from network flows for monitoring network. Expert Syst Appl. 2010;37(12):8850–60. doi:10.1016/j.eswa.2010.06.012. [Google Scholar] [CrossRef]
7. Liu YC, Lee LF, Yeh KH. Enhancing UAV security with GPS spoofing and jamming anomaly detection. J Reliab Secur Comput. 2025;1(1):54–67. [Google Scholar]
8. Henriques R, Madeira SC. BicPAM: pattern-based biclustering for biomedical data analysis. Algorithms Mol Biol. 2014;9(1):27. [Google Scholar]
9. Hellal A, Romdhane LB. Minimal contrast frequent pattern mining for malware detection. Comput Secur. 2016;62:19–32. [Google Scholar]
10. Gan W, Chen L, Wan S, Chen J, Chen CM. Anomaly rule detection in sequence data. IEEE Trans Knowl Data Eng. 2023;35(12):12095–108. doi:10.1109/tkde.2021.3139086. [Google Scholar] [CrossRef]
11. Ma C, Vu HQ, Wang J, Trieu VH, Li G. Understanding residents’ behavior for smart city management by sequential and periodic pattern mining. IEEE Trans Comput Soc Syst. 2023;11(1):1260–76. doi:10.1109/tcss.2023.3249740. [Google Scholar] [CrossRef]
12. Ayres J, Flannick J, Gehrke J, Yiu T. Sequential pattern mining using a bitmap representation. In: Proceedings of the Eighth ACM SIGKDD International Conference on Knowledge Discovery and Data Mining; 2002 Jul 23–26; Edmonton, AB, Canada. p. 429–35. [Google Scholar]
13. Li G, Xiang J, Fang W, Wang J, Shang T. HUPSP-LAL: efficiently mining utility-driven sequential patterns in uncertain sequences. Expert Syst Appl. 2025;270:126536. [Google Scholar]
14. Tanbeer SK, Ahmed CF, Jeong BS, Lee YK. Discovering periodic-frequent patterns in transactional databases. In: Pacific-Asia Conference on Knowledge Discovery and Data Mining. Berlin/Heidelberg, Germany: Springer; 2009. p. 242–53. [Google Scholar]
15. Jiang Z, Tang Y, Gu J, Zhang Z, Liu W. Discovering periodic frequent travel patterns of individual metro passengers considering different time granularities and station attributes. Int J Transp Sci Technol. 2024;14(4):12–26. doi:10.1016/j.ijtst.2023.03.003. [Google Scholar] [CrossRef]
16. Fournier-Viger P, Yang P, Li Z, Lin JCW, Kiran RU. Discovering rare correlated periodic patterns in multiple sequences. Data Knowl Eng. 2020;126:101733. [Google Scholar]
17. Chien-Ming C, Zhang Z, Wu J, Lakshmanna K. High utility periodic frequent pattern mining in multiple sequences. Comput Model Eng Sci. 2023;137(1):733. doi:10.32604/cmes.2023.027463. [Google Scholar] [CrossRef]
18. Hong TP, Kuo CS, Chi SC. Mining association rules from quantitative data. Intell Data Anal. 1999;3(5):363–76. doi:10.3233/ida-1999-3504. [Google Scholar] [CrossRef]
19. Nguyen H, Le N, Bui H, Le T. Mining frequent weighted utility patterns with dynamic weighted items from quantitative databases. Appl Intell. 2023;53(16):19629–46. doi:10.1007/s10489-023-04554-z. [Google Scholar] [CrossRef]
Cite This Article
Copyright © 2026 The Author(s). Published by Tech Science Press.This work is licensed under a Creative Commons Attribution 4.0 International License , which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.


Submit a Paper
Propose a Special lssue
View Full Text
Download PDF
Downloads
Citation Tools