I can't import csv (semicolon delimited) to R. The problem is that some columns contain text with special character (like semicolon) which result in unequal number of columns in some rows.
Special characters are surrounded by quotas, like ";". The file is 2.3 GB. I can open this file correctly in Excel (at least part of it).
I tried readr, data.table, basic R and failed.
read_csv2("C:/PE_Omnibus_plik_płaski/omnibus_clean.csv")
I could do this in Notepad++, but would prefer R.