INET-Complexity / housing-model

Agent-based model of the UK housing market.
MIT License
39 stars 26 forks source link

Replace DescriptiveStatistic objects by ArrayList objects #92

Closed adrian-carro closed 4 years ago

adrian-carro commented 4 years ago

DescriptiveStatistic objects were introduced at some initial point in order to store only a given number of data points. However, what we want is not to store a given number of points, but rather all points occurring on a certain (simulation) time window, thus there is no reason to use DescriptiveStatistics (only the mean was used so far in terms of statistic functionality). This change should also remove the MeanAboveMedian utilities class and bring that functionality into the CreditSupply collectors class.

adrian-carro commented 4 years ago

Solved by commit b3320709c2dc9e7f455070d34279a19086275e2a.