So basically I have an array, that consists of 14 rows and 426 Columns, every row represents one property of a dog and every column represents one dog, now I want to know how many dogs are ill, this property is represented by the 14. row. 0 = Healthy and 1 = ill, so how do I count the specific row?
I tried to use the numpy.count_nonzero
but this counts the values of the entire array, is there a way to tell it to only count a specific row?