Documentation Example 2 for PROC HPPLS
/****************************************************************/
/* S A S S A M P L E L I B R A R Y */
/* */
/* NAME: HPPLSEX2 */
/* TITLE: Documentation Example 2 for PROC HPPLS */
/* PRODUCT: HPSTAT */
/* SYSTEM: ALL */
/* KEYS: Regression Analysis */
/* PROCS: HPPLS */
/* DATA: Simulated Data */
/* */
/* SUPPORT: Ning Kang */
/* REF: PROC HPPLS, Example 2 */
/* MISC: */
/****************************************************************/
/* Example 2: Fitting a PLS Model in Single-Machine and Distributed Modes */
data ex2Data;
drop i j k sign n n1 n2 n3 n4;
n = 100000;
n1 = n*0.1;
n2 = n*0.25;
n3 = n*0.45;
n4 = n*0.7;
array y{10};
array x{100};
do i=1 to n;
do j=1 to dim(y);
y{j} = 1;
end;
sign = 1;
do j=1 to dim(x);
x{j} = ranuni(1);
do k=1 to dim(y);
y{k} = y{k} + sign*j*x{j};
sign = -sign;
end;
end;
do j=1 to dim(y);
y{j} = y{j} + 7*rannor(1);
end;
if i <= n1 then z='verytiny';
else if i <= n2 then z='small';
else if i <= n3 then z='medium';
else if i <= n4 then z='large';
else z='huge';
output;
end;
run;
proc hppls data=ex2Data method=simpls cvtest(stat=press seed=12345);
class z;
model y: = x: z:;
partition fraction(test=0.4 seed=67890);
performance details;
run;
proc hppls data=ex2Data method=simpls cvtest(stat=press seed=12345);
class z;
model y: = x: z:;
partition fraction(test=0.4 seed=67890);
performance details nodes = 4
host="&GRIDHOST" install="&GRIDINSTALLLOC";
run;