Skip to content

Software implementing published dragon king (DK) related statistical tools developed by the Erdi research group at the Center for Complex System Studies (CCSS) at Kalamazoo College.

License

Notifications You must be signed in to change notification settings

rrrlw/dragonking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dragonking: An R package implementing statistical tools for identification of dragon kings

Travis-CI Build Status License: GPL v3 CRAN Downloads

Purpose

The dragonking R package implements published statistical tests and test statistics for identification of dragon kings.

Installation

To install the dragonking R package, run the following code in R:

devtools::install_github("rrrlw/dragonking")

Note that you need the devtools package to install dragonking from GitHub (at least until it is accepted into CRAN). To install devtools and dragonking, run the following code in R:

# install and load devtools
install.packages("devtools")
library("devtools")

# install dragonking
install_github("rrrlw/dragonking")

Example use

The following code demonstrates the use of dragonking with a mock dataset. For examples of more detailed and varied use, please see the documentation and available vignettes.

# load dragonking package
library("dragonking")

# create mock dataset with no dragon kings (DKs)
set.none <- rexp(100)

# create mock dataset with 5 DKs
set.dk <- c(rexp(95),
            15.1, 14.9, 15.0, 14.95, 15.09) # DKs

# run DK test on dataset without DKs (we are looking for 2 DKs)
results.none <- dk_test(set.none, r = 2)
print(results.none["Test Statistic"]) # retrieve test stat
print(results.none["p-value"])        # retrieve p-value

# run DK test on dataset with DKs (we are looking for 3 DKs)
dk_test(set.dk, r = 3)                # print out test stat and p-value

Please report any bugs, comments, suggestions, etc. regarding dragonking on the GitHub issues page.

About

Software implementing published dragon king (DK) related statistical tools developed by the Erdi research group at the Center for Complex System Studies (CCSS) at Kalamazoo College.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages