Skip to content

Commit

Permalink
Merge pull request #3 from jonathanpbishop/master
Browse files Browse the repository at this point in the history
Change from xlsx to writexl
  • Loading branch information
mbedinger authored Aug 14, 2023
2 parents 47b9aa0 + 62614a2 commit f79d395
Show file tree
Hide file tree
Showing 4 changed files with 2,001 additions and 2,001 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ Depends:
sf,
tidytext,
vctrs,
xlsx,
R (>= 4.3.1)
writexl,
R (>= 4.3.1)
4 changes: 2 additions & 2 deletions R/function_export_AHgen.R
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,10 @@ export_AHgen <- function(output,

filenameXLSX <- filenameTimestamp(prefix = prefixXLSX, extension = ".xlsx")

outputXLSX %>% xlsx::write.xlsx(filenameXLSX)
outputXLSX %>% writexl::write_xlsx(filenameXLSX)
message(paste0("Files saved as: "))
message(paste0("\n\t", filenameXLSX))

}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ USAH_template_baseline %>%
# If subnetwork assignment has been updated, write out to .xlsx for future use
USAH_template_baseline$vInfo %>%
write.xlsx(
writexl::write_xlsx(
filenameTimestamp(
prefix = paste0(directory,
name, "_", version, "_", location, "_", scenario,
Expand All @@ -195,4 +195,4 @@ Next in [Vignette 7B - Application - Apply OSMtidy data](Vignette-7B---Applicati


## Last updated
This vignette is associated with `AHgen` v1.0.0, and was last updated by Melissa Bedinger on `r Sys.Date()`.
This vignette is associated with `AHgen` v1.0.0, and was last updated by Melissa Bedinger on `r Sys.Date()`.

Large diffs are not rendered by default.

0 comments on commit f79d395

Please sign in to comment.