Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

SAS question THERE IS NO DATA SET NEEDED answer is in code, PROGRAM DOES NOT NEED TO BE RUN IN SAS data work.aggregate; set work.payroll;

SAS question

THERE IS NO DATA SET NEEDED

answer is in code, PROGRAM DOES NOT NEED TO BE RUN IN SAS

data work.aggregate; set work.payroll; by Branch; if first.Branch then aggregate=0; aggregate+Salary; if last.Branch; run;

The data set payroll is sorted by Branch and contains the numeric variable Salary that provides each employee's annual salary. work.payroll contains 320 observations (20 observations for each of 16 Branchs.)

How many observations will the data set aggregate contain after the program is run?

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Numerical Solution Of Ordinary Differential Equations

Authors: L F Shampine

1st Edition

1351427547, 9781351427548

More Books

Students also viewed these Mathematics questions