Hi Dears, I am trying to run the below codes and they do not show any result. Could you try it and let me know if it works for you? Load the Data: proc import datafile='/path/to/customers.csv' out=customers dbms=csv replace; getnames=yes; run: Summary Statistics: proc means data=customers n means std min max; var Total Revenue Unit Cost Discount; run; Frequency Distribution: proc freq data=customers; tables Customer_Group OrderTypeLabel CustomerCountryLabel; run; Visualizations: proc sgplot data=customers; histogram Total_Revenue; run; proc sgplot data=customers; vbar Customer_Group / response=Total_Revenue stat=mean; run; Step 4: Predictive Statistics Correlation Analysis: proc corr data=customers; var Total_Revenue Customer_BirthDate Unit_Cost Discount; run; Regression Analysis: proc reg data=customers; model Total_Revenue = Customer_BirthDate Unit_Cost Discount; run; ANOVA for Sales Channels: proc anova data=customers; class OrderTypeLabel; model Total_Revenue = OrderTypeLabel; run; Thanks and regards,
... View more