Problem 7.18
This problem is a paired t-test. First, input the data. There are two, numeric variables. You can call them anything you want. I called them CHOL1 and CHOL2. make sure you answer the question using the 5-Step Process for Hypothesis Testing
DATA prob718;
INPUT chol1 chol2;
DATALINES;
210 215
230 240
190 190
215 200
260 280
200 210
;
PROC TTEST DATA = prob718;
PAIRED chol2*chol1;
RUN;
After entering the data, run a t-test procedure. The PAIRED statement tells which variables to compare and will test if “CHOL2 - CHOL1 = 0”.


Problem 7.18 This problem is a paired t-test. First, input the data. There are two, numeric variables. You can call them anything you want. I called them CHOL1 and CHOL2. make sure you answer the ques...
Code is in C#
Your instructor would like to thank to Marty Stepp and Hélène Martin at the University of Washington, Seattle, who originally wrote this assignment (for their CSE 142, in Java) This program focuses on classes and objects. Turn in two files named Birthday.cs and Date.cs. You will also need the support file Date.dll; it is contained in the starter project for this assignment. The assignment has two parts: a client program that uses Date objects, and a...