You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now the user has to select the category for each transaction. We can improve this by automatically selecting a category.
Option 1: Select the last used category
Option 2: Use KNN to make an educated guess on which category to pick.
Ideally we'd want to use the following features:
day of the month
transaction value
transaction type (income / expense)
However, there is a worry here that changing the category after the user has entered the value could be confusing (since the category would change). A solution would be to identify the category based on just day of the month and type, then, once the user adds the value, we can run the algo again and suggest a new category
The text was updated successfully, but these errors were encountered:
Right now the user has to select the category for each transaction. We can improve this by automatically selecting a category.
Option 1: Select the last used category
Option 2: Use KNN to make an educated guess on which category to pick.
Ideally we'd want to use the following features:
However, there is a worry here that changing the category after the user has entered the value could be confusing (since the category would change). A solution would be to identify the category based on just
day of the month
andtype
, then, once the user adds the value, we can run the algo again and suggest a new categoryThe text was updated successfully, but these errors were encountered: