Skip to content

Jacqueline-Tsai/association-analysis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Association Analysis

Preprocessing

I clean the data by dropping data with no InvoiceNo or InvoiceNo begin with C or not located in United Kingdom or the item is POSTAGE

Implementation

pseudocode

for each case X ⇒ Y:
	support = P(X & Y)
	confidence = P(X & Y) / P(X)
	if support > 0.01 and confidence > 0.5:
		they are associated

If confidence > 0.5, that means for all people who buy X, the number of people who buy Y is more than the number of people who do not buy Y. But if confidence > 0.5 and support.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages