01-24-2025
Kona
Fluorite | Level 6
Member since
08-02-2015
- 4 Posts
- 2 Likes Given
- 0 Solutions
- 3 Likes Received
-
Latest posts by Kona
Subject Views Posted 1030 10-20-2024 10:21 AM 1109 10-19-2024 08:10 PM 1480 08-03-2015 08:30 AM 1522 08-02-2015 11:46 PM -
Activity Feed for Kona
- Liked Re: get last 10 obs for Ksharp. 10-20-2024 06:15 PM
- Posted Re: Suggestions on how to speed up the following proc IML program - vectorizing? on SAS/IML Software and Matrix Computations. 10-20-2024 10:21 AM
- Liked Re: Suggestions on how to speed up the following proc IML program - vectorizing? for Ksharp. 10-20-2024 10:21 AM
- Posted Suggestions on how to speed up the following proc IML program - vectorizing? on SAS/IML Software and Matrix Computations. 10-19-2024 08:10 PM
- Got a Like for Re: proc expand. 09-01-2015 04:24 AM
- Posted Re: proc expand on SAS Procedures. 08-03-2015 08:30 AM
- Posted proc expand on SAS Procedures. 08-02-2015 11:46 PM
-
Posts I Liked
-
10-19-2024
08:10 PM
Hi,
I am struggling with how to speed up the following program. I have been trying to vectorize things, however, cannot get things to work. In the example below I have a 5x5 matrix, however, in practice the matrix is much larger, e.g., 5000 x 5000. Thanks so much for any help or suggestions.
-Michael
proc IML;
nP=5;
CM= {0 0.5 0.75 0 0.75 , 1 0 1 0 0.5 , 0.375 0.25 0 0.375 0.25 , 0 0 1 0 0, 1 0.333 0.667 0 0 };
print CM;
D = j(nP,nP,0);
do i1 = 1 to nP;
do i2 = i1+1 to nP; /* I only need to do the calculation on one half of the CM matrix as the resulting D matrix is symmetric */
do k=1 to nP;
if k ^= i1 && k ^= i2 then do; /* I don't use the cases when i1=i2 or i2=i1 */
D[i1,i2] = D[i1,i2] + (CM[i1,k] - CM[i2,k])**2 + (CM[k,i1] - CM[k,i2])**2;
end;
end;
D[i1,i2] = sqrt(D[i1,i2]);
D[i2,i1] = D[i1,i2];
end;
end;
print D;
end;
quit;
run;
... View more
08-02-2015
11:46 PM
Hi, I am trying to expand a data set to include missing time points. The data is: data have; input id year x; cards; 1 2001 1 1 2003 1 2 2002 1 2 2005 1 3 2002 1 3 2002 1 4 2000 1 4 2001 1 ; I am trying to expand to get the full time series for each id (not the same time series. Note x is just a place holder as all I care about is the id and year. The output I am trying to get is: id year x; 1 2001 1 1 2002 . 1 2003 1 2 2002 1 2 2003 . 2 2004 . 2 2005 1 3 2002 1 4 2000 1 4 2001 1 And I have been trying the following: proc expand data=have out=want from=daily method=none extrapolate; by id; id year; run; which gives: 1 1 2001 1 2 1 2002 . 3 1 2003 1 4 2 2002 1 5 2 2003 . 6 2 2004 . 7 2 2005 1 8 4 2000 1 9 4 2001 1 The issue I run into is I lose id=3 as it has the same start and stop year. I also tried to use proc sql but haven't been able too figure it out. Apologies if this is a repeat but I couldn't find code that worked. Thanks in advance for the help, -Kona
... View more