save_progress_visualisation()

save_progress_visualisation R Documentation

Save Progress Visualisation

Description

Generates a visualisation of project progress and saves it as HTML and PNG.

Usage

save_progress_visualisation(
  sel_script,
  output_file = "project_status",
  output_dir = here::here("Documentation/Progress"),
  background_color = "white",
  level_separation = 250
)

Arguments

sel_script

The script file to be visualised.

output_file

The name of the output file (default: "project_status").

output_dir

Directory where the output files will be saved (default: "Outputs/Figures").

level_separation

Level separation for the visualisation graph (default: 250).

Details

Uses ‘targets::tar_visnetwork’ to create a network graph and saves it as HTML using ‘visNetwork::visSave’. Also generates a static PNG image using ‘webshot2::webshot’.

Back to top