NumPy - Array Manipulation
You have a 2D NumPy array
data with shape (6, 4). You want to split it into 3 equal parts along the first axis (rows) for separate analysis. Which code correctly does this using np.split()?