Implement an easier way to aggregate only part of an axis and leave other labels intact: ```python >>> a = ndtest(10) >>> a.sum('a0;a1..a3 >> a13;a4;a5;a6;a7;a8;a9') a a0 a13 a4 a5 a6 a7 a8 a9 0 6 4 5 6 7 8 9 ```