Association Rules

버전 1.2.0.0 (6.55 KB) 작성자: Narine Hall
This function discovers association rules using Apriori algorithm.
다운로드 수: 6.7K
업데이트 날짜: 2013/7/22

라이선스 보기

Association Analysis is a method for discovering interesting relationships hidden in large datasets. Given a set of transactions, it finds rules that will predict the occurrence of an item based on the occurrences of other items in the transaction.

Rules are of the form A -> B (e.g., {onions, potatoes} - > {burger}).

The concepts of support and confidence are used to identify how strong the discovered rules are.

Support is the fraction of transactions that contain both A and B:
Support(A,B) = P(A,B)

Confidence is the fraction of transactions, where items in B appear in transactions that contain A:
Confidence(A,B) = P(B|A)

We are using Apriori algorithm to identify frequent item sets. It proceeds by identifying the frequent individual items in the database and extending them to larger item sets while the items satisfy the minimum support requirement (frequency of items in the database). The frequent item sets determined by Apriori are then used to determine association rules.

인용 양식

Narine Hall (2026). Association Rules (https://kr.mathworks.com/matlabcentral/fileexchange/42541-association-rules), MATLAB Central File Exchange. 검색 날짜: .

MATLAB 릴리스 호환 정보
개발 환경: R2013a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
버전 게시됨 릴리스 정보
1.2.0.0

Added a demo file that applies the findRules method to Zachary's karate network to find missing links.

1.0.0.0