Boxoffice analysis
Vignesh.M
13MBA1021
Box office analysis
• proc import datafile="C:UsersAdministartorDownloadsboxoffice.xls"
out=work.distri;
• run;
• proc import datafile="C:UsersAdministartorDownloadsboxoffice2.xls"
out=work.scale;
• run;
• proc sql;
• create table work.distributors as
• select *
• from work.distri, work.scale
• where distri.Distributors = scale.Distributors
• order by distri.SNo;
• quit;
proc means data=work.distributors;
tables Distributors;
run;
Graph for correlation
proc corr data=work.distributors;
var Collections Numbers;
run;
proc freq data=work.distributors;
tables collections Numbers;
run;
PROC GCHART DATA=distributors;
VBAR collections Numbers/LEVELS=7;
RUN;
proc means data =work.distributors;
var collections Numbers;
run;
Box office vertical bar chart
Collection and numbers analysis

Boxoffice analysis using SAS

  • 1.
  • 2.
    Box office analysis •proc import datafile="C:UsersAdministartorDownloadsboxoffice.xls" out=work.distri; • run; • proc import datafile="C:UsersAdministartorDownloadsboxoffice2.xls" out=work.scale; • run; • proc sql; • create table work.distributors as • select * • from work.distri, work.scale • where distri.Distributors = scale.Distributors • order by distri.SNo; • quit;
  • 3.
  • 5.
    Graph for correlation proccorr data=work.distributors; var Collections Numbers; run; proc freq data=work.distributors; tables collections Numbers; run; PROC GCHART DATA=distributors; VBAR collections Numbers/LEVELS=7; RUN; proc means data =work.distributors; var collections Numbers; run;
  • 6.
  • 7.