Let M be 2X1 matrix ( means M has 2 rows and 1 column ).Typically a 2X1 matrix is in the form {eq}M = \begin{bmatrix} &m_{11} \\ &m_{21} \\ &m_{31} \\ \end{bmatrix} {/eq}. An element from ith row and jth column of the matrix M is represented as {eq}m_{ij...
I am trying to transpose a data set with the column names as dates to later use in iml matrix multiplication (so thus, the columns must be sorted correctly) proc sort data=msfinal2; by cluster venue game_date; proc transpose data=msfinal2 out=test1234 LET; by cluster venue; id game_...
I am trying to transpose a data set with the column names as dates to later use in iml matrix multiplication (so thus, the columns must be sorted correctly) proc sort data=msfinal2; by cluster venue game_date; proc transpose data=msfinal2 out=test1234 LET; by cluster venue; id game_...