如何读取并合并多个具有重复 ID 列的 CSV 列表?
我有一个 CSV 列表,其中包含单个动物的数据。我为每只动物准备了 2 个 CSV,因此每个 CSV 中的 ID 列都是相同的。此外,每个人的一个 CSV 包含的列数比另一个 CSV 多得多。如何读取 CSV 列表并将所有 CSV 合并到一个数据框中?
RSF_df <- list.files("C:\\Users\\kujld016\\Desktop\\All\\Projects\\Thermal_Deer\\Analysis\\Output\\used_unusedPoints",
pattern="*.csv", full.names=T) %>%
lapply(read_csv) %>%
bind_rows()
Error in check4duplicates(idcolumn, name) :
Not all ids in C:\Users\kujld016\Desktop\All\Projects\Thermal_Deer\Analysis\Output\used_unusedPoints/ UsedPoints_ A628 .csv are unique: "B82143"
I have a list of CSVs that contain data for individual animals. I have 2 CSVs for each animal so the ID column in each of those CSVs is the same. Also, one CSV for each individual contains many more columns than the other. How can I read in the list of CSVs and combine all CSVs into a single data frame?
RSF_df <- list.files("C:\\Users\\kujld016\\Desktop\\All\\Projects\\Thermal_Deer\\Analysis\\Output\\used_unusedPoints",
pattern="*.csv", full.names=T) %>%
lapply(read_csv) %>%
bind_rows()
Error in check4duplicates(idcolumn, name) :
Not all ids in C:\Users\kujld016\Desktop\All\Projects\Thermal_Deer\Analysis\Output\used_unusedPoints/ UsedPoints_ A628 .csv are unique: "B82143"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们能做的,
We can do,