Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/bclark86/clarklytics
- Owner: bclark86
- License: other
- Created: 2020-10-02T03:58:12.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-10-03T17:43:05.000Z (about 4 years ago)
- Last Synced: 2024-08-13T07:11:38.081Z (4 months ago)
- Language: R
- Size: 31.3 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - 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. (R)
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!