本文整理汇总了Python中blaze.expr.TableSymbol.distinct方法的典型用法代码示例。如果您正苦于以下问题:Python TableSymbol.distinct方法的具体用法?Python TableSymbol.distinct怎么用?Python TableSymbol.distinct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类blaze.expr.TableSymbol
的用法示例。
在下文中一共展示了TableSymbol.distinct方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_distinct_name
# 需要导入模块: from blaze.expr import TableSymbol [as 别名]
# 或者: from blaze.expr.TableSymbol import distinct [as 别名]
def test_distinct_name():
t = TableSymbol('t', '{id: int32, name: string}')
assert t.name.isidentical(t['name'])
assert t.distinct().name.isidentical(t.distinct()['name'])
assert t.id.distinct()._name == 'id'
assert t.name._name == 'name'
示例2: test_Distinct
# 需要导入模块: from blaze.expr import TableSymbol [as 别名]
# 或者: from blaze.expr.TableSymbol import distinct [as 别名]
def test_Distinct():
t = TableSymbol('t', '{name: string, amount: int32}')
r = distinct(t['name'])
print(r.dshape)
assert r.dshape == dshape('var * {name: string}')
r = t.distinct()
assert r.dshape == t.dshape
示例3: test_Distinct
# 需要导入模块: from blaze.expr import TableSymbol [as 别名]
# 或者: from blaze.expr.TableSymbol import distinct [as 别名]
def test_Distinct():
t = TableSymbol("t", "{name: string, amount: int32}")
r = distinct(t["name"])
print(r.dshape)
assert r.dshape == dshape("var * string")
assert r._name == "name"
r = t.distinct()
assert r.dshape == t.dshape
示例4: test_Distinct
# 需要导入模块: from blaze.expr import TableSymbol [as 别名]
# 或者: from blaze.expr.TableSymbol import distinct [as 别名]
def test_Distinct():
x = np.array([('Alice', 100),
('Alice', -200),
('Bob', 100),
('Bob', 100)],
dtype=[('name', 'S5'), ('amount', 'i8')])
t = TableSymbol('t', '{name: string, amount: int64}')
assert eq(compute(t['name'].distinct(), x),
np.unique(x['name']))
assert eq(compute(t.distinct(), x),
np.unique(x))