The variable y_predTV has local scope inside the reactive expression for predictionTV. It is not visible outside that expression. Does changing the second line to y_predTV <- req(y_predTV()) work for you?
Also, the next to last line of the second reactive expression sets a value for local variable y_pred, which is never used. Should that be y_predTV rather than y_pred?
The solution I found myself and is working, is placing all in one reactive part and output results as a list.
So thank you very much for trying helping me guys.
Kind regards