I'm working on a dataset where I had to remove apostrophes (') from the data to proceed further. I used
!sed s/"'"//g file.csv
and it gave me the output but the changes are not being saved in the original .csv file. what should I do?
I'm working on a dataset where I had to remove apostrophes (') from the data to proceed further. I used
!sed s/"'"//g file.csv
and it gave me the output but the changes are not being saved in the original .csv file. what should I do?