Denormalize data in R

1

I have the following code

 testset1 <- datos4[1,]

 prueba <- neuralnet::compute(net, testset1[,1:10])

 prueba$net.result
 predicted=prueba$net.result * abs(diff(range(datos4[,11]))) + min(datos4[,11])

 print(predicted)

The result gives me 0.42.

As I would have to do to normalize and obtain the compound data

Greetings and thanks

    
asked by Andres 28.11.2018 в 05:33
source

0 answers