knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

marketloanr

The goal of marketloanr is to ...

Installation

You can install marketloanr from github with:

# install.packages("devtools")
devtools::install_github("dantonnoriega/marketloanr")

Example

This is a basic example which shows you how to solve a common problem:

# load packages
library(marketloanr)
library(tidyverse)

# load the data
dat <- get_loan_data()

# find vector of rates given score `s`
s = 600
rates <- get_rates(s, as_vec = TRUE) # can get just vector of rates
rates_df <- get_rates(s, as_vec = FALSE) # or get the filtered subset

rates
rates_df

Current Issues



dantonnoriega/marketloanr documentation built on May 28, 2019, 7:51 p.m.