Usage
webland_trade(lang = c("ja", "en"))
webland_city(lang = c("ja", "en"))
Value
webland_trade() a webland_trade object. By creating a query with itemise() and
applying collect(), The real estate transaction prices are collected.
webland_city() a webland_city object. Obtains a list of target
municipalities in the same way as webland_trade().
Details
Collect data from the information on real estate transaction prices API
provided by Japan's Ministry of Land, Infrastructure, Transport and Tourism.
Examples
if (FALSE) {
# Collect trade data
webland_trade() |>
itemise(from = "20151",
to = "20152",
city_code = "13102") |>
collect()
# Collect target municipalities
webland_city() |>
itemise(pref_code = "13") |>
collect()
}