Skip to content

Instantly share code, notes, and snippets.

@brshallo
Created February 21, 2022 22:13
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save brshallo/c47169de43f4be62c655200620565697 to your computer and use it in GitHub Desktop.
show_in_excel <- function(.data){
tmp <- paste0(tempfile(), ".csv")
write.csv(.data, tmp)
fs::file_show(path = tmp)
}
@brshallo
Copy link
Author

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