Physical Supply-Use Table (PSUT) data frame column names
psut_cols.Rd
A string list containing named names of columns in PSUT data frames.
Items in the list provide default values for column name function arguments
throughout the IEATools
package.
Format
A string list with 16 entries.
- resources,R
The name of a column in a wide-by-matrices data frame containing resource (
R
) matrices.- U_feed
The name of a column in a wide-by-matrices data frame containing use (
U
) matrices that exclude energy industry own use.- U_eiou
The name of a column in a wide-by-matrices data frame containing use (
U
) matrices that contain exclusively energy industry own use.- U
The name of a column in a wide data-by-matrices frame containing use (
U
) matrices that are the sum ofU_feed
andU_eiou
matrices.- r_eiou
The name of a column in a wide-by-matrices data frame containing the ratio of
U_eiou
andU
matrices.- make,V
The name of a column in a wide-by-matrices data frame containing make (
V
) matrices.- final_demand,Y
The name of a column in a wide-by-matrices data frame containing final demand (
Y
) matrices.- s_units
The name of a column in a wide-by-matrices data frame containing unit summation (
S_units
) matrices.- matvals
The name of a column in a tidy data frame containing matrices.
- Y_fu_details
The name of a column in a tidy data frame containing detailed Y_u matrices that contain the following information: final energy product, destination sector, final-to-useful machine, and useful product.
- U_eiou_fu_details
The name of a column in a tidy data frame containing detailed U_EIOU_u matrices that contain the following information: final energy product, destination energy industry, final-to-useful machine, and useful product.
Details
Note that some of the values are repeated,
thereby providing synonyms.
E.g., both resources
and R
point to the "R" column name.
Examples
psut_cols
#> $resources
#> [1] "R"
#>
#> $R
#> [1] "R"
#>
#> $use
#> [1] "U"
#>
#> $U
#> [1] "U"
#>
#> $U_feed
#> [1] "U_feed"
#>
#> $U_eiou
#> [1] "U_EIOU"
#>
#> $r_eiou
#> [1] "r_EIOU"
#>
#> $make
#> [1] "V"
#>
#> $V
#> [1] "V"
#>
#> $final_demand
#> [1] "Y"
#>
#> $Y
#> [1] "Y"
#>
#> $B
#> [1] "B"
#>
#> $s_units
#> [1] "S_units"
#>
#> $matvals
#> [1] "matvals"
#>
#> $Y_fu_details
#> [1] "Y_fu_details"
#>
#> $U_eiou_fu_details
#> [1] "U_EIOU_fu_details"
#>