Title: | Creates Plots for the PACTA COP Executive Summary |
---|---|
Description: | This package contains plotting functions and a template for generating the executive summary that displays aggregated results of a PACTA COP exercise. |
Authors: | Monika Furdyna [aut, ctr, cre] |
Maintainer: | Monika Furdyna <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.1.9002 |
Built: | 2024-11-04 13:26:07 UTC |
Source: | https://github.com/rmi-pacta/pacta.executive.summary |
Get the path to the blank template PDF
blank_pdf()
blank_pdf()
A single string containing the path to a blank template PDF.
Lookup valid values
time_horizon_lookup
time_horizon_lookup
An object of class numeric
of length 1.
A data set containing the names of sectors and technologies according to P4I and P4B conventions.
p4i_p4b_sector_technology_mapper
p4i_p4b_sector_technology_mapper
An object of class tbl_df
(inherits from tbl
, data.frame
) with 28 rows and 4 columns.
Create a scenario alignment table
plot_alignment_table(data)
plot_alignment_table(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
library(dplyr) plot_alignment_table(toy_data_alignment_table %>% filter(asset_class == "equity"))
library(dplyr) plot_alignment_table(toy_data_alignment_table %>% filter(asset_class == "equity"))
Create a diagram of asset class coverage
plot_diagram(data = NULL)
plot_diagram(data = NULL)
data |
A data frame. In principle an output of
|
An object of class "htmlwidget".
plot_diagram(toy_data_diagram)
plot_diagram(toy_data_diagram)
Create a plot showing scorecard emissions
plot_emissions_scorecard(data)
plot_emissions_scorecard(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
plot_emissions_scorecard(toy_data_emissions_scorecard)
plot_emissions_scorecard(toy_data_emissions_scorecard)
Create a plot showing exposure to sectors relevant to scorecard
plot_exposures_scorecard(data)
plot_exposures_scorecard(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
plot_exposures_scorecard(toy_data_exposures_scorecard)
plot_exposures_scorecard(toy_data_exposures_scorecard)
Create a bar plot showing exposure to a sector
plot_exposures_survey(data)
plot_exposures_survey(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
data <- toy_data_exposures_survey %>% dplyr::filter(asset_class == "equity", technology == "coal") plot_exposures_survey(data)
data <- toy_data_exposures_survey %>% dplyr::filter(asset_class == "equity", technology == "coal") plot_exposures_survey(data)
Create a bar plot with exposures to fossil fuels
plot_fossil_bars(data)
plot_fossil_bars(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
plot_fossil_bars(toy_data_fossil_bars)
plot_fossil_bars(toy_data_fossil_bars)
Create a bar plot with exposures to low and high carbon technologies
plot_green_brown_bars(data)
plot_green_brown_bars(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
plot_green_brown_bars(toy_data_green_brown_bars)
plot_green_brown_bars(toy_data_green_brown_bars)
Create a scatter plot of exposure to low-carbon technology vs. alignment score
plot_scatter(data)
plot_scatter(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
library(dplyr) plot_scatter(toy_data_scatter %>% filter(asset_class == "equity"))
library(dplyr) plot_scatter(toy_data_scatter %>% filter(asset_class == "equity"))
Create a plot showing aggregated scores for portfolio and peers
plot_scores(data)
plot_scores(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
library(dplyr) plot_scores(toy_data_scores %>% filter(asset_class == "equity"))
library(dplyr) plot_scores(toy_data_scores %>% filter(asset_class == "equity"))
Create a plot showing aggregated score in scorecard
plot_scores_scorecard(data)
plot_scores_scorecard(data)
data |
A data frame. In principle, an output of
|
an object of class "ggplot".
data <- toy_data_scores %>% dplyr::filter( scope == "portfolio", entity == "this_portfolio" ) plot_scores_scorecard(data)
data <- toy_data_scores %>% dplyr::filter( scope == "portfolio", entity == "this_portfolio" ) plot_scores_scorecard(data)
Prepare data input for plotting technology alignment table based
on PACTA for investors output files. These files must have been wrangled with
prep_data_executive_summary()
before they can be passed to this function.
prep_alignment_table( results_portfolio, peers_results_aggregated, asset_class = c("equity", "bonds"), scenario_source = "WEO2023" )
prep_alignment_table( results_portfolio, peers_results_aggregated, asset_class = c("equity", "bonds"), scenario_source = "WEO2023" )
results_portfolio |
Data frame that contains pre-wrangled portfolio level PACTA results from a PACTA for investors analysis. |
peers_results_aggregated |
Data frame that contains pre-wrangled aggregate peer group level PACTA results from a PACTA for investors analysis. |
asset_class |
Character defining the asset class of the data. Must be either "equity" or "bonds" |
scenario_source |
Character. Must be a
|
data.frame
Prepare data input for climate strategy metrics (engagement) in the scorecard section based on COP survey results. The input data sets are pre-calculated and accessed via the directories pertaining to the given user_id.
prep_climate_strategy_scorecard_engagement( data, data_peers, peer_group = c("pensionfund", "assetmanager", "bank", "insurance", "other") )
prep_climate_strategy_scorecard_engagement( data, data_peers, peer_group = c("pensionfund", "assetmanager", "bank", "insurance", "other") )
data |
Data frame that contains pre-calculated climate strategy info on client engagement on the individual user level, based on the responses to the COP survey. |
data_peers |
Data frame that contains pre-calculated climate strategy info on peer level client engagement, based on the responses to the COP survey. |
peer_group |
Character. Peer group of the analysed portfolio. |
list of data.frames
Prepare data input for climate strategy metrics (initiatives) in the scorecard section based on COP survey results. The input data sets are pre-calculated and accessed via the directories pertaining to the given user_id.
prep_climate_strategy_scorecard_initiatives( data, data_peers, peer_group = c("pensionfund", "assetmanager", "bank", "insurance", "other") )
prep_climate_strategy_scorecard_initiatives( data, data_peers, peer_group = c("pensionfund", "assetmanager", "bank", "insurance", "other") )
data |
Data frame that contains pre-calculated climate strategy info on participation in initiatives on the individual user level, based on the responses to the COP survey. |
data_peers |
Data frame that contains pre-calculated climate strategy info on peer level participation in initiatives, based on the responses to the COP survey. |
peer_group |
Character. Peer group of the analysed portfolio. |
list of data.frames
Prepare data input for climate strategy metrics (voting rights) in the scorecard section based on COP survey results. The input data sets are pre-calculated and accessed via the directories pertaining to the given user_id.
prep_climate_strategy_scorecard_voting( data, data_peers, peer_group = c("pensionfund", "assetmanager", "bank", "insurance", "other") )
prep_climate_strategy_scorecard_voting( data, data_peers, peer_group = c("pensionfund", "assetmanager", "bank", "insurance", "other") )
data |
Data frame that contains pre-calculated climate strategy info on use of voting rights on the individual user level, based on the responses to the COP survey. |
data_peers |
Data frame that contains pre-calculated climate strategy info on peer level use of voting rights, based on the responses to the COP survey. |
peer_group |
Character. Peer group of the analysed portfolio. |
list of data.frames
Prepares data inputs needed for rendering the executive summary
prep_data_executive_summary( investor_name, portfolio_name, peer_group, start_year, scenario_source, scenario_selected, scenario_geography, equity_market, portfolio_allocation_method_equity, portfolio_allocation_method_bonds, green_techs, equity_results_portfolio, bonds_results_portfolio, peers_equity_results_aggregated, peers_bonds_results_aggregated, peers_equity_results_individual, peers_bonds_results_individual, indices_equity_results_portfolio, indices_bonds_results_portfolio, audit_file, emissions_portfolio, index_dir )
prep_data_executive_summary( investor_name, portfolio_name, peer_group, start_year, scenario_source, scenario_selected, scenario_geography, equity_market, portfolio_allocation_method_equity, portfolio_allocation_method_bonds, green_techs, equity_results_portfolio, bonds_results_portfolio, peers_equity_results_aggregated, peers_bonds_results_aggregated, peers_equity_results_individual, peers_bonds_results_individual, indices_equity_results_portfolio, indices_bonds_results_portfolio, audit_file, emissions_portfolio, index_dir )
investor_name |
Some description |
portfolio_name |
Some description |
peer_group |
Some description |
start_year |
Some description |
scenario_source |
Some description |
scenario_selected |
Some description |
scenario_geography |
Some description |
equity_market |
Some description |
portfolio_allocation_method_equity |
Some description |
portfolio_allocation_method_bonds |
Some description |
green_techs |
Some description |
equity_results_portfolio |
Some description |
bonds_results_portfolio |
Some description |
peers_equity_results_aggregated |
Some description |
peers_bonds_results_aggregated |
Some description |
peers_equity_results_individual |
Some description |
peers_bonds_results_individual |
Some description |
indices_equity_results_portfolio |
Some description |
indices_bonds_results_portfolio |
Some description |
audit_file |
Some description |
emissions_portfolio |
Some description |
index_dir |
Directory containing |
data.frame
Title
prep_diagram(audit_data = NULL, emissions_data = NULL, currency_exchange_value)
prep_diagram(audit_data = NULL, emissions_data = NULL, currency_exchange_value)
audit_data |
Some arg |
emissions_data |
Some arg |
currency_exchange_value |
currency exchange rate (USD / currency) |
Some output
Title
prep_emissions_scorecard( emissions_data = NULL, audit_data, currency_exchange_value )
prep_emissions_scorecard( emissions_data = NULL, audit_data, currency_exchange_value )
emissions_data |
Some arg |
audit_data |
Some arg |
currency_exchange_value |
Some arg |
Some output data
Prepare data input for plotting exposure chart on the climate score card
based on PACTA for investors output files. These files must have been
wrangled with prep_data_executive_summary()
before they can be passed to
this function.
prep_exposures_scorecard(results_portfolio, scenario_selected = "NZE_2050")
prep_exposures_scorecard(results_portfolio, scenario_selected = "NZE_2050")
results_portfolio |
Data frame that contains pre-wrangled portfolio level PACTA results from a PACTA for investors analysis. |
scenario_selected |
Character. Must be a |
data.frame
Prepare data input for plotting exposure to fossil fuels in survey section
based on PACTA for investors output files. These files must have been
wrangled with prep_data_executive_summary()
before they can be passed to
this function.
prep_exposures_survey( results_portfolio, peers_results_aggregated, technology = c("coal", "oil", "gas"), asset_class = c("equity", "bonds") )
prep_exposures_survey( results_portfolio, peers_results_aggregated, technology = c("coal", "oil", "gas"), asset_class = c("equity", "bonds") )
results_portfolio |
Data frame that contains pre-wrangled portfolio level PACTA results from a PACTA for investors analysis. |
peers_results_aggregated |
Data frame that contains pre-wrangled aggregate peer group level PACTA results from a PACTA for investors analysis. |
technology |
Character. Must be of length 1 and either |
asset_class |
Character. Must be of length 1 and either |
data.frame
Prepare data input for plotting upstream fossil fuel exposure based
on PACTA for investors output files. These files must have been wrangled with
prep_data_executive_summary()
before they can be passed to this function.
prep_fossil_bars( results_portfolio, peers_results_aggregated, indices_results_portfolio, scenario_selected = "NZE_2050" )
prep_fossil_bars( results_portfolio, peers_results_aggregated, indices_results_portfolio, scenario_selected = "NZE_2050" )
results_portfolio |
Data frame that contains pre-wrangled portfolio level PACTA results from a PACTA for investors analysis. |
peers_results_aggregated |
Data frame that contains pre-wrangled aggregate peer group level PACTA results from a PACTA for investors analysis. |
indices_results_portfolio |
Data frame that contains pre-wrangled PACTA results for indices from a PACTA for investors analysis. |
scenario_selected |
Character. Must be a |
data.frame
Prepare data input for plotting green brown bar chart based on PACTA for
investors output files. These files must have been wrangled with
prep_data_executive_summary()
before they can be passed to this function.
prep_green_brown_bars(results_portfolio, scenario_selected = "NZE_2050")
prep_green_brown_bars(results_portfolio, scenario_selected = "NZE_2050")
results_portfolio |
Data frame that contains pre-wrangled portfolio level PACTA results from a PACTA for investors analysis. |
scenario_selected |
Character. Must be a |
data.frame
Prepare data input for share of net zero committed companies in scorecard based on PACTA for investors output files.
prep_net_zero_commitments( total_portfolio, peer_group = c("pensionfund", "assetmanager", "bank", "insurance", "other"), fin_data_net_zero_targets, peers_net_zero_commitment )
prep_net_zero_commitments( total_portfolio, peer_group = c("pensionfund", "assetmanager", "bank", "insurance", "other"), fin_data_net_zero_targets, peers_net_zero_commitment )
total_portfolio |
Data frame. Contains processed input of the PACTA for Investors calculation. |
peer_group |
Character. Peer group of the analysed portfolio. |
fin_data_net_zero_targets |
Data frame. Contains information on which ISINs belong to companies that have committed to SBTI net zero targets. |
peers_net_zero_commitment |
DataFrame. Contains informations on results at peer group level to be compared with portfolio |
data.frame
Title
prep_scatter( results_portfolio, peers_results_aggregated, peers_results_individual, indices_results_portfolio, scenario_source = "WEO2023", scenario_selected = "NZE_2050", asset_class = c("equity", "bonds") )
prep_scatter( results_portfolio, peers_results_aggregated, peers_results_individual, indices_results_portfolio, scenario_source = "WEO2023", scenario_selected = "NZE_2050", asset_class = c("equity", "bonds") )
results_portfolio |
Some arg |
peers_results_aggregated |
Some arg |
peers_results_individual |
Some arg |
indices_results_portfolio |
Some arg |
scenario_source |
Some arg |
scenario_selected |
Some arg |
asset_class |
Some arg |
Some output
Prepare data input for plotting aggregate climate scores based
on PACTA for investors output files. These files must have been wrangled with
prep_data_executive_summary()
before they can be passed to this function.
prep_scores( results_portfolio, peers_results_aggregated, asset_class = c("equity", "bonds"), scenario_source = "WEO2023" )
prep_scores( results_portfolio, peers_results_aggregated, asset_class = c("equity", "bonds"), scenario_source = "WEO2023" )
results_portfolio |
Data frame that contains pre-wrangled portfolio level PACTA results from a PACTA for investors analysis. |
peers_results_aggregated |
Data frame that contains pre-wrangled aggregate peer group level PACTA results from a PACTA for investors analysis. |
asset_class |
Character. Must be either |
scenario_source |
Character. Must be a
|
data.frame
Prepare share of portfolio emissions covered by aggregate score analysis
prep_scores_emissions_scorecard(emissions_data, log_dir = .GlobalEnv$log_dir)
prep_scores_emissions_scorecard(emissions_data, log_dir = .GlobalEnv$log_dir)
emissions_data |
Data frame that contains pre-wrangled emissions data |
log_dir |
Path to log file |
numeric
Prepare share of portfolio emissions covered by aggregate score analysis
prep_scores_exposure_scorecard( audit_data, currency_exchange_value, total_portfolio_value_curr, log_dir = .GlobalEnv$log_dir )
prep_scores_exposure_scorecard( audit_data, currency_exchange_value, total_portfolio_value_curr, log_dir = .GlobalEnv$log_dir )
audit_data |
Data frame that contains pre-wrangled audit data |
currency_exchange_value |
Numeric vector with exchange rate |
total_portfolio_value_curr |
Numeric vector with total portfolio value in target currency |
log_dir |
Path to log file |
numeric
Prepare data input for plotting aggregate climate scores in the scorecard
section based on PACTA for investors output files. These files must have been
wrangled with prep_data_executive_summary()
before they can be passed to
this function. This simply calls prep_scores()
and filters the appropriate
values.
prep_scores_scorecard(results_portfolio, scenario_source = "WEO2023")
prep_scores_scorecard(results_portfolio, scenario_source = "WEO2023")
results_portfolio |
Data frame that contains pre-wrangled portfolio level PACTA results from a PACTA for investors analysis. |
scenario_source |
Character. Must be a
|
data.frame
A data set containing the carbon budgets by sector until 2030.
remaining_carbon_budgets
remaining_carbon_budgets
An object of class tbl_df
(inherits from tbl
, data.frame
) with 8 rows and 5 columns.
Renders executive summary
render_executive_summary( data, language, output_dir, exec_summary_dir, survey_dir, score_card_dir, analysis_inputs_dir, file_name = "template.Rmd", investor_name, portfolio_name, peer_group, total_portfolio, scenario_source = "WEO2023", scenario_selected = "NZE_2050", currency_exchange_value, log_dir )
render_executive_summary( data, language, output_dir, exec_summary_dir, survey_dir, score_card_dir, analysis_inputs_dir, file_name = "template.Rmd", investor_name, portfolio_name, peer_group, total_portfolio, scenario_source = "WEO2023", scenario_selected = "NZE_2050", currency_exchange_value, log_dir )
data |
List of data frames in the format returned by |
language |
Character single, valid two letter language identifier in uppercase e.g. "EN" |
output_dir |
Character single, valid filepath to a directory where the output will be saved |
exec_summary_dir |
Character single, valid filepath to a directory that contains the template, e.g. |
survey_dir |
Character single, valid filepath to a directory that contains the survey files for the user |
score_card_dir |
Character single, valid filepath to a directory that contains score card files for the user |
analysis_inputs_dir |
Character single, valid filepath to a PACTA analysis results directory that contains the SBTi data merged with financial data in the COP case |
file_name |
Character single, valid filename of the Rmd template file, e.g. "template.Rmd" |
investor_name |
Character single string specifying the investor name |
portfolio_name |
Character single string specifying the portfolio name |
peer_group |
Character single string specifying the peer group |
total_portfolio |
Data frame that contains the total portfolio as found in the standard PACTA processed inputs file "total_portfolio.rds" |
scenario_source |
Character single string specifying the selected scenario source, e.g. "GECO2023" |
scenario_selected |
Character single string specifying the selected scenario, e.g. "1.5C" |
currency_exchange_value |
Numeric single numeric value specifying the exchange rate from USD into the desired display currency, e.g. |
log_dir |
Character single, valid filepath to a directory that will contain the log file |
a pdf document written to output_dir
A data set containing the names of scenarios mapped to thresholds of likely climate outcomes.
scenario_thresholds
scenario_thresholds
An object of class tbl_df
(inherits from tbl
, data.frame
) with 9 rows and 3 columns.
prep_alignment_table()
Dataset imitating the output of prep_alignment_table()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_alignment_table
toy_data_alignment_table
An object of class tbl_df
(inherits from tbl
, data.frame
) with 40 rows and 7 columns.
Other datasets:
toy_data_diagram
,
toy_data_emissions_scorecard
,
toy_data_exposures_scorecard
,
toy_data_exposures_survey
,
toy_data_fossil_bars
,
toy_data_green_brown_bars
,
toy_data_scatter
,
toy_data_scores
,
toy_data_scores_scorecard_re
toy_data_alignment_table
toy_data_alignment_table
prep_diagram()
Dataset imitating the output of prep_diagram()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_diagram
toy_data_diagram
An object of class tbl_df
(inherits from tbl
, data.frame
) with 2 rows and 8 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_emissions_scorecard
,
toy_data_exposures_scorecard
,
toy_data_exposures_survey
,
toy_data_fossil_bars
,
toy_data_green_brown_bars
,
toy_data_scatter
,
toy_data_scores
,
toy_data_scores_scorecard_re
toy_data_diagram
toy_data_diagram
prep_emissions_scorecard()
Dataset imitating the output of prep_emissions_scorecard()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_emissions_scorecard
toy_data_emissions_scorecard
An object of class tbl_df
(inherits from tbl
, data.frame
) with 4 rows and 3 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_diagram
,
toy_data_exposures_scorecard
,
toy_data_exposures_survey
,
toy_data_fossil_bars
,
toy_data_green_brown_bars
,
toy_data_scatter
,
toy_data_scores
,
toy_data_scores_scorecard_re
toy_data_emissions_scorecard
toy_data_emissions_scorecard
prep_exposures_scorecard()
Dataset imitating the output of prep_exposures_scorecard()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_exposures_scorecard
toy_data_exposures_scorecard
An object of class tbl_df
(inherits from tbl
, data.frame
) with 8 rows and 3 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_diagram
,
toy_data_emissions_scorecard
,
toy_data_exposures_survey
,
toy_data_fossil_bars
,
toy_data_green_brown_bars
,
toy_data_scatter
,
toy_data_scores
,
toy_data_scores_scorecard_re
toy_data_exposures_scorecard
toy_data_exposures_scorecard
prep_exposures_survey()
Dataset imitating the output of prep_exposures_survey()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_exposures_survey
toy_data_exposures_survey
An object of class tbl_df
(inherits from tbl
, data.frame
) with 12 rows and 4 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_diagram
,
toy_data_emissions_scorecard
,
toy_data_exposures_scorecard
,
toy_data_fossil_bars
,
toy_data_green_brown_bars
,
toy_data_scatter
,
toy_data_scores
,
toy_data_scores_scorecard_re
toy_data_exposures_survey
toy_data_exposures_survey
prep_fossil_bars()
Dataset imitating the output of prep_fossil_bars()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_fossil_bars
toy_data_fossil_bars
An object of class tbl_df
(inherits from tbl
, data.frame
) with 18 rows and 7 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_diagram
,
toy_data_emissions_scorecard
,
toy_data_exposures_scorecard
,
toy_data_exposures_survey
,
toy_data_green_brown_bars
,
toy_data_scatter
,
toy_data_scores
,
toy_data_scores_scorecard_re
toy_data_fossil_bars
toy_data_fossil_bars
prep_green_brown_bars()
Dataset imitating the output of prep_green_brown_bars()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_green_brown_bars
toy_data_green_brown_bars
An object of class tbl_df
(inherits from tbl
, data.frame
) with 18 rows and 6 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_diagram
,
toy_data_emissions_scorecard
,
toy_data_exposures_scorecard
,
toy_data_exposures_survey
,
toy_data_fossil_bars
,
toy_data_scatter
,
toy_data_scores
,
toy_data_scores_scorecard_re
toy_data_green_brown_bars
toy_data_green_brown_bars
prep_scatter()
Dataset imitating the output of prep_scatter()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_scatter
toy_data_scatter
An object of class tbl_df
(inherits from tbl
, data.frame
) with 14 rows and 6 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_diagram
,
toy_data_emissions_scorecard
,
toy_data_exposures_scorecard
,
toy_data_exposures_survey
,
toy_data_fossil_bars
,
toy_data_green_brown_bars
,
toy_data_scores
,
toy_data_scores_scorecard_re
toy_data_scatter
toy_data_scatter
prep_scores()
Dataset imitating the output of prep_scores()
function. Allows the
user to create plots without PACTA_analysis-like input data.
toy_data_scores
toy_data_scores
An object of class tbl_df
(inherits from tbl
, data.frame
) with 28 rows and 5 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_diagram
,
toy_data_emissions_scorecard
,
toy_data_exposures_scorecard
,
toy_data_exposures_survey
,
toy_data_fossil_bars
,
toy_data_green_brown_bars
,
toy_data_scatter
,
toy_data_scores_scorecard_re
toy_data_scores
toy_data_scores
plot_scores_scorecard_real_estate()
Dataset imitating the input to plot_scores_scorecard_real_estate()
function.
Allows the user to create plots without PACTA_analysis-like input data.
toy_data_scores_scorecard_re
toy_data_scores_scorecard_re
An object of class tbl_df
(inherits from tbl
, data.frame
) with 2 rows and 2 columns.
Other datasets:
toy_data_alignment_table
,
toy_data_diagram
,
toy_data_emissions_scorecard
,
toy_data_exposures_scorecard
,
toy_data_exposures_survey
,
toy_data_fossil_bars
,
toy_data_green_brown_bars
,
toy_data_scatter
,
toy_data_scores
toy_data_scores_scorecard_re
toy_data_scores_scorecard_re