Neural networks how to codify a time variable that sometimes does not apply
I have a data set with water pipe failures, some had failures others not.
Variables: Pipe Age, Time failure (difference between failure time and time pipe installation, or between failures), number of previous failures and a label Fail(yes or no ).
ID|Age| TimeFailure|NpreviousF|Fail
10|20 | T1 | 0 | Y
10|20 | T2 | 1 | Y
10|20 | T3 | 2 | Y
50|20 | | 0 | N
My difficulty is with pipe 50, how to codify TimeFailure since the pipe never failed.
Thanks for your attention
Paulo Praça