This document discusses analyzing box office data using SAS. It imports box office data from Excel files, combines the files into one dataset, and performs various analyses including calculating means, correlations, frequencies, creating bar charts and scatter plots to examine the relationships between collections and numbers of various distributors. Regression and ANOVA are also used to model the box office data and test relationships between variables.
Convert to study materialsBETA
Transform any presentation into ready-made study material—select from outputs like summaries, definitions, and practice questions.
8. Plots on data
• TITLE 'Scatterplot - Two Variables';
• PROC GPLOT DATA=distributors;
• PLOT collections*numbers ;
• RUN;
• SYMBOL1 V=circle C=black I=none;
• SYMBOL2 V=star C=red I=none;
10. The LOGISTIC Procedure
Probability modeled is use=1.
Model Information
Data Set WORK.MODEL
Response Variable use use
Number of Response
Levels
2
Number of
Observations
26
Model binary logit
Optimization
Technique
Fisher's scoring
11. Regression and anova
• proc reg data =work.distributors;
• model boxoffice reg collections= numbers;
• run;
• proc anova data =work.distributors;
• class exp;
• model data emp tot = collections;
• run;