Row-Based#
The rowAlign function aligns corresponding rows from left and right based on their values. |
|
For each row (a vector is viewed as a one-column matrix here), return 1 if all rows of all input variables are true; otherwise return 0. |
|
Calculate the average of each row of the arguments. |
|
Calculate the coefficient estimate of the ordinary-least-squares regression of Y on X by row and return a vector with the same number of rows of X. |
|
Calculate the correlation between X and Y by row and return a vector with the same number of rows of X. |
|
Calculate the covariance between X and Y by row and return a vector with the same number of rows of X. |
|
Return the number of non-null elements in each row of the arguments. |
|
rowDenseRank can be viewed as function denseRank applied on rows instead of columns. |
|
If both X and Y are vectors/matrices, calculate the inner product between X and Y by row. |
|
If both X and Y are vectors/matrices, calculate the Euclidean distance between X and Y by row. |
|
Return the index of the maximum in each row. |
|
Return the index of the minimum in each row. |
|
Return the kurtosis of each row in X. |
|
Calculate the maximum value of each row of the arguments. |
|
Calculate the minimum value of each row of the arguments. |
|
The rowMove function shifts the elements in each row of X left or right by a specified number of steps. |
|
For each row in X, rowNext shifts the elements to the left for one position. |
|
For each row in X, rowPrev shifts the elements to the right for one position. |
|
Calculate the product of each row of the arguments. |
|
Conduct the following operation within each row of matrix X: |
|
Return the skewness of each row in X. |
|
Calculate the (sample) standard deviation of each row of the arguments. |
|
Calculate the population standard deviation of each row. |
|
Calculate the sum of each row of the arguments. |
|
Calculate the sum of square of all elements in each row of the arguments. |
|
If both X and Y are vectors/matrices, calculate the tanimoto distance between X and Y by row. |
|
Calculate the (sample) variance of each row of the arguments. |
|
Calculate the population variance of each row. |
|
Calculate the weighted average of X by row with Y as the weights and return a vector with the same number of rows of X. |
|
For each row, return 1 if odd number of columns are true; otherwise return 0. |
|
Calculate the number of elements (null values included) of each row. |