Checks if all packages needed for the sitrep ecosystem are installed and loads properly. Useful for verifying offline readiness.

sitrep_check_deps(quiet = FALSE)

Arguments

quiet

Should output be suppressed? Default is FALSE

Value

Named logical vector indicating which packages are available. Names are package names, values are TRUE if available, FALSE otherwise.

Examples

# \donttest{
# Check what's missing before going offline
sitrep_check_deps()
#> Warning: no DISPLAY variable so Tk is not available
#> Registered S3 method overwritten by 'tsibble':
#>   method               from 
#>   as_tibble.grouped_df dplyr
#> All 46 sitrep ecosystem packages are available!
#> Ready for offline use.
# }