際際滷

際際滷Share a Scribd company logo
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;
Boxoffice analysis using SAS
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
Ad

Recommended

Box office analysis using SAS
Box office analysis using SAS
vignesh mohanmani
Boxoffice analysis using SAS
Boxoffice analysis using SAS
vignesh mohanmani
Performance Project Portfolio
Performance Project Portfolio
pencarver
openCypher: Adding Property Graph Extensions to SQL Using Graph Query Procedures
openCypher: Adding Property Graph Extensions to SQL Using Graph Query Procedures
openCypher
Sas program for production scheduling in machine shop
Sas program for production scheduling in machine shop
Thiru Navukkarasu
Vinoth sas presentation RANE industries
Vinoth sas presentation RANE industries
Vinoth Kalaimegan
House mouse
House mouse
wahabhse
Supermarkets
Supermarkets
Reginald "Reggie" Bell
Ladrillo a ladrillo
Mar N炭単ez
Taller 10 marco e mantilla
Marco Mantilla
Branding at Weld Food Bank
Branding at Weld Food Bank
Kevin L. Mullin, CFRE
Colman's Mustard in Social Media - Replise Performance Monitor
Colman's Mustard in Social Media - Replise Performance Monitor
Replise.com
Food safety part II
Food safety part II
wahabhse
Modelo de datos
Erick hernandez valencia
Food safety
wahabhse
Taller 10 marco e mantilla
Marco Mantilla
Maize Stem Borer
Maize Stem Borer
wahabhse
Searching Encrypted Cloud Data: Academia and Industry Done Right
Searching Encrypted Cloud Data: Academia and Industry Done Right
Skyhigh Networks

More Related Content

Viewers also liked (11)

Ladrillo a ladrillo
Mar N炭単ez
Taller 10 marco e mantilla
Marco Mantilla
Branding at Weld Food Bank
Branding at Weld Food Bank
Kevin L. Mullin, CFRE
Colman's Mustard in Social Media - Replise Performance Monitor
Colman's Mustard in Social Media - Replise Performance Monitor
Replise.com
Food safety part II
Food safety part II
wahabhse
Modelo de datos
Erick hernandez valencia
Food safety
wahabhse
Taller 10 marco e mantilla
Marco Mantilla
Maize Stem Borer
Maize Stem Borer
wahabhse
Searching Encrypted Cloud Data: Academia and Industry Done Right
Searching Encrypted Cloud Data: Academia and Industry Done Right
Skyhigh Networks
Ladrillo a ladrillo
Mar N炭単ez
Taller 10 marco e mantilla
Marco Mantilla
Colman's Mustard in Social Media - Replise Performance Monitor
Colman's Mustard in Social Media - Replise Performance Monitor
Replise.com
Food safety part II
Food safety part II
wahabhse
Modelo de datos
Erick hernandez valencia
Food safety
wahabhse
Taller 10 marco e mantilla
Marco Mantilla
Maize Stem Borer
Maize Stem Borer
wahabhse
Searching Encrypted Cloud Data: Academia and Industry Done Right
Searching Encrypted Cloud Data: Academia and Industry Done Right
Skyhigh Networks

Boxoffice analysis using SAS