100% found this document useful (1 vote)
348 views

Python The Ultimate Beginners Guide

The document discusses creating plots from basketball statistics including free throw attempts, accuracy of free throws, and player style excluding free throws using supplied data vectors and matrices.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
100% found this document useful (1 vote)
348 views

Python The Ultimate Beginners Guide

The document discusses creating plots from basketball statistics including free throw attempts, accuracy of free throws, and player style excluding free throws using supplied data vectors and matrices.
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 6

BASKETBALL FREE THROWS

Homework Exercise

Python Programming A-Z Kirill Eremenko


Python Programming A-Z Kirill Eremenko
You have been supplied data for two more additional in-game statistics:
Free Throws
Free Throw Attempts

You need to create three plots that portray the following insights:
Free Throw Attempts per game
Accuracy of Free Throws
Player playing style (2 vs 3 points preference) excluding Free Throws*

*Each Free Throw is worth 1 point

The data has been supplied in the form of vectors. You will have to create
the two matrices before you proceed with the analysis

Python Programming A-Z Kirill Eremenko


HINT #1

Python Programming A-Z Kirill Eremenko


The matrix calculation for part 3 is:

(Points - FreeThrows) / FieldGoals

Python Programming A-Z Kirill Eremenko


HINT #2

Python Programming A-Z Kirill Eremenko

You might also like