Return shape as [nrows, ncols]
@param[in] df The data frame @return Array of dimensions [nrows, ncols]
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(data_frame), | intent(in) | :: | df |
function df_shape(df) result(dims) type(data_frame), intent(in) :: df integer, dimension(2) :: dims dims(1) = df % nrows() dims(2) = df % ncols() end function df_shape