| webland {jpstat} | R Documentation |
Information on real estate transaction prices API
Description
Usage
webland_trade(lang = c("ja", "en"))
webland_city(lang = c("ja", "en"))
Arguments
lang |
Language. |
Details
Collect data from the information on real estate transaction prices API provided by Japan's Ministry of Land, Infrastructure, Transport and Tourism.
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().
Examples
## Not run:
# Collect trade data
webland_trade() |>
itemise(from = "20151",
to = "20152",
city_code = "13102") |>
collect()
# Collect target municipalities
webland_city() |>
itemise(pref_code = "13") |>
collect()
## End(Not run)
[Package jpstat version 0.4.0 Index]