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
First of all, I would like to say kudos, you are doing a wonderful job. ( feeling inarticulate to express my gratitude ).
Although. In the video titled, "Making Your Own Shot and Pass Maps". David provided the solution of how passes where plotted. Now I was trying to see recreate similar map for Dani Carvajal famous cross from which Cristiano Ronaldo scored that famous bicycle kick in the champions league semifinal. But to my surprise, there was no such 'pass' created by 'Dani Carvajal'. Here's my observation.
Solution provided by David. passArrow = plt.Arrow(x,pitchWidthY-y,dx,dy, width=3, color="blue") result
Correct code in my opinion. passArrow = plt.Arrow(x,pitchWidthY-y,dx,-dy, width=3, color="blue") result
Thank you.
The text was updated successfully, but these errors were encountered:
First of all, I would like to say kudos, you are doing a wonderful job. ( feeling inarticulate to express my gratitude ).
Although. In the video titled, "Making Your Own Shot and Pass Maps". David provided the solution of how passes where plotted. Now I was trying to see recreate similar map for Dani Carvajal famous cross from which Cristiano Ronaldo scored that famous bicycle kick in the champions league semifinal. But to my surprise, there was no such 'pass' created by 'Dani Carvajal'. Here's my observation.
Solution provided by David.
passArrow = plt.Arrow(x,pitchWidthY-y,dx,dy, width=3, color="blue")
result
Correct code in my opinion.
passArrow = plt.Arrow(x,pitchWidthY-y,dx,-dy, width=3, color="blue")
result
Thank you.
The text was updated successfully, but these errors were encountered: