我们从Python开源项目中,提取了以下1个代码示例,用于说明如何使用tables.Float32Col()。
def _type_to_col(t, pos): if t is int: return tables.Int32Col(pos=pos) if t is float: return tables.Float32Col(pos=pos) raise NotImplementedError(t)