Skip to main content

Query-constraint-based mining of association rules for exploratory analysis of clinical datasets in the National Sleep Research Resource

Abstract

Background

Association Rule Mining (ARM) has been widely used by biomedical researchers to perform exploratory data analysis and uncover potential relationships among variables in biomedical datasets. However, when biomedical datasets are high-dimensional, performing ARM on such datasets will yield a large number of rules, many of which may be uninteresting. Especially for imbalanced datasets, performing ARM directly would result in uninteresting rules that are dominated by certain variables that capture general characteristics.

Methods

We introduce a query-constraint-based ARM (QARM) approach for exploratory analysis of multiple, diverse clinical datasets in the National Sleep Research Resource (NSRR). QARM enables rule mining on a subset of data items satisfying a query constraint. We first perform a series of data-preprocessing steps including variable selection, merging semantically similar variables, combining multiple-visit data, and data transformation. We use Top-k Non-Redundant (TNR) ARM algorithm to generate association rules. Then we remove general and subsumed rules so that unique and non-redundant rules are resulted for a particular query constraint.

Results

Applying QARM on five datasets from NSRR obtained a total of 2517 association rules with a minimum confidence of 60% (using top 100 rules for each query constraint). The results show that merging similar variables could avoid uninteresting rules. Also, removing general and subsumed rules resulted in a more concise and interesting set of rules.

Conclusions

QARM shows the potential to support exploratory analysis of large biomedical datasets. It is also shown as a useful method to reduce the number of uninteresting association rules generated from imbalanced datasets. A preliminary literature-based analysis showed that some association rules have supporting evidence from biomedical literature, while others without literature-based evidence may serve as the candidates for new hypotheses to explore and investigate. Together with literature-based evidence, the association rules mined over the NSRR clinical datasets may be used to support clinical decisions for sleep-related problems.

Background

Biomedical and clinical data has been generated at an unprecedented speed and scale [1, 2], providing researchers with significant opportunities for data-driven knowledge discovery in biomedicine [3]. The National Sleep Research Resource (NSRR) is one of such data repositories freely available to the sleep research community [4]. It aggregates and shares sleep-related clinical data as well as physiological signals generated from clinical trials and epidemiological cohort studies funded by the U.S. National Institutes of Health. Proper use of repositories like NSRR could aid in informed decision making and improve patient safety [2]. From a research perspective, they could be used in knowledge discovery to facilitate rapid generation or testing of hypotheses.

Association Rule Mining (ARM) is an exploratory data mining technique that has shown great potential in the biomedical domain for knowledge discovery. It is used extensively to find associations among variables that satisfy some predefined interestingness parameters. A potential issue of ARM, especially when directly used in large biomedical datasets, is that it will result in many uninteresting rules. For instance, demographic features of patients (e.g., gender and race) always appear in biomedical datasets, which may result in an overwhelming number of gender-related association rules with high support and confidence, which are dominant but less interesting. Another potential challenge of performing ARM in biomedical datasets is the existence of semantically similar variables. Rules containing such similar variables are of less interest because these variables capture similar or same characteristics. Therefore, it is often needed to apply certain techniques which address these issues and filter out those uninteresting rules.

In this paper, we introduce QARM, a query-constraint-based ARM method where the rules mined are based on a subset of data satisfying a certain query constraint. For example, if the criteria is “patients who have had a stroke”, then the generation of association rules will be only based on the subset of patients who have had a stroke, thus the rules obtained will be more relevant to the criteria of interest. Such query-constraint-based ARM empowers biomedical researchers to perform exploratory data analysis in large biomedical data repositories and generate or test potential hypotheses.

National Sleep Research Resource (NSRR)

Launched in 2014, NSRR provides free access in a web-based portal to large collections of de-identified physiological signals and clinical data elements (or variables) collected in well-characterized cohorts and clinical trials to support research on risk factors and outcomes of sleep disorders [5]. Each de-identified patient record of NSRR contains clinical data elements including demographic information (e.g., age, gender, race), anthropometric parameters (e.g., height, weight), physiologic measurements (e.g., heart rate), medical history (e.g., asthma, cancer, diabetes, stroke), medications (e.g., anti-coagulant, benzodiazepine), sleep symptoms (e.g., problems falling asleep), and other symptoms (e.g., chronic cough) [4].

For each dataset in NSRR, the clinical data as well as the data dictionary are stored in comma-separated values (CSV) files. Here the data dictionary contains the metadata of the clinical data (e.g., data type, value domains). Since the NSRR datasets are collected from different sleep-related studies, there are both common and disparate data elements across diverse datasets. The common data elements are maintained in a Canonical Data Dictionary (CDD), and mappings are provided between the CDD elements and the data elements in each individual dataset. We refer to common data elements in the CDD as canonical variables and data elements in each individual dataset as dataset variables, respectively.

In this work, we use five datasets from NSRR: Cleveland Family Study (CFS), Childhood Adenotonsillectomy Trial (CHAT), Hispanic Community Health Study/Study of Latinos (HCHS/SOL), Heart Biomarker Evaluation in Apnea Treatment (HeartBEAT), and Sleep Heart Health Study (SHHS). The five datasets were chosen based on the availability of sufficient number of dataset variables mapping to canonical variables. More details about these datasets can be found in Table 1.

Table 1 Five NSRR datasets used in this work: CFS, CHAT, HCHS/SOL, HeartBEAT, and SHHS

Dataset variables in NSRR are typically imbalanced [6]. For example, the variable stroke15 (MD Reported Stroke) in the SHHS dataset has two possible values: “yes” and “no”, with a distribution of 3.3 and 96.7% respectively (i.e., an imbalance rate [6] of 3.3%). In the SHHS dataset, the average imbalance rate of variables with yes/no values is 5.16% (see Table 2).

Table 2 The number of canonical variables used in each dataset, number of dataset variables to which the canonical variables map, average imbalance rate of dataset variables, and number of association rules obtained

Association Rule Mining (ARM)

Association rules can be formally defined as follows [3, 79]. Let D={t1,t2,....,tn} be a set of transactions and I={i1,i2,....,im} be a set of items. Each transaction ti in D contains a subset of the items in I, that is, tiI. In association analysis, subsets of I are called itemsets. An association rule is defined as an implication of the form XY, where X,YI are two itemsets and XY=. X and Y are called antecedent and consequent, respectively.

The strength of an association rule XY can be measured by Support (the proportion of transactions that contain both X and Y) and Confidence (the proportion of the transactions that contains X which also contains Y). Rules that satisfy the user-specified minimum support (minsup) and minimum confidence (minconf) thresholds are called strong association rules. They are the key elements obtained from an analysis of all possible rules [3].

There are various algorithms introduced for ARM [10, 11]. In this work we leverage the top-k non-redundant association rule mining algorithm [12].

Top-k Non-Redundant (TNR) ARM Algorithm

Choosing suitable values for parameters minsupp and minconf may be done by trial which is time-consuming. In some cases, users may have limited resources to analyze the obtained rules and hence are only interested in finding a certain amount of rules (e.g. top-k rules). Fournier-viger et al. [12] introduced the top-k algorithm to address the problem of difficulty in selecting suitable values for parameters minsupp and minconf. In our query-constraint-based ARM, fine-tuning minsup and minconf parameters for each query constraint would be a difficult task, thus we choose top-k rules for exploratory analysis.

Fournier-viger et al. [13] later introduced the TNR algorithm to address the redundancy issues existing in the original top-k algorithm. The TNR algorithm takes k (the number of association rules to be found), minconf and Δ (exactness improving parameter) as parameters, and approximates top-k rules with the top support having a confidence above the minconf threshold. The algorithm shows good performance and scalability, and in situations where the user wants to control the number of rules obtained, it is an advantageous alternative to classical ARM algorithms.

Related work

ARM has been widely used in biomedical domains to facilitate knowledge discovery and disease prediction. For example, Hu et al. [14] have introduced a semantic-based ARM method to discover hidden connections among biomedical concepts from disjoint biomedical literature sets. The discovered novel relations could be used by domain experts for purposes such as conducting new experiments, trying new treatments etc. Wang et al. [3] have described preliminary results of applying ARM techniques to University of Calgary Atlas of mammograms. They have proposed a new breast mass classification method based on quantitative ARM. Agrawal et al. [15] have done an ARM analysis on lung cancer data from the Surveillance, Epidemiology, and End Results (SEER) program to identify hotspots in the cancer data. These hotspots are where the patient survival time is significantly higher and lower than the average survival time. Ordonez et al. [9] have introduced an ARM method that uses search constraints to reduce the number of rules. It searches for association rules on a training set and then validates them on an independent test set. They have used this approach to predict heart diseases.

While ARM has been widely applied for knowledge discovery in biomedicine, query-constraint-based ARM which performs ARM on a subset of patients, has not been well investigated. This approach combines information retrieval with ARM, which would help biomedical researchers to perform exploratory analysis of datasets using query constraints.

Methods

In this work, we introduce QARM, a query-constraint-based ARM method for exploratory analysis of biomedical datasets. First a series of data pre-processing steps are performed including variable selection, variable merging, combining multiple-visit data, and query-constraint-based data transformation. Then the top-k non-redundant ARM algorithm is used to mine association rules based on different query criteria on the five datasets in NSRR. Two post-processing steps are taken for removing general rules and subsumed rules.

Variable selection

Each variable in NSRR datasets has a type (e.g., categorical, numerical). Each categorical variable has a domain defining the possible values of the variable. For example, in the SHHS dataset, prev_hx_stroke (previous history of stroke) is a categorical variable having a domain of which the possible values consist of “yes” and “no”; and the categorical variable fstk_type (type of fatal stroke) has a domain with possible values “hemorrhagic”, “intracerebral-hemorrhage”, “ischemic”, “isch-unknown”, “subarachnoid hemorrhage”, and “unknown”.

In this work, we mainly focus on categorial variables with domains of the yes/no type for simplicity. In addition, we choose variables with regard to patients’ medical history, medications, sleep symptoms, and other symptoms.

Based on the above variable selection criteria, we obtained a set of variables from the Canonical Data Dictionary (called canonical variables), as well as the study-specific variables which are mapped to the canonical variables for each individual dataset (called dataset variables). It is worth noting that one canonical variable may map to multiple dataset variables. Take the canonical variable “strokehist (stroke - history)” as an example. It maps to two dataset variables in the SHHS dataset: “stroke15 (MD reported stroke)” and “prev_hx_stroke (previous history of stroke)”; it maps to one dataset variable in the HeartBEAT dataset: “dxstroke (diagnosed: stroke)"; and it maps to one dataset variable in the CFS dataset: “strodiag (physician-diagnosed stroke)". In addition, a query constraint can be any canonical variable with value “yes". For instance, “strokehist (stroke - history)” with value “yes" can serve as a query constraint.

Variable merging

Since certain variables in a dataset may capture similar information, association rules obtained including such similar variables would be of less interest. For example, both variables prev_hx_stroke (previous history of stroke) and stroke15 (MD reported stroke) in SHHS capture the information about whether a patient has had a stroke. Occurences of such variables together in a rule might make it uninteresting, e.g., {prev_hx_stroke}{stroke15}.

Therefore, we merge such variables before performing QARM to avoid obtain association rules with such similar variables. This is done such that whenever a patient exhibits a “yes” to at least one of the similar variables, then the value of the merged variable will also be “yes”. Here, the dataset variables mapping to the same canonical variable are considered similar, and hence merged. We refer to this method as the “merged method”. For comparison, we also performed QARM without such a merging, which we refer to as “unmerged method”. The latter is only used for the purpose of comparison with the “merged method”. Therefore, unless otherwise specifically mentioned, in all the scenarios we are using the “merged method”.

Combining multiple-visit data

In NSRR, some datasets contain patient data collected in multiple visits. For instance, the datasets CHAT, HeartBEAT and SHHS contain data collected in two patient visits. These multiple visits of a dataset were combined into one as a preprocessing step before QARM was performed. Since multiple visits may contain data collected for the same variable, the combination was performed as follows: for the same patient, if the value of the variable appear as “yes” in at least one of the visits, then the combined result will be “yes”; otherwise, the combined result will be “no”. For example, in the CHAT dataset, the variable “med1c1 (ever had asthma?)” appears in both the baseline visit and follow-up visit; for the same patient, the combined result is “yes” as long as one of the visits has the “yes” value.

Query-constraint-based data transformation

Given a query constraint, the clinical data of patients satisfying the query criteria needs to be transformed to a suitable format before being fed into the TNR algorithm. In clinical datasets like NSRR, the possible values of a patient variable with the domain of yes/no type may be “yes", “no", or “unknown" (or “NA"). This way it is clear whether the patient has the characteristic specified in the variable (“yes"), or the patient does not have the characteristic (“no"), or the information is unknown or not available. While “no" and “unknown" are important for capturing more precise information of patients, they may not be useful for generating association rules. For example, most patients in the SHHS dataset have not had a stroke (i.e., stroke15 =“no" and prev_hx_stroke =“no"), in which cases the variables are imbalanced towards “no" values. If the “no" values for such variables were used for generating association rules (denoting the characteristics patients do not have), then it would have produced a lot of uninteresting and irrelevant rules also making the ARM process slow. Therefore, in this work, we only consider the “yes" values of variables for patient records satisfying the query criteria.

QARM using TNR algorithm

Given a query constraint, QARM using TNR algorithm was applied to the patient data satisfying the query constraint after data transformation, with k=100, minconf=60% and Δ=10. For example, if the query constraint is the canonical variable strokehist (stroke history) based on the SHHS dataset, then only patients with stroke15 (MD reported stroke) =“yes" or patients with prev_hx_stroke (previous history of stroke) = “yes" will be selected for QARM, since the canonical variable strokehist maps to two dataset variables stroke15 and prev_hx_stroke. This is as if selecting a sub-dataset with patients who have had a stroke and then performing QARM on it. We set a lower-bound of 20 to the number of patient records exhibiting this query constraint characteristic as a condition for the applicability of QARM so that a sufficient number of patient records will be considered. Here, we used the implementation of TNR in the SPMF open-source data mining library [16]. After QARM is performed, we sort the obtained association rules first by their support and then by their confidence.

Note that the support and the confidence of the obtained rules are based on the sub-dataset of patients satisfying the query constraint, not the entire dataset. In addition, the query constraint itself is not included to perform QARM since it is satisfied by each patient record in the sub-dataset.

Removing general rules

For a given query constraint, the resulting rule set may contain rules which are generally observed throughout the whole dataset. In other words, such rules are not unique to patients exhibiting the query constraint characteristic, but general to majority of the patients in the dataset. Therefore, we eliminate such rules as follows. Assume that O is the set of top-k rules obtained for patients satisfying the query constraint. We further apply the TNR algorithm to obtain another set N of top-k rules for those patients who do not satisfy the query constraint. Then we remove the common rules (ON) from O, i.e., O−(ON) or ON.

Removing subsumed rules

The TNR algorithm defines redundancy in terms of Minimum Condition Maximum Consequent Rules as follows [13]. An association rule ra:XY is redundant with respect to another rule rb:X1Y1 if and only if:

  1. 1

    confidence(ra)=confidence(rb) and support(ra)=support(rb); and

  2. 2

    X1X and YY1.

Satisfaction of both conditions is important in determining redundant rules during the ARM process. However, the resulting rule set may contain rules which satisfy condition 2 but not condition 1. Exploring such subsumed rules may not help the user in determining interesting associations among patient characteristics. Therefore, as a post-processing step, we remove all such rules which are subsumed by another rule. Note that removing common and subsumed rules may lead to a less number of rules (≤k) in the result.

Results

A total of 71 canonical variables were obtained after the variable selection process. Since each canonical variable can serve as a query constraint, we interchangeably use terms “canonical variable" and “query constraint" in the followings. Table 2 shows the numbers of canonical variables identified in each of the five datasets, the numbers of mapped dataset variables corresponding to the canonical variables, and the numbers of association rules obtained within each dataset. It can be seen that SHHS covered the most number of canonical variables. In Table 2, a canonical variable used in an individual dataset is based on the existence of mapped dataset variables, as well as the existence of a considerable number of patients exhibiting the characteristic specified in the variable (at least 20 patients).

Summary results

A total of 2517 association rules were obtained by applying QARM within each of the five datasets, using top k = 100 rules with a minconf threshold of 60% and Δ = 10. On average a query resulted in 18 rules.

Table 3 contains the resulting association rules obtained for the query constraint strokehist (stroke-history) in the SHHS dataset. For example, {myocardial infarction-history} → {hypertension-history} is an obtained association rule for the query. This indicates that for a patient who have had a stroke, if the patient happens to have myocardial infarction, they are likely to have hypertension as well.

Table 3 Resultant association rules for the query constraint “strokehist (Stroke-history)” in SHHS dataset

Merged method versus unmerged method

We also performed QARM using the “unmerged method” for comparison with the “merged method". Table 4 shows the numbers of common and distinct rules obtained by the “merged” and “unmerged” methods for 10 query constraints. For example, the query constraint htnhist (hypertension-history) derived 19 common rules by both the “merged” and “unmerged” methods, 1 distinct rule that is uniquely obtained by the “merged method”, and 3 distinct rules that are uniquely obtained by the “unmerged method”. Figure 1 contains a plot of Jaccard similarity values for result sets of merged and unmerged methods for the 52 queries where common rules were found between merged and unmerged methods. The first 10 queries in Fig. 1 refer to the 10 queries in Table 4.

Fig. 1
figure 1

Jaccard similarity of queries having common rules by merged and unmerged methods

Table 4 Numbers of common and distinct rules obtained by merged and unmerged methods for 10 query constraints

General and subsumed rules removed

Table 5 contains the number of general and subsumed rules removed for 10 query constraints. On average 36 general rules and 42 subsumed rules are removed from resultant rules of a query constraint.

Table 5 Numbers of general and subsumed rules removed

Discussion

In this work, we investigated a query-constraint-based ARM method which we applied to five clinical datasets in NSRR. We also investigated the common and distinct association rules obtained using the merged method versus unmerged method.

Literature-based evidence to obtained association rules

Data mining techniques have been previously employed in clinical decision support systems for diagnosis, prediction and treatment of diseases [17, 18]. The association rules obtained based on the clinical datasets in NSRR may provide evidence for making clinical decisions for sleep-related problems together with further literature-based evidence.

Table 6 contains some preliminary findings of the supporting evidence from biomedical literature for 20 randomly chosen rules for the queries found in Table 4. For each query constraint, two rules have been randomly chosen.

Table 6 Randomly chosen example association rules obtained for queries in Tables 4 and 5 and supporting literature

For example, consider the rule {loop diuretic} → {hypertension-history, angiotensin converting enzyme inhibitor} for the query constraint congestive heart failure-history in SHHS dataset. According to [19], a combined treatment with low doses of loop diuretics and angiotensin converting enzyme inhibitors can be used to treat hypertension without adverse reactions associated with larger doses of either therapy alone. Loop diuretics and angiotensin converting enzyme inhibitors alone are used to treat hypertension. So, these facts support this rule which states, whenever a patient is using loop diuretics, he or she is more likely to have hypertension and be treated with angiotensin converting enzyme inhibitor. The existence of this rule among patients with congestive heart failure can be validated by [20, 21], which states loop duretics are widely used to treat congestive heart failure.

Araki et al. [22] mention that hypertension is a common diabetes comorbidity. According to [23, 24] there exists an association between habitual snoring and diabetes mellitus prominently in women. Therefore, these facts found in literature supports the rule {diabetes mellitus-history} → {habitual snoring} for the query constraint hypertension-history in HeartBEAT dataset.

Consider the rule angiotensin converting enzyme inhibitor} → {thiazide diuretic, hypertension-history, diabetes mellitus-history} for query constraint coronary artery disease-history in HCHS dataset. According to [25], angiotensin-converting enzyme inhibitors are both used to treat hypertension and coronary artery disease. Chowdhury et al. [26] state that both angiotensin-converting enzyme inhibitors and thiazide diuretics are used for the treatment of hypertension. As mentioned earlier, hypertension is a common diabetes comorbidity [22]. So these facts found in literature supports the above mentioned rule.

According to [27], sulfonylureas are oral antidiabetic agents. However, they may cause hypertension by their extra-pancreatic effects [28]. Sehra et al. also mention that within a few years of diagnosis, patients with type 2 diabetes mellitus develop hypertension. Therefore, the rule {hypertension-history} → {sulfonylurea, diabetes mellitus-history} which states that whenever a patient is having hypertension, he or she is more likely to be using sulfonylurea and having diabetes-mellitus is supported by the given evidence. However, we could not find any evidence that this rule is specific to patients using thiazolidinedione. So, this seems like a general rule which has not been removed during the general rule removal. A larger k value may have removed this from the result set.

For those rules with no supporting evidence found in literature, they may serve as candidates for generating new hypotheses for further discovery and investigation.

Distinction with related work

ARM has been widely applied to biomedical datasets for data-driven knowledge discovery. However, exploratory ARM based on a particular query constraint has been rarely investigated. QARM would allow researchers to perform exploratory analysis based on a subset of data of interest by composing a specific query criteria to filter out irrelevant data.

The heuristic of our approach is to some extent similar to that of traditional constraint-based mining [29], which enables users to specify constraints to confine the search space. In another related work, Kubat et al. [30] have presented an approach that converts a market-based database into an itemset tree to get a quick response to targeted association queries. Our approach differs from other constraint-based mining approaches [29] and targeted association querying [30], in that we directly apply the query constraint on the input data before starting the mining process rather than applying it to the output rules or applying it during the mining process. Another important distinction is that unlike other approaches that always include the constraint in the mined rules, the rules mined by our approach do not contain the query constraint itself. Although one of the motivations behind QARM is to reduce the number of uninteresting rules generated from an imbalanced dataset, it is not used to address the issue of the imbalance of the dataset. To the best of our knowledge, constraint-based mining has not been employed for the reducing purpose before. Furthermore, in terms of the datasets used, this is the first rule-mining-based work on analyzing NSRR datasets.

We performed a preliminary study [31] on query-constraint-based ARM in NSRR which motivated this work. However, in [31] we did not perform any post-processing on the results. The results contained a lot of general as well as subsumed rules. To address this issue, in this work, we have introduced two post-processing steps to remove such rules from the results so that a concise, interesting rule set will be provided as the output for a query. From Table 5 it could be noted that a large potion of rules were removed as a result of these two steps. In addition, we also perform a literature survey to validate a random sample of the rules obtained.

Merged versus unmerged

It was noted that some of the rules obtained distinctly by the unmerged method are not interesting, since they contain rules which have similar dataset variables. For example, for the query constraint thiazolidinedione in SHHS, there exists a rule in the form of {sulfonylurea} → {sulfonylurea, hypertension-history} which is not interesting due to the existence of the similar variable sulfonylurea in multiple locations of the rule. Therefore, merging similar variables serves as a means of filtering such uninteresting rules.

From Fig. 1, it could be noted that for most queries, the resultant rules of merged and unmerged methods are quite different. Although it was observed that unmerged method obtains uninteresting rules with similar variables while the merged method does not, further analysis is needed to confirm what factors contributed to this difference.

It was also noted that the unmerged method obtains a significantly lower number of association rules than the merged method. Using k = 100, the unmerged method obtained 653 rules in total across all the datasets for all query constraints while the merged method obtained a total of 2517. This is because the unmerged method obtained a lot of subsumed rules in the following format. Consider the rules {hypertension (shhs2)} → {sleep habits (shhs1): ever snored} and {self-reported hypertension (shhs1)} → {sleep habits (shhs1): ever snored} obtained for the query constraint stroke-history in SHHS dataset using the unmerged method. Both these rules contains similar variables hypertension (shhs2) and self-reported hypertension (shhs1) as antecedents and the same variable sleep habits (shhs1): ever snored as the consequent. Therefore, these rules actually could be considered similar because they convey the same association: {hypertension-history} → {habitual snoring}. Unmerged method produced a large number of such rules which were filtered during the subsumed rule removal.

Limitations and future work

In this work, we only considered categorical variables with domains of the yes/no type for the query-constraint-based ARM. Other categorical variables involve complex domains which need to be manually examined to determine whether they are meaningful for rule mining, and thus we expect to explore them in future work. It would also be interesting to further investigate numerical variables, where numerical values can be categorized into some predefined ranges. In addition, we only considered query constraints involving a single canonical variable, however, it can be generalized to query constraints consisting of multiple canonical variables.

In the future we would like to perform an automated literature-based analysis as well as a manual review by clinical experts to validate the obtained rules. We also plan to incorporate QARM in a web-based system for biomedical researchers to dynamically compose query constraints and interactively perform exploratory data analysis in NSRR. We used top 100 rules when performing QARM in this paper. To support interactive exploratory analysis, such parameters could be configured and decided by the end users.

Conclusion

In this paper, we applied QARM, a query-constraint-based association rule mining method, to five diverse clinical datasets in the National Sleep Resource Resource. QARM shows the potential to support exploratory analysis of large biomedical datasets by mining a subset of data satisfying a query constraint. It is also shown as a useful method to reduce the number of uninteresting association rules generated from imbalanced datasets. Our analysis indicates that merging similar variables in datasets is an effective method to filter uninteresting rules. Also, removing general and subsumed rules resulted in more concise and interesting rules. A preliminary literature-based analysis showed that some association rules have supporting evidence from biomedical literature, while others without literature-based evidence may serve as the candidates for new hypotheses to explore and investigate.

Abbreviations

ARM:

Association rule mining

QARM:

Query-constraint-based ARM

References

  1. Chaudhry B, Wang J, Wu S, Maglione M, Mojica W, Roth E, Morton SC, Shekelle PG. Systematic review: impact of health information technology on quality, efficiency, and costs of medical care. Ann Intern Med. 2006; 144(10):742–52.

    Article  PubMed  Google Scholar 

  2. Jensen PB, Jensen LJ, Brunak S. Mining electronic health records: towards better research applications and clinical care. Nat Rev Genet. 2012; 13(6):395.

    Article  PubMed  CAS  Google Scholar 

  3. Wang X, Smith MR, Rangayyan RM. Mammographic information analysis through association-rule mining. In: 2004 Canadian Conference on Electrical and Computer Engineering. New York: IEEE: 2004. p. 1495–8.

    Google Scholar 

  4. Dean DA, Goldberger AL, Mueller R, Kim M, Rueschman M, Mobley D, Sahoo SS, Jayapandian CP, Cui L, Morrical MG, Surovec S. Scaling up scientific discovery in sleep medicine: the National Sleep Research Resource. Sleep. 2016; 39(5):1151–64.

    Article  PubMed  PubMed Central  Google Scholar 

  5. National Sleep Research Resource (NSRR) launches. https://sleep.med.harvard.edu/news/518/NationalSleepResearchResourceNSRRLaunches. Accessed 15 Dec 2017.

  6. Wang S. Ensemble diversity for class imbalance learning. PhD thesis. University of Birmingham. The University of Birmingham; 2011, p. 83.

  7. Agrawal R, Imieliński T, Swami A. Mining association rules between sets of items in large databases. In: ACM SIGMOD Record. New York: ACM: 1993. p. 207–16.

    Google Scholar 

  8. Hristovski D, Stare J, Peterlin B, Dzeroski S. Supporting discovery in medicine by association rule mining in Medline and UMLS. Stud Health Technol Inform. 2001; 2(2):1344–8.

    Google Scholar 

  9. Ordonez C. Association rule discovery with the train and test approach for heart disease prediction. IEEE Trans Inf Technol Biomed. 2006; 10(2):334–43.

    Article  PubMed  Google Scholar 

  10. Hipp J, Güntzer U, Nakhaeizadeh G. Algorithms for association rule mining - a general survey and comparison. ACM SIGKDD Explor Newsl. 2000; 2(1):58–64.

    Article  Google Scholar 

  11. Kotsiantis S, Kanellopoulos D. Association rules mining: A recent overview. GESTS Int Trans Comput Sci Eng. 2006; 32(1):71–82.

    Google Scholar 

  12. Fournier-Viger P, Wu CW, Tseng VS. Mining top-k association rules. In: Canadian Conference on Artificial Intelligence.Heidelberg: Springer: 2012. p. 61–73.

    Google Scholar 

  13. Fournier-Viger P, Tseng VS. Mining top-K non-redundant association rules. In: International Symposium on Methodologies for Intelligent Systems.Heidelberg: Springer: 2012. p. 31–40.

    Google Scholar 

  14. Hu X, Zhang X, Yoo I, Wang X, Feng J. Mining hidden connections among biomedical concepts from disjoint biomedical literature sets through semantic-based association rule. Int J Intell Syst. 2010; 25(2):207–23.

    Google Scholar 

  15. Agrawal A, Choudhary A. Identifying hotspots in lung cancer data using association rule mining. In: 2011 IEEE 11th International Conference on Data Mining Workshops (ICDMW)New York: IEEE: 2011. p. 995–1002.

    Google Scholar 

  16. Fournier-Viger P, Lin JC, Gomariz A, Gueniche T, Soltani A, Deng Z, Lam HT. The SPMF open-source data mining library version 2. In: Joint European conference on machine learning and knowledge discovery in databases.Heidelberg: Springer: 2016. p. 36–40.

    Google Scholar 

  17. Amin SU, Agarwal K, Beg R. Data mining in clinical decision support systems for diagnosis, prediction and treatment of heart disease. Int J Adv Res Comput Eng Technol (IJARCET). 2013; 2(1):218.

    Google Scholar 

  18. Cheng CW, Chanani N, Venugopalan J, Maher K, Wang MD. icuARM-An ICU clinical decision support system using association rule mining. IEEE J Transl Eng Health Med. 2013; 1:400110.

    Google Scholar 

  19. Becker RH, Baldes L, Treudler M. Loop diuretics combined with an ACE inhibitor for treatment of hypertension: a study with furosemide, piretanide, and ramipril in spontaneously hypertensive rats. J Cardiovasc Pharmacol. 1989; 13:S35–9.

    Article  PubMed  Google Scholar 

  20. Rossignol P, Zannad F. Loop diuretics and ultrafiltration in heart failure. Expert Opin Pharmacother. 2013; 14(12):1641–8.

    Article  PubMed  CAS  Google Scholar 

  21. Felker GM. Loop diuretics in heart failure. Heart Fail Rev. 2012; 17(2):305–11.

    Article  PubMed  CAS  Google Scholar 

  22. Araki S, Maegawa H. Hypertension and diabetes mellitus. Nihon Rinsho. Japan J Clin Med. 2015; 73(11):1885–90.

    Google Scholar 

  23. Xiong X, Zhong A, Xu H, Wang C. Association between self-reported habitual snoring and diabetes mellitus: a systemic review and meta-analysis. J Diabetes Res. 2016; 2016:1958981.

    Article  PubMed  PubMed Central  Google Scholar 

  24. Valham F, Stegmayr B, Eriksson M, Hägg E, Lindberg E, Franklin KA. Snoring and witnessed sleep apnea is related to diabetes mellitus in women. Sleep Med. 2009; 10(1):112–7.

    Article  PubMed  Google Scholar 

  25. Izzo JL, Weir MR. Angiotensin-converting enzyme inhibitors. J Clin Hypertens. 2011; 13(9):667–75.

    Article  CAS  Google Scholar 

  26. Chowdhury EK, Ademi Z, Moss JR, Wing LM, Reid CM. Cost-utility of angiotensin-converting enzyme inhibitor-based treatment compared with thiazide diuretic-based treatment for hypertension in elderly australians considering diabetes as comorbidity. Medicine. 2015; 94(9):e590.

    Article  PubMed  PubMed Central  CAS  Google Scholar 

  27. Thulé PM, Umpierrez G. Sulfonylureas: a new look at old therapy. Curr Diabetes Rep. 2014; 14(4):473.

    Article  CAS  Google Scholar 

  28. Sehra D, Sehra S. Hypertension in type 2 diabetes mellitus: do we need to redefine the role of sulfonylureas?Recent Patents Cardiovasc Drug Discov. 2015; 10(1):4–9.

    Article  CAS  Google Scholar 

  29. Han J, Pei J, Kamber M. Data mining: concepts and techniques.Amsterdam: Elsevier; 2011.

    Google Scholar 

  30. Kubat M, Hafez A, Raghavan VV, Lekkala JR, Chen WK. Itemset trees for targeted association querying. IEEE Trans Knowl Data Eng. 2003; 15(6):1522–34.

    Article  Google Scholar 

  31. Abeysinghe R, Cui L. Query-constraint-based association rule mining from diverse clinical datasets in the national sleep research resource. In: 2017 IEEE International Conference on Bioinformatics and Biomedicine (BIBM). New York: IEEE: 2017. p. 1238–1241.

    Google Scholar 

  32. Thompson SG, Kienast J, Pyke SD, Haverkate F, van de Loo JC. Hemostatic factors and the risk of myocardial infarction or sudden death in patients with angina pectoris. N Engl J Med. 1995; 332(10):635–41.

    Article  PubMed  CAS  Google Scholar 

  33. Badar AA, Perez-Moreno AC, Jhund PS, Wong CM, Hawkins NM, Cleland JG, van Veldhuisen DJ, Wikstrand J, Kjekshus J, Wedel H, Watkins S. Relationship between angina pectoris and outcomes in patients with heart failure and reduced ejection fraction: an analysis of the Controlled Rosuvastatin Multinational Trial in Heart Failure (CORONA). Eur Heart J. 2014; 35(48):3426–33.

    Article  PubMed  CAS  Google Scholar 

  34. Jesus C, Jesus I, Agius M. What evidence is there to show which antipsychotics are more diabetogenic than others. Psychiatr Danub. 2015; 27(Suppl 1):S423-8.

    PubMed  Google Scholar 

  35. Hammerman A, Dreiher J, Klang SH, Munitz H, Cohen AD, Goldfracht M. Antipsychotics and diabetes: an age-related association. Ann Pharmacother. 2008; 42(9):1316–22.

    Article  PubMed  Google Scholar 

  36. Yoon JM, Cho EG, Lee HK, Park SM. Antidepressant use and diabetes mellitus risk: a meta-analysis. Korean J Fam Med. 2013; 34(4):228–40.

    Article  PubMed  PubMed Central  Google Scholar 

  37. Parikh MA, Aaron CP, Hoffman EA, Schwartz JE, Madrigano J, Austin JH, Kalhan R, Lovasi G, Watson K, Stukovsky KH, Barr RG. Angiotensin-converting inhibitors and angiotensin II receptor blockers and longitudinal change in percent emphysema on computed tomography: the multi-ethnic study of atherosclerosis lung study. Ann Am Thorac Soc. 2017; 14(5):649–58.

    Article  PubMed  PubMed Central  Google Scholar 

  38. Minai OA, Fessler H, Stoller JK, Criner GJ, Scharf SM, Meli Y, Nutter B, DeCamp MM. Clinical characteristics and prediction of pulmonary hypertension in severe emphysema. Respir Med. 2014; 108(3):482–90.

    Article  PubMed  Google Scholar 

  39. Zheng L, Du X. Non-steroidal anti-inflammatory drugs and hypertension. Cell Biochem Biophys. 2014; 69(2):209–11.

    Article  PubMed  CAS  Google Scholar 

  40. Koskenvuo M, Partinen M, Sarna S, Kaprio J, Langinvainio H, Heikkilä K. Snoring as a risk factor for hypertension and angina pectoris. Lancet. 1985; 325(8434):893–6.

    Article  Google Scholar 

  41. Dunn FG. Hypertension and myocardial infarction. J Am Coll Cardiol. 1983; 1(2):528–32.

    Article  PubMed  CAS  Google Scholar 

  42. Ahmad A, Abujbara M, Jaddou H, Younes NA, Ajlouni K. Anxiety and depression among adult patients with diabetic foot: prevalence and associated factors. J Clin Med Res. 2018; 10(5):411.

    Article  PubMed  PubMed Central  Google Scholar 

  43. Lader M. Anxiety and depression. In: Individual Differences and Psychopathology: 1983. p. 155–67.

  44. Friedman MJ, Bennet PL. Depression and hypertension. Psychosom Med. 1977:134–42.

  45. Sogut A, Yilmaz O, Dinc G, Yuksel H. Prevalence of habitual snoring and symptoms of sleep-disordered breathing in adolescents. Int J Pediatr Otorhinolaryngol. 2009; 73(12):1769–73.

    Article  PubMed  Google Scholar 

  46. Stene LC, Nafstad P. Relation between occurrence of type 1 diabetes and asthma. The Lancet. 2001; 357(9256):607–8.

    Article  CAS  Google Scholar 

  47. Al-Shawwa B, Al-Huniti N, Titus G, Abu-Hasan M. Hypercholesterolemia is a potential risk factor for asthma. J Asthma. 2006; 43(3):231–3.

    Article  PubMed  CAS  Google Scholar 

  48. Ivanovic B, Tadic M. Hypercholesterolemia and hypertension: two sides of the same coin. Am J Cardiovasc Drugs. 2015; 15(6):403–14.

    Article  PubMed  CAS  Google Scholar 

  49. Mikkelsen RL, Middelboe T, Pisinger C, Stage KB. Anxiety and depression in patients with chronic obstructive pulmonary disease (COPD): a review. Nord J Psychiatry. 2004; 58(1):65–70.

    Article  PubMed  Google Scholar 

  50. Grimsrud A, Stein DJ, Seedat S, Williams D, Myer L. The association between hypertension and depression and anxiety disorders: results from a nationally-representative sample of South African adults. PLoS ONE. 2009; 4(5):e5552.

    Article  PubMed  PubMed Central  CAS  Google Scholar 

  51. Kim J, Yi H, Shin KR, Kim JH, Jung KH, Shin C. Snoring as an independent risk factor for hypertension in the nonobese population: the Korean health and genome study. Am J Hypertens. 2007; 20(8):819–24.

    Article  PubMed  Google Scholar 

  52. Rezaeitalab F, Moharrari F, Saberi S, Asadpour H, Rezaeetalab F. The correlation of anxiety and depression with obstructive sleep apnea syndrome. J Res Med Sci: Off J Isfahan Univ Med Sci. 2014; 19(3):205.

    Google Scholar 

  53. Strik JJ, Honig A, Maes M. Depression and myocardial infarction: relationship between heart and mind. Prog Neuro-Psychopharmacol Biol Psychiatry. 2001; 25(4):879–92.

    Article  CAS  Google Scholar 

  54. Shen BJ, Avivi YE, Todaro JF, Spiro A, Laurenceau JP, Ward KD, Niaura R. Anxiety characteristics independently and prospectively predict myocardial infarction in men: the unique contribution of anxiety among psychologic factors. J Am Coll Cardiol. 2008; 51(2):113–9.

    Article  PubMed  Google Scholar 

  55. Salako BL, Ajayi SO. Bronchial asthma: a risk factor for hypertension?Afr J Med Med Sci. 2000; 29(1):47–50.

    PubMed  CAS  Google Scholar 

  56. Waeber B, Feihl F, Ruilope L. Diabetes and hypertension. Blood Press. 2001; 10(5-6):311–21.

    Article  PubMed  CAS  Google Scholar 

  57. Albishri J. NSAIDs and hypertension. Anesth Pain Intens Care. 2013; 17:171–3.

    Google Scholar 

  58. Wilhelmsen L, Berglund G, Elmfeldt D, Fitzsimons T, Holzgreve H, Hosie J, Hörnkvist PE, Pennert K, Tuomilehto J, Wedel H. Beta-blockers versus diuretics in hypertensive men: main results from the HAPPHY trial. J Hypertens. 1987; 5(5):561–72.

    Article  PubMed  CAS  Google Scholar 

  59. Garg RK, Levine SR. Stroke associated with myocardial infarction.2006. http://www.medlink.com/article/stroke_associated_with_myocardial_infarction. Accessed 11 May 2018.

Download references

Funding

This work was supported by the National Science Foundation (NSF) under grants IIS-1657306 and ACI-1626364, and the National Heart, Lung, and Blood Institute (NHLBI) under grant R24 HL114473. Publication of this article was supported by grant R24 HL114473. Any opinions, findings, and conclusions or recommendations expressed in this work are those of authors and do not necessarily reflect the views of the NSF or NHLBI.

Availability of data and materials

The datasets analysed during the current study are available in the NSRR repository (https://sleepdata.org/).

In addition all the results generated or analyzed during this study are included in this published article [and its Additional file 1].

About this supplement

This article has been published as part of BMC Medical Informatics and Decision Making Volume 18 Supplement 2, 2018: Selected extended articles from the 2nd International Workshop on Semantics-Powered Data Analytics. The full contents of the supplement are available online at https://bmcmedinformdecismak.biomedcentral.com/articles/supplements/volume-18-supplement-2.

Author information

Authors and Affiliations

Authors

Contributions

LC conceptualized and designed this study. RA designed and implemented the algorithms, generated the results and performed the evaluation. RA and LC both wrote and revised the manuscript. Both authors have read and approved the final manuscript.

Corresponding author

Correspondence to Licong Cui.

Ethics declarations

Ethics approval and consent to participate

Not applicable.

Competing interests

The authors declare that they have no competing interests.

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Additional file

Additional file 1

Results obtained: Results.zip contains the results obtained by merged and unmerged methods for different query constraints across the five datasets in NSRR. (ZIP 199 kb)

Rights and permissions

Open Access This article is distributed under the terms of the Creative Commons Attribution 4.0 International License(http://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution, and reproduction in any medium, provided you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made. The Creative Commons Public Domain Dedication waiver(http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Abeysinghe, R., Cui, L. Query-constraint-based mining of association rules for exploratory analysis of clinical datasets in the National Sleep Research Resource. BMC Med Inform Decis Mak 18 (Suppl 2), 58 (2018). https://doi.org/10.1186/s12911-018-0633-7

Download citation

  • Published:

  • DOI: https://doi.org/10.1186/s12911-018-0633-7

Keywords