products_unit_homogeneous | R Documentation |
Returns TRUE
if products are unit-homogeneous
according to the S_units
matrix and
FALSE
otherwise.
products_unit_homogeneous(
.sutmats = NULL,
S_units = "S_units",
keep_details = FALSE,
products_unit_homogeneous = ".products_unit_homogeneous"
)
.sutmats |
a data frame of supply-use table matrices with matrices arranged in columns. |
S_units |
an |
keep_details |
if |
products_unit_homogeneous |
name for the boolean that tells whether products in |
a list or data frame containing TRUE
if products in S_units
are unit-homogeneous, FALSE
otherwise.
importFrom magrittr extract2
library(magrittr)
library(tidyr)
UKEnergy2000mats %>%
spread(key = "matrix.name", value = "matrix") %>%
products_unit_homogeneous() %>%
extract2(".products_unit_homogeneous")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.