I exported data from the result grid in SQL Server Management Studio to a csv file. The csv file looks correct.
But when I read the data in the R framework using read.csv, the first column name is added to " Γ― .. ". How to get rid of this unwanted text?
Example:
str(trainData)
'data.frame': 64169 obs. of 20 variables:
$ Γ―..Column1 : int 3232...
$ Column2 : int 4242...
The data looks something like this (nothing special):
Column1, Column2
100116577,100116577
100116698,100116702
source
share