本文整理汇总了Python中km3pipe.dataclasses.Table.from_dict方法的典型用法代码示例。如果您正苦于以下问题:Python Table.from_dict方法的具体用法?Python Table.from_dict怎么用?Python Table.from_dict使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类km3pipe.dataclasses.Table
的用法示例。
在下文中一共展示了Table.from_dict方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_from_dict_with_unordered_columns_wrt_to_dtype_fields
# 需要导入模块: from km3pipe.dataclasses import Table [as 别名]
# 或者: from km3pipe.dataclasses.Table import from_dict [as 别名]
def test_from_dict_with_unordered_columns_wrt_to_dtype_fields(self):
data = {'b': [1, 2], 'c': [3, 4], 'a': [5, 6]}
dt = [('a', float), ('b', float), ('c', float)]
tab = Table.from_dict(data, dtype=dt)
assert np.allclose([1, 2], tab.b)
assert np.allclose([3, 4], tab.c)
assert np.allclose([5, 6], tab.a)
示例2: test_from_mixed_dict
# 需要导入模块: from km3pipe.dataclasses import Table [as 别名]
# 或者: from km3pipe.dataclasses.Table import from_dict [as 别名]
def test_from_mixed_dict(self):
dmap = {
'a': 1,
'b': 0.,
'c': np.zeros(4),
}
# tab = Table.from_dict(dmap)
# self.assertTrue(isinstance(tab, Table))
# assert tab.h5loc == DEFAULT_H5LOC
dt = [('a', float), ('b', float), ('c', float)]
tab = Table.from_dict(dmap, dtype=dt)
assert tab.h5loc == DEFAULT_H5LOC
assert isinstance(tab, Table)
tab = Table.from_dict(dmap, dtype=dt, h5loc='/foo')
assert tab.h5loc == '/foo'
assert isinstance(tab, Table)
bad_dt = [('a', float), ('b', float), ('c', float), ('d', int)]
with pytest.raises(KeyError):
tab = Table.from_dict(dmap, dtype=bad_dt)
示例3: test_from_dict_with_fillna
# 需要导入模块: from km3pipe.dataclasses import Table [as 别名]
# 或者: from km3pipe.dataclasses.Table import from_dict [as 别名]
def test_from_dict_with_fillna(self):
data = {'a': [1, 2], 'b': [3, 4]}
dt = [('a', float), ('b', float), ('c', float)]
tab = Table.from_dict(data, dtype=dt, fillna=True)
assert np.isnan(tab.c[0])
assert np.isnan(tab.c[1])
示例4: test_from_dict_without_dtype
# 需要导入模块: from km3pipe.dataclasses import Table [as 别名]
# 或者: from km3pipe.dataclasses.Table import from_dict [as 别名]
def test_from_dict_without_dtype(self):
data = {'b': [1, 2], 'c': [3, 4], 'a': [5, 6]}
tab = Table.from_dict(data)
assert np.allclose([1, 2], tab.b)
assert np.allclose([3, 4], tab.c)
assert np.allclose([5, 6], tab.a)