Skip to contents

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.

Usage

aggregate_cols

Format

A string list with 10 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.

gross_aggregate_primary

The name of a column in a wide-by-matrices data frame containing aggregates of gross primary energy.

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 energy or useful energy.

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 energy or useful energy.

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 energy or useful energy.

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"
#> 
#> $net_aggregate_demand
#> [1] "EX.fd_net"
#> 
#> $gross_aggregate_demand
#> [1] "EX.fd_gross"
#> 
#> $aggregate_demand
#> [1] "EX.fd"
#> 
#> $region
#> [1] "Region"
#> 
#> $aggregated_suffix
#> [1] "_aggregated"
#> 
#> $product_sector
#> [1] "Product.Industry.Sector"
#> 
#> $chop_df
#> [1] "Chopped.ECCs"
#>