Hello, I want to use my SAS data set named “customers” below to fit Gamma, Weibull and Lognomal distributions. The data set includes two variables day and # of customers who made the purchase on that day. The attached you’ll find the desired result looks like I'm seeking. Could you enlighten me? I have the base/SAS 9.4 1M7 with ETS version so I can run “Proc Model” or “proc FMM” if needed. Please let me know if I need to provide additional information. Thanks very much for your help and insights in advance. Regards, Ethan data customers; input day count; label day = 'Day' count = '# of customers' ; datalines; 1 3 2 2 3 1 4 19 5 138 6 116 7 62 8 30 9 49 10 32 11 30 12 30 13 12 14 10 15 7 16 12 17 9 18 15 19 5 20 12 21 4 22 9 23 10 24 2 25 5 26 8 27 4 28 6 29 3 30 7 31 4 ; run;
... View more