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

https://github.com/preethinarayanan/R-Package-Development


https://github.com/preethinarayanan/R-Package-Development

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

# **kittens**

### Model Development & Data Exploratory Toolkit

**Arrowhead General Insurance Agency**

---

### **Overview**

This package is created to help the data science team at Arrowhead work more efficiently. This package include analytical functions including: modeling, exploring, and data manipulation.

For more information about the package, please contact the data science help email at [email protected]

### **Installation**

#### RSSP Install
Kittens is avaialble as a private repository on RSSP. You must add the private repository, and then install it. If you already have it installed in your own library, uninstall it, then follow the instructions below.

Add the local/private package repository to RSSP IDE:
a. Tools -> Global Options -> Packages
b. Add a repository
c. Name: arrowhead
d. Url: file:///arrowhead-r-pkgs

Then in your R Console run:
```
install.packages("kittens")
```

#### Local Install

Clone this repository then run use `devtools` package to install `kittens`.

```
devtools::install()

```

### **Contributing**

Please use the following convention when adding functions / features to this package:

1. Instantiate the `feature-name` branch
2. Instantiate the `feature-name_dev-name` sub-branch
3. Treat the `feature-name` branch as master branch to `feature-name_dev-name`
4. When the `feature-name` branch is ready for primetime, create a Pull Request

Function Naming Standardization:

1. Use Camel case style for our function names. (e.g. `MakeNames()`, `ModelBinomial()`)