Skip to content

Commit

Permalink
squelch readr msgs about columns
Browse files Browse the repository at this point in the history
  • Loading branch information
CJ Yetman - RMI authored and CJ Yetman - RMI committed Aug 18, 2024
1 parent e6de821 commit 6aa7870
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions R/plot_aggregate_loanbooks.R
Original file line number Diff line number Diff line change
Expand Up @@ -54,15 +54,17 @@ plot_aggregate_loanbooks <- function() {
file = file.path(
output_path_aggregated,
glue::glue("company_exposure_net_aggregate_alignment{file_by_group}.csv")
)
),
show_col_types = FALSE
)

company_aggregated_alignment_bo_po <-
readr::read_csv(
file = file.path(
output_path_aggregated,
glue::glue("company_exposure_bo_po_aggregate_alignment{file_by_group}.csv")
)
),
show_col_types = FALSE
)

## loanbook level results----
Expand All @@ -71,15 +73,17 @@ plot_aggregate_loanbooks <- function() {
file = file.path(
output_path_aggregated,
glue::glue("loanbook_exposure_bo_po_aggregate_alignment{file_by_group}.csv")
)
),
show_col_types = FALSE
)

loanbook_exposure_aggregated_alignment_net <-
readr::read_csv(
file = file.path(
output_path_aggregated,
glue::glue("loanbook_exposure_net_aggregate_alignment{file_by_group}.csv")
)
),
show_col_types = FALSE
)


Expand Down

0 comments on commit 6aa7870

Please sign in to comment.