Python Forum
Finding Duplicate in CSV file
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Finding Duplicate in CSV file
#1
I have CSV with entries like below. I want to generate the CSV file which merge the location into rows if the string before the ',' matches like shown in highlighted.

driver/travel1/,location1
driver/travel1/,location2
driver/travel1/,location3
driver/travel1/,location4
driver/travel1/,location5
driver/travel2/,location6
driver/travel2/,location7
driver/travel2/,location8
driver/travel2/,location9
driver/travel2/,location10


driver/travel1/,[location1:location2:location3:location4:location5]
driver/trave2/,[location6:location7:location8:location9:location10]
Reply
#2
what have you tried?
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply
#3
(May-13-2020, 08:20 PM)buran Wrote: what have you tried?


I was trying with pandas, but looks like pandas is not supported in version3.8
Merge = df.read_csv('./Sort_output.txt')
df = df.groupby('Node').agg({'Child'})
print(df)
Reply
#4
(May-13-2020, 08:25 PM)bond009 Wrote: [quote='buran' pid='114314' dateline='1589401219']
what have you tried?


I was trying with pandas, but looks like pandas is not supported in version3.8
Merge = df.read_csv('./Sort_output.txt')
df = df.groupby('Node').agg({'Child'})
print(df)
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  capture next block of text after finding error in file kdefilip2 6 3,426 Nov-27-2019, 07:36 PM
Last Post: buran
  Finding a specific line in a file Vqlk 3 2,580 Sep-07-2019, 08:20 PM
Last Post: Axel_Erfurt
  Duplicate output when calling a custom function from the same file? road2knowledge 2 2,389 May-10-2019, 07:58 AM
Last Post: road2knowledge
  finding own python source file to read it Skaperen 3 3,011 Aug-27-2018, 11:23 PM
Last Post: Skaperen
  Finding a number in a file printing out number and next word petertyler 2 2,545 May-10-2018, 09:09 AM
Last Post: petertyler
  Finding the .py file ichabod801 9 7,106 Sep-20-2017, 11:25 PM
Last Post: Larz60+
  Matching Duplicate file names with different extentions wmc326 2 3,989 Aug-07-2017, 11:59 PM
Last Post: wavic

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020