I am trying to read a CSV file into R which makes use of two different separators: the "," and the ";". Below is an short example of the CSV format:
"car_brand; car_model","total"
"Toyota; 9289","29781"
"Seat; 20981","1610"
"Volkswagen; 11140","904"
"Suzuki; 11640","658"
"Renault; 13075","647"
"Ford; 15855","553"
The CSV file should contain 3 columns, car_brand
, car_model
, and total
. However, car_brand
and car_model
are separated by a ";" rather than a ",". Any guidance on how to import such a file would be really appreciated.