Contamos con la mejor respuesta que hemos encontrado online. Queremos que te resulte útil y si quieres compartir alguna mejora hazlo con libertad.
Ejemplo: normalización en r
# creating a normalize function for easy convertion.
normalize <-function(x)
return ((x - min(x))/(max(x)- min(x)))# lapply creates list that is why it is converted to dataframe and it# applies defined fundtion (which is 'normalize') to all the list values# which is here column 2 to 8 as first column is target/response.
df.norm<- as.data.frame(lapply(df, normalize))
Te mostramos comentarios y puntuaciones
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)