keithb said: Thanks for the detailed reply and screenshot. The problem I have with assistant manager is the same as billy bean in moneyball haha. He doesn't play the players I've bought!!!

unfortunately, immaterial of what the python code tells you, you need to buy players among that python list with what the assistant manager things is the best options (like look at the star rating he assign to the player).

Again, if you want to go with this adventure, you might need your code to be less skewed (don't assign some crazy weight to pace and acceleration), keep it less skewed so that the star rating align with player recruitment suggestion from Python.

Let me give an example:

More skewed: (Less likely ass man will play)

calculate_score({"Fin":1, "Dri":5, "Fir":1, "Tec":1, "Pas":1, "OtB":1, "Cmp":1, "Ant":3, "Dec":1, "Wor":1, "Acc":5, "Pac":5, "Agi":1, "Bal":3, "Sta":1, "Jum":5}, 'AF Score';)

Less Skewed: (More likely ass man will play)

calculate_score({"Fin":1, "Dri":2, "Fir":1, "Tec":1, "Pas":1, "OtB":1, "Cmp":1, "Ant":1.5, "Dec":1, "Wor":1, "Acc":2, "Pac":2, "Agi":1, "Bal":1.5, "Sta":1, "Jum":2}, 'AF Score';)

0
Create an account or log in to leave a comment