We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
# path <- system.file("extdata", "pscis_phase1.xlsm", package = "fpr") library(ngr) library(knitr) library(tidyverse) path <- "~/Projects/repo/fpr/inst/extdata/pscis_phase1.xlsm" f <- ngr::ngr_xl_map_formulas(path = path, sheet = "PSCIS Assessment Worksheet", rowid_colnames = 4, rowid_formulas = 5) f2 <- f |> dplyr::mutate( formula_name = formula_colname, formula_name = stringr::str_replace_all(formula_name, "stream_width_ratio", "swr"), formula_name = stringr::str_replace_all(formula_name, "culvert_length", "culvert_len"), formula_name = stringr::str_replace_all(formula_name, "culvert_", "cv_"), formula_name = dplyr::case_when( stringr::str_detect(formula_name, "_score$") ~ stringr::str_c("fpr_xfm_paw_score_", stringr::str_remove(formula_name, "_score$")), TRUE ~ stringr::str_c("fpr_xfm_paw_", formula_name) ), url = paste0("https://www.newgraphenvironment.com/fpr/reference/", formula_name, ".html") ) f2 |> knitr::kable( )
# Add Markdown checkboxes f3 <- f2 |> dplyr::mutate( formula_with_checkbox = stringr::str_c("- [ ] ", formula_name) )
cat(f3$formula_with_checkbox, sep = "\n")
Created on 2025-01-14 with reprex v2.1.0
The text was updated successfully, but these errors were encountered:
sfpr_structure_size_type
fpr_xfm_paw_xing_fix
fpr_xfm_paw_xing_size
fpr_xfm_paw_all_scores_result
No branches or pull requests
Print the list of checkboxes
cat(f3$formula_with_checkbox, sep = "\n")
Created on 2025-01-14 with reprex v2.1.0
The text was updated successfully, but these errors were encountered: