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?