合并数据帧中的两列,特定情况下使用R。

huangapple go评论91阅读模式
英文:

Merge two colum of a data frame with particulars cases R

问题

You can achieve the desired result by concatenating the values from the "MANUAL.ID" and "AUTO.ID" columns into a new "species" column in your data frame. Here's an example of how to do it in Python using the pandas library:

  1. import pandas as pd
  2. # Create your DataFrame
  3. data = {'MANUAL.ID': ['Barbar', 'Barbar', 'Barbar', 'Barbar', 'Pippip', ''],
  4. 'AUTO.ID': ['Barbar', '', 'Pippip', 'Pippip,Hypsav', 'Barbar', 'Barbar,Pippip']}
  5. df = pd.DataFrame(data)
  6. # Concatenate the values from both columns into a new 'species' column
  7. df['species'] = df['MANUAL.ID'] + ',' + df['AUTO.ID']
  8. # Display the resulting DataFrame
  9. print(df[['species']])

This code will create a new "species" column in your DataFrame that contains the merged values from "MANUAL.ID" and "AUTO.ID," separated by a comma.

英文:

I have a data frame which looks like that :

MANUAL.ID AUTO.ID
Barbar Barbar
Barbar
Barbar Pippip
Barbar Pippip,Hypsav
Pippip Barbar
Barbar,Pippip

Basically I whould merge the both columns in a single called species and obtain this kind of result :

species
Barbar,Barbar
Barbar
Barbar,Pippip
Barbar,Pippip,Hypsav
Pippip,Barbar
Barbar,Pippip

What can I do to get the result ?

答案1

得分: 1

An approach using paste with apply

  1. data.frame(species = apply(df, 1, function(x)
  2. ifelse(any(x == ""), paste(x, collapse=""), paste(x, collapse=","))))
  3. species
  4. 1 Barbar,Barbar
  5. 2 Barbar
  6. 3 Barbar,Pippip
  7. 4 Barbar,Pippip,Hypsav
  8. 5 Pippip,Barbar
  9. 6 Barbar,Pippip

Data

  1. df <- structure(list(MANUAL.ID = c("Barbar", "Barbar", "Barbar", "Barbar",
  2. "Pippip", ""), AUTO.ID = c("Barbar", "", "Pippip", "Pippip,Hypsav",
  3. "Barbar", "Barbar,Pippip")), row.names = c(NA, -6L), class = "data.frame")

(Note: I've translated the code part as requested.)

英文:

An approach using paste with apply

  1. data.frame(species = apply(df, 1, function(x)
  2. ifelse(any(x == &quot;&quot;), paste(x, collapse=&quot;&quot;), paste(x, collapse=&quot;,&quot;))))
  3. species
  4. 1 Barbar,Barbar
  5. 2 Barbar
  6. 3 Barbar,Pippip
  7. 4 Barbar,Pippip,Hypsav
  8. 5 Pippip,Barbar
  9. 6 Barbar,Pippip

Data

  1. df &lt;- structure(list(MANUAL.ID = c(&quot;Barbar&quot;, &quot;Barbar&quot;, &quot;Barbar&quot;, &quot;Barbar&quot;,
  2. &quot;Pippip&quot;, &quot;&quot;), AUTO.ID = c(&quot;Barbar&quot;, &quot;&quot;, &quot;Pippip&quot;, &quot;Pippip,Hypsav&quot;,
  3. &quot;Barbar&quot;, &quot;Barbar,Pippip&quot;)), row.names = c(NA, -6L), class = &quot;data.frame&quot;)

huangapple
  • 本文由 发表于 2023年4月17日 18:59:43
  • 转载请务必保留本文链接:https://go.coder-hub.com/76034418.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定