You are on page 1of 4

Pandas Vs Numpy: Numercial Python and Python for Data Analysis.

(Python)
1. In Numpy you can perform numerical function on Arrays while Pandas deal with Dataframes. (Array have similar data set w
dimension of different dataset)
2. NumPy providing the underlying numerical operations, and Pandas providing the higher-level tools for data manipulation
3. Rattle: R programming, visualisation, model interpretation
4. Weka: Java, visualisation, data modelling
5. Orange: Python, visualization, and predictive modeling

Frequent patterns: itemset(bread and milk bought together) and sequential pattern (Antivirus bought after computer)
Market basket concept: Market Basket Analysis has been widely used in various industries, including retail, e-commerce, ma
management. By identifying patterns and associations between items, businesses can make data-driven decisions to enhanc
sales, and optimize their overall operations. Could identify where to place items in the shelf

Confidence= #tuples containing both A and B/ # tuples containing A (purchased one after the other)
Support= #tuples containing both A and B/ total # of transactions (purchase made with both the items)
Lift value should be greater than 1
Lift= support (X&Y)/Support of X * Support of Y
Lift = actual number of transactions A and B were pruchased together/ total transaction * Fraction of A * Fraction of B
Lift = Confidence of A/Support B
. (Array have similar data set while Dataframe have 2

el tools for data manipulation and analysis.

bought after computer)


luding retail, e-commerce, marketing, and supply chain
ata-driven decisions to enhance customer satisfaction, increase

other)
the items)

action of A * Fraction of B
A B C support confidence
A c d support (A,d) 2/5 2/3
b c d support (c,a) 2/5 1/2
a d e a,c 2/5 2/3
b c e b&c to D 1/5 2/3

c
confidence lift
1 1/9
5/6
5/6
45174

You might also like