Recent content by Trilli@n

  1. T

    Graduate Testing Hypotheses in Multivariate Linear Regression Using SAS?

    Can someone help me to do this in SAS? Is this correct? PROC REG DATA = dataset; MODEL y = x1 x2; test x1=0 ; test x2=0; run; How can I save p value from each test to a new data?
  2. T

    Graduate Testing Hypotheses in Multivariate Linear Regression Using SAS?

    I have a model y= beta0 + beta1 x1 + beta2 x2 + eps, eps~N(0,1). How to test hypothesis beta1=0 ? Is the same test for beta2=0?