July 2018
Intermediate to advanced
474 pages
13h 37m
English
In addition to viewing the data points in an array, it is also useful to retrieve the minimum and maximum points of each feature in an array:
print(data_array.max(axis=0))print(data_array.min(axis=0))

The maximum height is 74 inches and minimum height is 60 inches. The maximum weight is 188 lbs, while the minimum weight is 107 lbs. The minimum and maximum values for gender are not as relevant, as we have assigned them numeric values of 0 and 1. ...
Read now
Unlock full access