Browse Source

Merge pull request #2 from CrazySwimmer/deprecated_data_frame

Deprecated data frame
master
boB Rudis 4 years ago
committed by GitHub
parent
commit
d57901c20d
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 3
      DESCRIPTION
  2. 6
      R/aaa.r
  3. 2
      R/bmde.r
  4. 2
      R/fitz-scott.r
  5. 2
      R/goodman.r
  6. 2
      R/qh.r
  7. 2
      R/wald.r
  8. 2
      R/waldcc.r
  9. 2
      R/wilson.r

3
DESCRIPTION

@ -4,7 +4,8 @@ Version: 0.1.0
Encoding: UTF-8
Authors@R: c(
person("Bob", "Rudis", role = c("aut", "cre"), email = "bob@rud.is"),
person("M", "Subbiah", role = c("aut"), comment = c("Original package author"))
person("M", "Subbiah", role = c("aut"), comment = c("Original package author")),
person("Danilo", "Zocco", role = c("ctd"))
)
Maintainer: Bob Rudis <bob@rud.is>
Description: Methods for obtaining simultaneous confidence intervals for multinomial

6
R/aaa.r

@ -93,7 +93,7 @@ SG <- function(x, alpha) {
diA <- ULA - LLA##FIND LENGTH OF CIs
VOL <- round(prod(diA), 8)##PRODUCT OF LENGTH OF CIs
data_frame(
tibble(
method = "sg",
lower_limit = LL,
upper_limit = UL,
@ -131,7 +131,7 @@ BMDU <- function(x, d, seed=1492) {
diff[j] <- u[j] - l[j]
}
data_frame(
tibble(
method = "bmdu",
lower_limit = l,
upper_limit = m,
@ -141,7 +141,7 @@ BMDU <- function(x, d, seed=1492) {
} else {
warning('Size of the division should be less than the size of the input matrix')
data_frame(
tibble(
method = "bmdu",
lower_limit = l,
upper_limit = m,

2
R/bmde.r

@ -35,7 +35,7 @@ scimp_bmde <- function(x, p, seed=1492) {
dif[j] <- u[j] - l[j]
}
data_frame(
tibble(
method = "bmde",
lower_limit = l,
upper_limit = u,

2
R/fitz-scott.r

@ -33,7 +33,7 @@ scimp_fs <- function(inpmat, alpha) {
ci_length <- adj_ul - adj_ll
volume <- round(prod(ci_length), 8)
data_frame(
tibble(
method = "fs",
lower_limit = fs_ll,
upper_limit = fs_ul,

2
R/goodman.r

@ -33,7 +33,7 @@ scimp_goodman <- function(inpmat, alpha) {
ci_length <- adj_ul - adj_ll
volume <- round(prod(ci_length), 8)
data_frame(
tibble(
method = "goodman",
lower_limit = goodman_ll,
upper_limit = goodman_ul,

2
R/qh.r

@ -33,7 +33,7 @@ scimp_qh <- function(inpmat, alpha) {
ci_length <- adj_ul - adj_ll
volume <- round(prod(ci_length), 8)
data_frame(
tibble(
method = "qh",
lower_limit = qh_ll,
upper_limit = qh_ul,

2
R/wald.r

@ -35,7 +35,7 @@ scimp_wald <- function(inpmat, alpha) {
ci_length <- adj_ul - adj_ll
volume <- round(prod(ci_length), 8)
data_frame(
tibble(
method = "wald",
lower_limit = wald_ll,
upper_limit = wald_ul,

2
R/waldcc.r

@ -32,7 +32,7 @@ scimp_waldcc <- function(inpmat, alpha) {
ci_length <- adj_ul - adj_ll
volume <- round(prod(ci_length), 8)
data_frame(
tibble(
method = "waldcc",
lower_limit = waldcc_ll,
upper_limit = waldcc_ul,

2
R/wilson.r

@ -33,7 +33,7 @@ scimp_wilson <- function(inpmat, alpha) {
ci_length <- adj_ul - adj_ll
volume <- round(prod(ci_length), 8)
data_frame(
tibble(
method = "wilson",
lower_limit = wilson_ll,
upper_limit = wilson_ul,

Loading…
Cancel
Save