當前位置: 首頁>>代碼示例>>Python>>正文


Python FeatureCollection.items方法代碼示例

本文整理匯總了Python中dossier.fc.FeatureCollection.items方法的典型用法代碼示例。如果您正苦於以下問題:Python FeatureCollection.items方法的具體用法?Python FeatureCollection.items怎麽用?Python FeatureCollection.items使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在dossier.fc.FeatureCollection的用法示例。


在下文中一共展示了FeatureCollection.items方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_multiset_change

# 需要導入模塊: from dossier.fc import FeatureCollection [as 別名]
# 或者: from dossier.fc.FeatureCollection import items [as 別名]
def test_multiset_change(counter_type):
    ent1 = FeatureCollection()
    ent1['bow'] += counter_type(Counter(['big', 'dog']))
    ent1.pop('bow')
    assert dict(ent1.items()) == dict()

    ## can pop empty -- fails
    #ent1.pop('foo')

    ## set equal to
    test_data = ['big2', 'dog2']
    ent1['bow'] = counter_type(Counter(test_data))
    assert list(ent1['bow'].values()) == [1,1]

    ent1['bow'] += counter_type(Counter(test_data))
    assert list(ent1['bow'].values()) == [2,2]
開發者ID:brianolson,項目名稱:dossier.fc,代碼行數:18,代碼來源:test_feature_collection.py

示例2: test_multiset_change

# 需要導入模塊: from dossier.fc import FeatureCollection [as 別名]
# 或者: from dossier.fc.FeatureCollection import items [as 別名]
def test_multiset_change(counter_type):
    ent1 = FeatureCollection()
    ent1["bow"] += counter_type(Counter(["big", "dog"]))
    ent1.pop("bow")
    assert dict(ent1.items()) == dict()

    ## can pop empty -- fails
    # ent1.pop('foo')

    ## set equal to
    test_data = ["big2", "dog2"]
    ent1["bow"] = counter_type(Counter(test_data))
    assert list(map(abs, ent1["bow"].values())) == [1, 1]

    ent1["bow"] += counter_type(Counter(test_data))
    assert list(map(abs, ent1["bow"].values())) == [2, 2]
開發者ID:dossier,項目名稱:dossier.fc,代碼行數:18,代碼來源:test_feature_collection.py


注:本文中的dossier.fc.FeatureCollection.items方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。