I'm working with a time series database that has no NA, what I mean by that is that after a row that should have missing data or an NA the column that tracks times jumps to the next value without recording the time stamp of the NA. for example:
time - value
1 - 50kg
2 - 60kg
4- 45kg
there is no recording of the NA, but it is implicit or perhaps a pattern that there's missing data, is ther a good package to handle this kind of missing data?I've tried using 'naniar', but it doesn't work if I don't have NAs
I'm looking for a package that identifies this and imputes the missing data
Thank you!