Skip to content

Instantly share code, notes, and snippets.

@maurolepore
Last active November 12, 2021 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maurolepore/d8702d449cdc11515a82173116391dd6 to your computer and use it in GitHub Desktop.
Save maurolepore/d8702d449cdc11515a82173116391dd6 to your computer and use it in GitHub Desktop.
library(A)

input_path_project_specific <- "/home/me/path/a"
input_path_project_agnostic <- "/home/me/path/b"
output_path <- "/home/me/path/c"

run_prep_calculation_loans(
  input_path_project_specific,
  input_path_project_agnostic,
  data_prep_output_path = input_path_project_specific
)

run_stress_test(
  "loans",
  input_path_project_specific,
  input_path_project_agnostic,
  output_path
)

Here: https://git.io/JXbIW

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment