Predict future date with min value

Dear ML guy,
It is possible that ML could predict this based on data provide.
I want to know possible date next month (2022-Dec) that has min payment transaction.

|2020-11-17|5|
|2020-12-20|71|
|2021-01-23|71|
|2021-02-21|64|
|2021-03-21|55|
|2021-04-18|17|
|2021-05-23|104|
|2021-06-20|68|
|2021-07-18|52|
|2021-08-22|80|
|2021-09-19|63|
|2021-10-23|125|
|2021-11-20|44|
|2021-12-23|79|
|2022-01-23|87|
|2022-02-20|86|
|2022-03-20|83|
|2022-04-15|9|
|2022-04-16|9|
|2022-05-22|57|
|2022-06-19|5|
|2022-07-18|46|
|2022-08-21|84|
|2022-09-25|15|
|2022-10-23|86|
|2022-11-17|43|

Please, sharing the way to do or full code that you have tested. Thanks

@Kim_seng,

Welcome to the Tensorflow Forum!

It is possible to predict the date with the minimum payment transaction for the next month (December 2022) based on the provided data using a machine learning model. However, the sample size of data provided is small and it may not be enough for a reliable prediction.

The linear regression model would work well for this issue since the data have a linear relation.

Thank you!