If I have an NxN NumPy array, and I wanted to get all rows of data from just the 5th column, is there any difference between the following methods:
just_the_fifth_a = somearray[0::,4]
just_the_fifth_b = somearray[0:,4]
just_the_fifth_c = somearray[:,4]
somearray[:-1,4]lops a value off the end. But thestopvalue may be the shape or larger, or may beNone.