How do you read a csv file that contains greek characters as part of the header (i.e. ?, ? etc) in R studio? Thanks in advance! [[alternative HTML version deleted]]
On Mon, 8 Apr 2019 18:41:16 +0300 kostas zogopoulos <kostaszogo at gmail.com> wrote:> How do you read a csv file that contains greek characters as part of > the header (i.e. ?, ? etc) in R studio?Determine the character encoding used in the file (is it UTF-8, ISO8859-7 or something else?) and pass it as fileEncoding="..." parameter to read.csv() function. -- Best regards, Ivan