Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bclark86/clarklytics

Anything from Finance to Machine Learning. This is a collection of functions from my work doing an MBA @ NYU Stern and general business analytics.
https://github.com/bclark86/clarklytics

Last synced: 8 days ago
JSON representation

Anything from Finance to Machine Learning. This is a collection of functions from my work doing an MBA @ NYU Stern and general business analytics.

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# clarklytics

The goal of `clarklytics` is to make my life easier while I complete an MBA @ NYU Stern. As I collect functions for various coursework and side business analytics projects, I want to make the most commonly used available to me anywhere.

## Installation

You can install the released version of clarklytics from [github](https://github.com/) with:

``` r
devtools::install_github("bclark86/clarklytics", ref = "main")
```

## Time Value of Money

This is a basic example of the `present_value` function.

```{r present_value}
library(clarklytics)

clarklytics::present_value(future_value = 1000, rate = 0.05, periods = 5)
```

Here is another one with the par value of a zero coupon bond.

```{r par_value_tbl}
clarklytics::create_par_value_tbl(face_value = 1000, rate = 0.07)
```

## What's Next?

Not sure. That depends on how classes go. Stay tuned!