let's say we have a column with a number that increases a bit on a daily basis, but cannot predict the increase with good precision. For example (the value on day_x is):
day_1 = 10,
day_2 = 20,
day_3 = 35,
day_4 = 22, (a sudden decrease here)
day_5 = 41
...etc
So we know in general that there is an upward trend with different percentage every time. How can we get the current ratio, or even better "predict" the next increase? Can deequ train itself with some accuracy?
Thank you!