I am trying to get historical values of certain properties of a ZIPCode entity.
To get the current data I write:
EntityValue[Entity["ZIPCode","60007"],"AverageHouseValue"]
How can I get historical data?
Thanks!
I am trying to get historical values of certain properties of a ZIPCode entity.
To get the current data I write:
EntityValue[Entity["ZIPCode","60007"],"AverageHouseValue"]
How can I get historical data?
Thanks!
Datedwould work, but it doesn't in this case. Also compare the qualifiers for the following properties. One has historical data and one doesn't seem to:EntityValue[EntityProperty["Country", "Population"], "Qualifiers"]andEntityValue[EntityProperty["ZIPCode", "AverageHouseValue"], "Qualifiers"]. – Greg Hurst Jul 26 '19 at 19:09