Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org.
Running Code
When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this:
library(tidyverse)
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
✔ dplyr 1.1.3 ✔ readr 2.1.4
✔ forcats 1.0.0 ✔ stringr 1.5.0
✔ ggplot2 3.4.4 ✔ tibble 3.2.1
✔ lubridate 1.9.3 ✔ tidyr 1.3.0
✔ purrr 1.0.2
── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
✖ dplyr::filter() masks stats::filter()
✖ dplyr::lag() masks stats::lag()
ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
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.
ggplot(blackrock_esg_vs_non_esg_etf) +aes(x = esg_etf, y = standard_etf, colour = sector) +geom_point(shape ="circle", size =1.5) +geom_smooth(span =0.75) +scale_color_hue(direction =1) +scale_x_continuous(trans ="log10") +scale_y_continuous(trans ="log10") +labs(x ="ESG ETF (ESGU)", y ="Standard ETF (IVV)", title ="ESG Fund vs. Non-ESG Fund", subtitle ="We made this chart using esquisse!", caption ="ValeriaLee" ) +theme_minimal() +facet_wrap(vars(sector))
Warning: Transformation introduced infinite values in continuous x-axis
Warning: Transformation introduced infinite values in continuous y-axis
Warning: Transformation introduced infinite values in continuous x-axis
Warning: Transformation introduced infinite values in continuous y-axis
`geom_smooth()` using method = 'loess' and formula = 'y ~ x'
ggplot(blackrock_esg_vs_non_esg_etf_long) +aes(x = sector, y = weight, colour = fund_type) +geom_point(shape ="circle", size =1.5) +scale_color_hue(direction =1) +labs(x="Sector", y ="Weight", title ="Weight on Different Sectors ", caption ="ValeriaLee" ) +theme_minimal()
ggplot(blackrock_esg_vs_non_esg_etf) +aes(x = esg_etf, y = sector) +geom_col(fill ="#009999")+labs(x ="Number of ESG ETFs", y ="Sector", title ="Number of ESG ETFs in each sector", caption ="ValeriaLee") +theme_minimal()
Warning: The following aesthetics were dropped during statistical transformation: colour
ℹ This can happen when ggplot fails to infer the correct grouping structure in
the data.
ℹ Did you forget to specify a `group` aesthetic or to convert a numerical
variable into a factor?
Q5
ggplot(blackrock_esg_vs_non_esg_etf) +aes(x = standard_etf, y = sector) +geom_boxplot(fill ="#009999") +scale_x_continuous(trans ="log10") +labs(x ="Standard ETFS", y ="Sector", title ="Boxplot of Standard ETFs in each sector")
Warning: Transformation introduced infinite values in continuous x-axis