Suppose I have table with 2 colums. Date and a integer. I want to predict by which date the integer will get to zero based on current progression of known values.
date time | value |
---|---|
2024-01-13 22:00:00 | 601 |
2024-01-14 07:30:00 | 581 |
2024-01-16 12:00:00 | 486 |
2024-01-18 16:52:00 | 396 |
??? | 0 |
Even extrapolating the values is confusing calc. If i select those few rows and pull for many more or just two more… it will go back in time and raise the numbers, in a way that is not present on the data:
|2024-01-13 22:00:00|601|
|2024-01-14 07:30:00|581|
|2024-01-16 12:00:00|486|
|2024-01-18 16:52:00|396|
|2024-01-14 22:00:00|602|
|2024-01-15 07:30:00|582|
|2024-01-17 12:00:00|487|
|2024-01-19 16:52:00|397|
|2024-01-15 22:00:00|603|