|
|
 |
|
|
 |
| All Exercises |
Problem |
Sample Data |
Solution |
 |
|
|
Select an Exercise for |
Click any exercise title to see the problem for that exercise. Then you can view and download sample data, complete the exercise, and check the solution.
Livestock Auctions 2 Describe the relationship between the cost of operations and the number of livestock sold at auction
|
Livestock Auctions 2: Problem |
A cost analyst was hired by a group of livestock auction market managers to determine how the number of various classes of livestock (cattle, calves, hogs, and sheep) sold at their markets influenced the cost of operations of their markets. Data was provided by 19 market managers.
Find the multiple linear regression function for expressing cost of operations as a function of the number of livestock sold for the four classes. |
 SAS Institute Inc.
Printer Friendly |
Livestock Auctions 2: Sample Data | |
The Auction data set contains data from 19 livestock auction markets, including the number of head of each of four types of livestock sold (in thousands), the cost of operation of the auction market (in thousands of dollars), and the market identifier. These are the variables in the data set: Name | Type | Description | | marketid | char | market identifier | | cattle | num | number of head of cattle sold (in thousands) | | calves | num | number of head of calves sold (in thousands) | | hogs | num | number of head of hogs sold (in thousands) | | sheep | num | number of head of sheep sold (in thousands) | | cost | num | cost of operation of the auction market (in thousands of dollars) | | volume | num | total of all cattle, calves, hogs, and sheep sold in each market | |
|
Source of Data
|
This data is sample data from SAS Institute Inc. |
Livestock Auctions 2: Solution |
Based on the parameter estimates, the multiple linear regression function is given by
Y-hat = 2.28842 + 3.21552X1 + 1.61315X2 + 0.81485X3 + 0.80258X4,
where Y-hat is the predicted cost of operations (in thousands of dollars) and X1 is the number of cattle sold, X2 is the number of calves sold, X3 is the number of hogs sold, and X4 is the number of sheep sold (in thousands). |
|