What is the difference between single and double colon in this situation? data[0:,4] vs data[0::,4]
data[0:,4]
data[0::,4]
women_only_stats = data[0::,4]
There is no difference. You're indexing by an identical slice object.
slice