Last active
August 29, 2015 14:12
-
-
Save abikoushi/257879c4e77509dd7499 to your computer and use it in GitHub Desktop.
calculate a increase rate & the contribution.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grow <- function(x){diff(x)/x[-length(x)]} #a rate of change. | |
cont <- function(a,all){ #contribution | |
grow(a) * (a/all)[-length(a)] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example
http://abrahamcow.hatenablog.com/entry/2014/09/25/103230