Rows: 537 Columns: 14
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (4): ticker, company_name, sector, esg_uw_ow
dbl (7): esg_etf, standard_etf, esg_tilt, esg_tilt_z_score, esg_tilt_rank, e...
lgl (3): in_esg_only, in_standard_only, in_on_index_only
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
Graph 1 : No. of componies ESG overweight Vs under weights . This implies that more companies are expected to underperform regards their ESG targets. Additionally, it is clear that the over weight companies shave a better ESG tilt.
You can observe a positive relationship between standard etf values and esg etf values implying that high standard etf's also have high esg etf's. However, it is interesting to see that high ETF standards low ESG tilts .
etf_comparison |>ggplot(aes(x = esg_etf, y =standard_etf)) +geom_point() +geom_smooth(method = lm)
`geom_smooth()` using formula = 'y ~ x'
etf_comparison |>ggplot(aes(x = esg_tilt, y =standard_etf)) +geom_point() +geom_smooth(method = lm)
`geom_smooth()` using formula = 'y ~ x'
Graph 3 : ESG tilt across sectors . The below graphs calculate the mean and median to asses which sectors have a greater ESG tilt. According to the data, the communication sector has the lowest tilt, while the energy and tech sector have the highest tilt .