The datasets associated with this assignment contain information related to U.S. Companies that filed audited financial statements in the 2005-2014 period. Each observation in the datasets represent one firm-year. The dataset “Audit_Info” contains information related to the firm’s audit and the dataset “Financial_Data” contains accounting information from the firm’s 10-k. These datasets can be downloaded through Canvas.
Record the answers to any open ended questions in a Word document. When you’ve completed all steps, copy and paste your SAS log into the same Word document. Save the Word document and upload it through Canvas.
1. Import the “Audit_Data” dataset into SAS.
2. The variable AUDIT_FEES represents the audit fees charged to a firm in a given year. Create a new variable, “LAF”, defined as the log of audit fees.
3. The variable “AUDITOR_CITY” is the auditor’s location. Which city had the highest average audit fees (“AUDIT_FEES”) for the sample period? (No t-test necessary)
4. The variable AUDITOR_FKEY is coded 1, 2, 3, or 4 for the “Big 4” auditors. Code the binary variable “BIGN” as 1 for “Big 4” auditors, and 0 otherwise.
5. Compare average audit fees earned by Big N (BIGN = 1) and non-Big N auditors (BIGN = 0). Are mean audit fees higher for Big N or non-Big N auditors? (No T-test necessary)
6. Import the “Firm_Data” dataset into SAS.
7. The variable AT represents the total assets held by a firm. Create a new variable, “LAT”, defined as the log of total assets.
8. The variable SALE represents total sales for a firm-year. Create a new variable PY_SALE defined as prior year, or lagged, sales for the same firm.
a. After creating the new variable, be sure to code PY as “.” For observations where the lagged sales value was from a different company.
9. Define a new variable SALE_GROWTH as (SALE minus PY_SALE) divided by PY_SALE.
10. Determine whether the average value of SALE_GROWTH is significantly different from zero; perform a T-test.
11. Create a new dataset called “Complete_Data” by merging the datasets “Audit_Data” and “Firm_Data” on the variables GVKEY and FISCAL_YEAR_ENDED.
12. Drop the observations for which SALE_GROWTH is missing.
13. Run a regression that predicts the log of audit fees (LAF) as a function of: auditor size (BIGN), auditor specialization (CITY_SPEC), restatement issuance (RESTATEMENT_ISSUE), presence of a material weakness (MATWEAK), log of total assets (LAT), current ratio (CATA), operating cash flow (OCF), negative net income (LOSS), sales (SALE), and growth in sales (SALE_GROWTH). Which of these variables are POSITIVELY AND SIGNIFCANTLY (p < 0.10) associated with audit fees?
14. Which observation (reference the GVKEY) has the greatest difference between predicted audit fees and actual audit fees?
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme