7 """Retrieve the column data in the correct type and shape.
12 Name of the column to retrieve.
16 data : `list` of `numpy.array`
20 shape = self.columnShape(column)
21 dtype = self.columnType(column)
23 if dtype == DataType.DoubleType:
24 newshape = list(shape)
25 newshape.append(nrows)
26 coldata = self.getColumnData1D(column)
27 coldata = coldata.reshape(newshape, order=
"F")
29 raise ValueError(
"Can only retrieve double column data")