We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have two csv First & Second
First is having data
V1 V2 V3 V4 V5
Row 1: 1 2 3 4 5
Row 2: 1 6 7
Second is having
V1 V2
Row 1: A 1
Row 2: B 1
Row 3: C X
I want to compare Second[2] with First[1] if matches add Second[1] to column of First
like
First =
V1 V2 V3 V4 V5 V6 V7
Row 1: 1 2 3 4 5 A B
Row 2: 1 6 7 A B
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have two csv First & Second
First is having data
Row 1: 1 2 3 4 5
Row 2: 1 6 7
Second is having
Row 1: A 1
Row 2: B 1
Row 3: C X
I want to compare Second[2] with First[1] if matches add Second[1] to column of First
like
First =
Row 1: 1 2 3 4 5 A B
Row 2: 1 6 7 A B
The text was updated successfully, but these errors were encountered: