Good evening!
I'm doing a job where I import a base and after importing I create a range of values.
Ex. I import the base with read.csv
dados <- read.csv(base, header=TRUE, sep=',')
But in this column of values ($$), which I will use to create the track, when importing changes to factor
.
Therefore I use the following code for transformation.
dados$valores <- is.numeric(dados$valores)
What happens here is that the values in the column change all.
Ex in column value 100, it turns 2600. could anyone help me?