Intro

All of these exercises use the data in medTrialX.xlsx

Part I summary exercise

    If income >=  3rd Quartile , incgroup = “high”,
        if income < 1st Quartile  , incroup  = “low”,
            else incgroup = “mid”

and

    If hdiff > median(hdiff), postsize = "large",
        else postsize = "small"

What do the two new variables tell you?

Part II summary exercise