Last active
June 8, 2023 12:02
-
-
Save jflanaga/1ab2fa1434064780d2237e73d9e669c4 to your computer and use it in GitHub Desktop.
R Script for splitting data frame and then saving separate .csv
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#---------------------------------------------------------------------------------------- | |
# File: | |
# Author: Joseph Flanagan, adopted from https://stackoverflow.com/questions/10002021/split-dataframe-into-multiple-output-files-in-r | |
# email: [email protected] | |
# Purpose: Split a dataframe by group, then save each as separate .csv file | |
#---------------------------------------------------------------------------------------- | |
# new tidyverse solution with `group_walk` | |
library(dplyr) | |
library(readr) | |
iris %>% | |
group_by(Species) %>% | |
group_walk(~ write_csv(.x, paste0(.y$Species, ".csv"))) | |
# Old version | |
library(tidyverse) | |
# Make a copy of iris | |
iris2 <- iris | |
# Split by variable | |
spt2 <- split(iris2, iris2$Species) | |
# Save | |
lapply(names(spt2), function(x){ | |
write_csv(spt2[[x]], paste(x, ".csv", sep = "")) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you!!!