Skip to content

Instantly share code, notes, and snippets.

@Jeet1994
Created November 8, 2016 06:37
Show Gist options
  • Save Jeet1994/553c331248afc13a3793a3a1c62d1b89 to your computer and use it in GitHub Desktop.
Save Jeet1994/553c331248afc13a3793a3a1c62d1b89 to your computer and use it in GitHub Desktop.
Benford Score
BenfScore <- function(i){
P <- (log10(1+(1/i)))*100
return(P) #Gives the percentage output.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment