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


Python HouseholdDataset.plot_histogram方法代碼示例

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


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

示例1: HouseholdDataset

# 需要導入模塊: from urbansim.datasets.household_dataset import HouseholdDataset [as 別名]
# 或者: from urbansim.datasets.household_dataset.HouseholdDataset import plot_histogram [as 別名]
from urbansim.datasets.job_dataset import JobDataset
from urbansim.models.household_location_choice_model_creator import HouseholdLocationChoiceModelCreator

from opus_core.database_management.database_server import DatabaseServer
from opus_core.database_management.configurations.scenario_database_configuration import ScenarioDatabaseConfiguration


# Datasets
##########
# agents from householdset.tab
agents = HouseholdDataset(in_storage = StorageFactory().get_storage('tab_storage', storage_location='.'),
                      in_table_name = "householdset", id_name="agent_id")

agents.summary()
agents.get_attribute("income")
agents.plot_histogram("income", bins = 10)
agents.r_histogram("income")
agents.r_scatter("income", "persons")

# gridcells from PSRC
locations_psrc = GridcellDataset(in_storage = StorageFactory().get_storage('flt_storage', 
        storage_location = "/home/hana/bandera/urbansim/data/GPSRC"), 
    in_table_name = "gc")
locations_psrc.summary()
locations_psrc.plot_histogram("distance_to_highway", bins = 15)
locations_psrc.r_image("distance_to_highway")
locations_psrc.plot_map("distance_to_highway")

locations_psrc.compute_variables("urbansim.gridcell.ln_total_land_value")
locations_psrc.plot_map("ln_total_land_value")
開發者ID:christianurich,項目名稱:VIBe2UrbanSim,代碼行數:32,代碼來源:demo.py


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