I have an
array([[5.1, 3.5, 1.4, 0.2],
[4.9, 3. , 1.4, 0.2],
[4.7, 3.2, 1.3, 0.2],
[4.6, 3.1, 1.5, 0.2])
I want to get the sum of the equation:
(5.1 - 1)
(4.9 - 1)
(4.7 - 1)
(4.6 - 1)
How do I get the every arrays' first element?