Displaying 1 result from an estimated 1 matches for "op1_5".
2012 Feb 29
2
How to replace the values in a column
...ies, and want to replace some of them
into different names.
I tried various of ways, still don't know how to do that most efficiently..
Here is part of the example data:
Gen Rep
A_1 1
A_1 2
A_2 1
A_2 2
B_1 1
B_1 2
B_3 1
B_3 2
OP1_1 1
OP1_1 2
OP1_5 1
OP1_5 2
For example, I want to replace A_1, B_3, OP1_1 into different name
"Wynda"
So that the expected file should become:
Gen Rep
Wynda 1
Wynda 2
A_2 1
A_2 2
B_1 1
B_1 2
Wynda 1
Wynda 2
Wynda...