Entering edit mode
4.0 years ago
paramount.amin
•
0
For Neural Network analysis, I normalized my data using the following function in Rstudio:
normalize <- function(x) { return ((x - min(x)) / (max(x) - min(x))) }
weekends1 <- as.data.frame(lapply(weekends1, normalize))
Now that I have my desired result, how can I present my data as a standard form not a normalized one?
It's not clear what you're asking. You've normalized but want to show the original data? More detail is necessary, or better yet, a clear, reproducible example to show exactly what you want and the issue you're having.
the output is a plot with normalized values, however, I need to plot the result of neural network analysis with the initial values. For the neural network analysis, values should be normalized, but for my results, I need to show it using initial values. ( I am using a neural network to predict indoor temperature, Currently, I have the prediction in the range of 0-1, but I need to convert them to Celsius as it was initially to plot my results.
I may be missing something, but can you not just plot the original data along-side it then?
I just need to present my plot with degree celsius not a normalized value that is meaningless for audiences