KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
uklr
★ 8
Open GitHub ↗
Client to United Kingdom Land Registry
Download README (.md)
Explore Similar Repositories
ssrcli
:
SSR management client on Linux with command line interface
teamwork
:
Teamwork is an internal social network for organizations’ employees
midi2foxdot
:
MIDI to FoxDot code conversion script
fastlane-plugin-accessibility_test
:
No description available.
nr1-datalyzer
:
NR1 Datalyzer allows you to explore event and metric data related in a simple, fast, intuitive way.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
uklr
?
Download (.md)
<!-- README.md is generated from README.Rmd. Please edit that file --> # uklr <img src='man/figures/logo.png' align="right" height="138.5" /> <!-- badges: start --> [](https://CRAN.R-project.org/package=uklr) [](https://lifecycle.r-lib.org/articles/stages.html#stable) [](https://github.com/kvasilopoulos/uklr/actions/workflows/R-CMD-check.yaml) [](https://app.codecov.io/gh/kvasilopoulos/uklr) <!-- badges: end --> The goal of {uklr} is to access data from HM Land Registry Open Data <https://landregistry.data.gov.uk/> through SPARQL queries. {uklr} supports the UK HPI, Transaction Data and Price Paid Data. ## Installation Install release version from CRAN ``` r install.packages("uklr") ``` You can install the development version from [GitHub](https://github.com/) with: ``` r # install.packages("devtools") devtools::install_github("kvasilopoulos/uklr") ``` If you encounter a clear bug, please file a reproducible example on [GitHub](https://github.com/kvasilopoulos/uklr/issues). ## Example ``` r library(uklr) ukhp_get(region = "newport", start_date = "2019-01-01") #> # A tibble: 82 × 3 #> region date housePriceIndex #> <fct> <date> <dbl> #> 1 newport 2019-01-01 76 #> 2 newport 2019-02-01 76.8 #> 3 newport 2019-03-01 77.5 #> 4 newport 2019-04-01 77.8 #> 5 newport 2019-05-01 78.2 #> 6 newport 2019-06-01 78.1 #> 7 newport 2019-07-01 79.3 #> 8 newport 2019-08-01 79 #> 9 newport 2019-09-01 79.2 #> 10 newport 2019-10-01 78.3 #> # ℹ 72 more rows ukppd_get(postcode = "PL6 8RU", start_date = "2015-01-01") #> # A tibble: 12 × 4 #> postcode amount date category #> <chr> <dbl> <date> <chr> #> 1 PL6 8RU 230000 2022-03-28 Standard price paid transaction #> 2 PL6 8RU 202500 2015-06-29 Standard price paid transaction #> 3 PL6 8RU 195000 2016-07-08 Standard price paid transaction #> 4 PL6 8RU 207000 2018-03-29 Standard price paid transaction #> 5 PL6 8RU 255000 2016-09-07 Standard price paid transaction #> 6 PL6 8RU 245000 2016-08-19 Standard price paid transaction #> 7 PL6 8RU 350000 2022-05-06 Standard price paid transaction #> 8 PL6 8RU 280000 2017-10-02 Standard price paid transaction #> 9 PL6 8RU 205000 2018-09-07 Standard price paid transaction #> 10 PL6 8RU 275000 2023-09-15 Standard price paid transaction #> 11 PL6 8RU 310000 2024-06-13 Standard price paid transaction #> 12 PL6 8RU 217750 2025-06-30 Standard price paid transaction uktrans_get(item = "totalApplicationCountByRegion", region = "East Anglia") #> # A tibble: 165 × 3 #> region date totalApplicationCountByRegion #> <chr> <date> <dbl> #> 1 East Anglia 2011-12-01 37819 #> 2 East Anglia 2012-01-01 44231 #> 3 East Anglia 2012-02-01 44453 #> 4 East Anglia 2012-03-01 46814 #> 5 East Anglia 2012-04-01 40693 #> 6 East Anglia 2012-05-01 47885 #> 7 East Anglia 2012-06-01 39506 #> 8 East Anglia 2012-07-01 46539 #> 9 East Anglia 2012-08-01 45942 #> 10 East Anglia 2012-09-01 41976 #> # ℹ 155 more rows ```