A string list containing named names of columns in aggregate data frames.
Items in the list provide default values for column name function arguments
to aggregation functions throughout the Recca
package.
Format
A string list with 19 entries.
- aggregate_primary
The name of a column in a wide-by-matrices data frame containing aggregates of primary energy.
- net_aggregate_primary
The name of a column in a wide-by-matrices data frame containing aggregates of net primary energy. Net and gross aggregates will be identical at the primary stage.
- gross_aggregate_primary
The name of a column in a wide-by-matrices data frame containing aggregates of gross primary energy. Net and gross aggregates will be identical at the primary stage.
- aggregate_final
The name of a column in a wide-by-matrices data frame containing aggregates of final energy.
- net_aggregate_final
The name of a column in a wide-by-matrices data frame containing aggregates of net final energy, not including energy industry own use.
- gross_aggregate_final
The name of a column in a wide-by-matrices data frame containing aggregates of gross final energy, including energy industry own use.
- aggregate_useful
The name of a column in a wide-by-matrices data frame containing aggregates of useful energy.
- net_aggregate_useful
The name of a column in a wide-by-matrices data frame containing aggregates of net useful energy, not including energy industry own use.
- gross_aggregate_useful
The name of a column in a wide-by-matrices data frame containing aggregates of gross useful energy, including energy industry own use.
- aggregate_services
The name of a column in a wide-by-matrices data frame containing aggregates of energy services.
- net_aggregate_services
The name of a column in a wide-by-matrices data frame containing aggregates of net energy services, not including energy industry own use.
- gross_aggregate_services
The name of a column in a wide-by-matrices data frame containing aggregates of gross energy services, including energy industry own use.
- aggregate_demand
The name of a column in a wide-by-matrices data frame containing aggregates of final demand energy (including energy industry own use), regardless of whether the last stage is final, useful, or services.
- net_aggregate_demand
The name of a column in a wide-by-matrices data frame containing aggregates of net final demand energy (excluding energy industry own use), regardless of whether the last stage is final, useful, or services.
- gross_aggregate_demand
The name of a column in a wide-by-matrices data frame containing aggregates of gross final demand energy (including energy industry own use), regardless of whether the last stage is final, useful, or services.
- region
The name of a column in a wide-by-matrices data frame containing regions.
- aggregated_suffix
The suffix for column names containing aggregated matrices.
- product_sector
The name of a column containing names of products, industries, or sectors. Default is "Product.Industry.Sector".
- chop_df
The name of a column containing a nested data frame of chopped energy conversion chains. Default is "Chopped.ECCs".
Examples
aggregate_cols
#> $aggregate_primary
#> [1] "EX.p"
#>
#> $net_aggregate_primary
#> [1] "EX.p_net"
#>
#> $gross_aggregate_primary
#> [1] "EX.p_gross"
#>
#> $aggregate_final
#> [1] "EX.f"
#>
#> $net_aggregate_final
#> [1] "EX.f_net"
#>
#> $gross_aggregate_final
#> [1] "EX.f_gross"
#>
#> $aggregate_useful
#> [1] "EX.u"
#>
#> $net_aggregate_useful
#> [1] "EX.u_net"
#>
#> $gross_aggregate_useful
#> [1] "EX.u_gross"
#>
#> $aggregate_services
#> [1] "EX.s"
#>
#> $net_aggregate_services
#> [1] "EX.s_net"
#>
#> $gross_aggregate_services
#> [1] "EX.s_gross"
#>
#> $aggregate_demand
#> [1] "EX.fd"
#>
#> $net_aggregate_demand
#> [1] "EX.fd_net"
#>
#> $gross_aggregate_demand
#> [1] "EX.fd_gross"
#>
#> $region
#> [1] "Region"
#>
#> $aggregated_suffix
#> [1] "_aggregated"
#>
#> $product_sector
#> [1] "Product.Industry.Sector"
#>
#> $chop_df
#> [1] "Chopped.ECCs"
#>