View source: R/flatten_array.R
flatten_array | R Documentation |
This function takes in a 3D array of values, effects or t_stats, etc. and returns a 2D matrix in which each entry contains a single value representing all corresponding entries in the 3rd dimension. This number is determined by the function specified by the user. It could be min, max, mean, etc.
flatten_array(arrayX, margin1, margin2, slice_fun)
arrayX |
3D array of values, effects or t_stats, etc. |
margin1 |
dimension that will end up as the columns of the final matrix |
margin2 |
dimension that will end up as the rows of the final matrix |
slice_fun |
summary function. The function by which to summarize
the remaining dimension e.g., |
A 2D matrix summarizing the input array
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.