Hi..
I am new to rust and trying to do the following..
I have two csv files. one with roll no and names of students and other with roll no and marks of the same students(not in the same order)
I would like to take in data from both files and use roll no as common field and merge both.
rollno. name
7 Chris
2 rob
4 tom
3 Jim
rollno. physics. chem bio
4 78 89 82
3 81 98 94
7 87 79 95
2 81 96 84
I want to merge both the above csv files and perform some calculations and write the output file to a csv as below.
roll_no physics chem bio names total avg
4 78 89 82 tom 249 83
3 81 98 94 jim 273 91
7 87 79 95 chris 261 87
2 81 96 84 rob 261 87
Please help / guide ..