⚠️There's a newer version (2.0.3) of this package. Take me there.

ScottKnottESD

The Scott-Knott Effect Size Difference (ESD) test is an enhancement of the Scott-Knott test (which clusters distributions into statistically distinct ranks) that takes effect size into consideration [Tantithamthavorn et al., (2017) http://dx.doi.org/10.1109/TSE.2016.2584050].

Example usage scenarios in software engineering domain.

(1) Ranking and identifying the most influential variables that are produced by random forests models or regression models.

(2) Ranking and identifying the top-performing feature selection, classification, and model validation techniques for defect prediction models.

(3) Ranking and identifying the most frequent developer search tasks.

Installation

Install the current release from CRAN::
install.packages("ScottKnottESD")
Install the development version from GitHub:
install.packages("devtools")
devtools::install_github("klainfo/ScottKnottESD")

Example Usage

library(ScottKnottESD)

# An example dataset: The 1,000 variable importance scores of 9 software metrics. 
# The scores are generated by the Random Forests technique using 1,000 out-of-sample bootstrap.
example

sk <- sk_esd(example)
sk$original  # Original Groups
sk$groups    # Corrected Groups with effect size wise
sk$reverse   # Reversed Groups

Referencing ScottKnottESD

ScottKnottESD can be referenced as:

@article{tantithamthavorn2017tse,
    Author={Tantithamthavorn, Chakkrit and McIntosh, Shane and Hassan, Ahmed E. and Matsumoto, Kenichi},
    Title = {An Empirical Comparison of Model Validation Techniques for Defect Prediction Models},
    Booktitle = {IEEE Transactions on Software Engineering (TSE)},
    Volumn = {43},
    Number = {1},
    page = {1-18},
    Year = {2017}
}
@misc{ScottKnottESD,
    title = {{ScottKnottESD: The Scott-Knott Effect Size Difference (ESD) Test}},
    author = {Tantithamthavorn, Chakkrit},
    year = {2017},
    howpublished = {\url{https://cran.r-project.org/package=ScottKnottESD}}
}

Copy Link

Version

Down Chevron

Install

install.packages('ScottKnottESD')

Monthly Downloads

217

Version

1.2.2

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Last Published

May 7th, 2017

Functions in ScottKnottESD (1.2.2)