README.md

TidyPkuData speeds up base Europace loan data analysis tasks and makes it easy for everyone.

The functions provided in this package aiming to prepare and set up your dataset straightaway for ad-hoc analysis activieties after data import.

Installation

# install.packages("devtools")
devtools::install_github("europace-privatkredit/tidyPkuData")

Overview

tidyPkuData is a grammar of data manipulation with emphasis on internal Europace loans data, providing a consistent set of verbs that help you solve the most common data cleaning tasks:

If you are new to R and data in general, do not worry internal workshops will be provided upon request.

Usage


After Establishing redshift connection:

library(tidyPku)

dataset <- importData(startDate = '2018-06-01', endDate = '2018-06-30') %>%
  tidyDataType() %>%
  tidyDate(col = 'angenommenamdatum') %>%
  tidyPurpose() %>%
  tidyStatus() %>%
  tidyPa(agg = TRUE) %>%
  tidyVo() %>%
  tidyTerm() %>%
  tidyProductType() %>%
  tidyEuropaceCent() %>%
  tidyProcessingTime() %>%
  tidyFrontend()

Your data set is ready for analysis purpose.

The remaining tidy functions included in the package generate customer-related data fields.

Getting help

If you encounter a clear bug, please file a minimal reproducible example on github.

Project status

Please note that this project is a draft and under development. Further functionality is going to be added soon. Usage is restricted for internal purpose only.



europace-privatkredit/tidyPkuData documentation built on Oct. 2, 2019, 3 a.m.