一、数据字段(此数据来源于网络)

SAS代码-商品对应分析

二、运用SAS做商品对应分析非常简单几行命令搞定

%macro dyfx(infile,var);
PROC CORRESP mca ALL DATA=&infile OUTC=COOR1;/*对应分析,寻找行(客户特征)和列(产品特征)的关系*/
tables &var. ;
run; 
%plotit(data=COOR1,datatype=corresp,href=0,vref=0);
%mend;
%dyfx(profit,order_type product_category customer_age_group province);

三、结果

下图可以找出商品细类、年龄组、省份之间的对应关系图,北京上海等大城市的游泳系列运动装比较好卖等

如果结合其他维度的商品信息可以非常方便的找到细分市场。

SAS代码-商品对应分析

 

 

相关文章:

  • 2021-04-30
  • 2021-12-22
  • 2021-12-17
  • 2021-12-17
  • 2022-03-06
  • 2022-12-23
  • 2022-01-20
  • 2021-09-16
猜你喜欢
  • 2021-08-03
  • 2021-05-12
  • 2021-12-17
  • 2021-05-06
  • 2022-12-23
  • 2021-10-03
  • 2021-11-19
相关资源
相似解决方案