Skip to content

Commit 2b7bb78

Browse files
Merge pull request #23 from huizezhang-sherry/master
add stringy calculated based on diameter and length in Wilkinson 2005
2 parents 0db436e + 44c2f6a commit 2b7bb78

File tree

4 files changed

+45
-0
lines changed

4 files changed

+45
-0
lines changed

NAMESPACE

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ S3method(sc_striated2,scree)
3636
S3method(sc_stringy,default)
3737
S3method(sc_stringy,igraph)
3838
S3method(sc_stringy,scree)
39+
S3method(sc_stringy2,default)
40+
S3method(sc_stringy2,igraph)
41+
S3method(sc_stringy2,scree)
3942
export(calc_scags)
4043
export(calc_scags_wide)
4144
export(draw_alphahull)
@@ -56,6 +59,7 @@ export(sc_splines)
5659
export(sc_striated)
5760
export(sc_striated2)
5861
export(sc_stringy)
62+
export(sc_stringy2)
5963
export(sc_striped)
6064
export(scree)
6165
export(top_pairs)

R/mst.R

+28
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,34 @@ sc_stringy.igraph <- function(x, y=NULL) {
4545
sum(vertex_counts == 2) / (length(vertex_counts) - sum(vertex_counts == 1))
4646
}
4747

48+
#' @rdname sc_stringy
49+
#' @export
50+
sc_stringy2 <- function(x, y) UseMethod("sc_stringy2")
51+
52+
#' @rdname sc_stringy
53+
#' @export
54+
sc_stringy2.default <- function(x, y){
55+
#input: x and y are vectors
56+
sc <- scree(x, y)
57+
sc_stringy2.scree(sc)
58+
}
59+
60+
#' @rdname sc_stringy
61+
#' @export
62+
sc_stringy2.scree <- function(x, y=NULL) {
63+
#input: x is a scree, no y
64+
mst <- gen_mst(x$del, x$weights)
65+
sc_stringy2.igraph(mst)
66+
}
67+
68+
#' @rdname sc_stringy
69+
#' @export
70+
sc_stringy2.igraph <- function(x, y=NULL) {
71+
#input: x is the MST igraph object
72+
diameter <- igraph::get_diameter(x)
73+
length(diameter) / (length(x) - 1)
74+
}
75+
4876
#' Compute striated scagnostic measure using MST
4977
#'
5078
#' @param x numeric vector of x values

man/sc_stringy.Rd

+12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/testthat/test_mst.R

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ y1 <- c(0,10,20,30,40,50,60,70,80,90,100, 25)
2626

2727
test_that("Stringy Scagnotist", {
2828
expect_equal(sc_stringy(x1,y1), (8/9))
29+
expect_equal(sc_stringy2(x1,y1), 1)
2930
})
3031

3132
#Striated test

0 commit comments

Comments
 (0)