https://github.com/kasaai/pc-pricing-tutorial
Practical Ratemaking
https://github.com/kasaai/pc-pricing-tutorial
actuarial-science rstats
Last synced: 4 months ago
JSON representation
Practical Ratemaking
- Host: GitHub
- URL: https://github.com/kasaai/pc-pricing-tutorial
- Owner: kasaai
- License: other
- Created: 2018-11-26T22:16:04.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-10-23T00:58:41.000Z (over 5 years ago)
- Last Synced: 2024-08-13T07:15:41.317Z (8 months ago)
- Topics: actuarial-science, rstats
- Language: R
- Homepage: https://ratemake.com/
- Size: 7.01 MB
- Stars: 34
- Watchers: 10
- Forks: 8
- Open Issues: 44
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - kasaai/pc-pricing-tutorial - Practical Ratemaking (R)
README
[](https://travis-ci.org/kasaai/pc-pricing-tutorial)
[Slack](https://slack.kasa.ai) (#pricing-tutorial)
# P&C Pricing Tutorial
The goal of this project is to build an end-to-end reproducible example of a ratemaking project in R, in the form of a book. The target audience includes students, actuaries, and data scientists who are interested in learning about insurance pricing or porting their existing workflows. As much as possible, we'll provide reproducible code for the technical bits, including data manipulation, exploratory data analysis, modeling, validation, implementation, and report writing. Significant simplifications from real life (due to lack of details in the dataset, for example) will be noted. We'll follow modeling best practices, but also point out incorrect/suboptimal workflows that are prevalent.
# Package Dependencies
To install the necessary packages to run the code in this repo, you can restore the library using renv as follows:
```r
if (!requireNamespace("remotes"))
install.packages("remotes")remotes::install_github("rstudio/renv")
renv::restore()
```## Contributing
Interested in joining in on the fun? Look at the [issues](https://github.com/kasaai/pc-pricing-tutorial/issues) page to see what tasks need help and check out [contributing guidelines](https://github.com/kasaai/pc-pricing-tutorial/blob/master/CONTRIBUTING.md). Not familiar with R but want to lend your actuarial expertise? Please feel free to comment on issues to share your thoughts or open new issues to let us know how we can do things better!
-----
Please note that this project is released with a [Contributor Code of
Conduct](https://github.com/kasaai/community/blob/master/CODE_OF_CONDUCT.md). By participating in this project
you agree to abide by its terms.