market-basket-analysis

R Basket Analysis using arules package with unique order number but duplicate order combinations

。_饼干妹妹 提交于 2019-12-31 16:49:35
问题 R Basket analysis using arules package with unique order number but duplicate order combinations Just learning R. I'm trying to do a basket analysis using the arules package (but I'm totally open to any other package suggestions!) to compare all possible combinations of 6 different item types being purchased. My original data set looked like this: OrderNo, ItemType, ItemCount 111, Health, 1 111, Leisure, 2 111, Sports, 1 222, Health, 3 333, Food, 7 333, Clothing, 1 444, Clothing, 2 444,

R Basket Analysis using arules package with unique order number but duplicate order combinations

你说的曾经没有我的故事 提交于 2019-12-31 16:47:53
问题 R Basket analysis using arules package with unique order number but duplicate order combinations Just learning R. I'm trying to do a basket analysis using the arules package (but I'm totally open to any other package suggestions!) to compare all possible combinations of 6 different item types being purchased. My original data set looked like this: OrderNo, ItemType, ItemCount 111, Health, 1 111, Leisure, 2 111, Sports, 1 222, Health, 3 333, Food, 7 333, Clothing, 1 444, Clothing, 2 444,

Association analysis with duplicate transactions using arules package in R

半腔热情 提交于 2019-12-21 04:38:22
问题 I want to create a transaction object in basket format which I can call anytime for my analyses. The data contains comma separated items with 1001 transactions. The first 10 transactions look like this: hering,corned_b,olives,ham,turkey,bourbon,ice_crea baguette,soda,hering,cracker,heineken,olives,corned_b avocado,cracker,artichok,heineken,ham,turkey,sardines olives,bourbon,coke,turkey,ice_crea,ham,peppers hering,corned_b,apples,olives,steak,avocado,turkey sardines,heineken,chicken,coke,ice

R-convert transaction format dataset to basket format for Market Basket Analysis

时光总嘲笑我的痴心妄想 提交于 2019-12-13 04:08:08
问题 First I would like to clarify that before posting this query, I have referred the following links in this site to find answer, but couldn't understand, maybe because they address different problems or because I am new to R. R-convert transaction format dataset to basket format for sequence mining Arules Sequence Mining in R How to handle "argument 'incomparables != FALSE' is not used (yet)"? I want to do Market Basket Analysis with my dataset. My dataset is in transaction format (as described

How to apply market basket analysis / association rule in QlikView?

余生颓废 提交于 2019-12-12 01:43:42
问题 I want to use Association rule in Qlikview to find out the best product combination. But Im not technically strong in QlikView. Can anyone provide tutorials or can kindly teach me how to use the features in qlikview to performed the association rule.(Time slice is flexible if possible. ) And now currently , I'm trying with this tutorial for Market Basket analysis [ http://www.quickqlearqool.nl/?p=965 ] But it did not count the number of customer for the same purchase behaviour . (within 1

Venn Diagram in QlikView to display relationship for product mixed

混江龙づ霸主 提交于 2019-12-11 08:09:34
问题 Currently I am trying to use qlikview to do Market Basket analysis to find out the best product mixed . and I have tried [ http://www.quickqlearqool.nl/?p=965 ] How can I improve this dashboard to add in a Venn digram to show the relationships for the product combination [count the number of Customer who buy milk will buy Bread within a certain duration]. The following dropBox link is a sample datasets with the Venn Diagram : [ https://www.dropbox.com/s/s2z2ikgyr436gxm

R Basket Analysis using arules package with unique order number but duplicate order combinations

可紊 提交于 2019-12-03 00:35:24
R Basket analysis using arules package with unique order number but duplicate order combinations Just learning R. I'm trying to do a basket analysis using the arules package (but I'm totally open to any other package suggestions!) to compare all possible combinations of 6 different item types being purchased. My original data set looked like this: OrderNo, ItemType, ItemCount 111, Health, 1 111, Leisure, 2 111, Sports, 1 222, Health, 3 333, Food, 7 333, Clothing, 1 444, Clothing, 2 444, Health, 1 444, Accessories, 2 . . . the list goes on and has about 3,000 observations. I collapsed the data

How to prep transaction data into basket for arules

若如初见. 提交于 2019-11-27 22:27:21
Ok, so I have searched a lot and want to run arules on sales data. I just need to properly get the data in the right format and set up with the correct "factors" or "variables" and in basket form. Right now I have sales data with the Order# and then the items inside that. Each order is unique (every new order, a new # gets created and includes the part#), but the same items obviously can appear in many orders. Currently, my data is set up like this: Order# Part# PartDescription 1 A PartA 1 B PartB 1 G PartG 2 R PartR 3 A PartA 3 B PartB 4 E PartE 5 Y PartY 6 A PartA 6 B PartB 6 F PartF 6 V

How to prep transaction data into basket for arules

纵然是瞬间 提交于 2019-11-26 20:59:28
问题 Ok, so I have searched a lot and want to run arules on sales data. I just need to properly get the data in the right format and set up with the correct "factors" or "variables" and in basket form. Right now I have sales data with the Order# and then the items inside that. Each order is unique (every new order, a new # gets created and includes the part#), but the same items obviously can appear in many orders. Currently, my data is set up like this: Order# Part# PartDescription 1 A PartA 1 B