Hey all! I have about 5755 rows of data in my database used in my API and returns this for example:
{
"id": "141cac7f-c0dd-4cfd-b609-110b569e92a5",
"matchId": 40189,
"team": "away_team",
"playerId": 28422,
"action": "DEFENSIVE_REBOUND",
"quarter": 4,
"time": "0:00",
"teamId": 661,
"bteamPoints": 65,
"ateamPoints": 62
},
Above is an example response based off the data from a basketball match between two teams, this is for a single play-by-play event in a match. Now I want to use an ML algorithm to train a model to be able to use this dataset and predict trends in teams whether the team is aggressive or defensive based on the actions. Any suggestions?