larray.AxisCollection.append
- AxisCollection.append(axis) None [source]
Append axis at the end of the collection.
- Parameters
- axisAxis
Axis to append.
Examples
>>> age = Axis(range(20), 'age') >>> sex = Axis('sex=M,F') >>> time = Axis([2007, 2008, 2009, 2010], 'time') >>> col = AxisCollection([age, sex]) >>> col.append(time) >>> col AxisCollection([ Axis([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19], 'age'), Axis(['M', 'F'], 'sex'), Axis([2007, 2008, 2009, 2010], 'time') ])