Skip to content

Commit 153442d

Browse files
committed
remove dw methods
1 parent 121e41e commit 153442d

File tree

5 files changed

+1
-37
lines changed

5 files changed

+1
-37
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: parameters
33
Title: Processing of Model Parameters
4-
Version: 0.24.2.11
4+
Version: 0.24.2.12
55
Authors@R:
66
c(person(given = "Daniel",
77
family = "Lüdecke",

NAMESPACE

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ S3method(convert_efa_to_cfa,parameters_pca)
123123
S3method(display,compare_parameters)
124124
S3method(display,equivalence_test_lm)
125125
S3method(display,parameters_brms_meta)
126-
S3method(display,parameters_distribution)
127126
S3method(display,parameters_efa)
128127
S3method(display,parameters_efa_summary)
129128
S3method(display,parameters_model)
@@ -554,7 +553,6 @@ S3method(plot,n_clusters_hclust)
554553
S3method(plot,n_clusters_silhouette)
555554
S3method(plot,n_factors)
556555
S3method(plot,parameters_brms_meta)
557-
S3method(plot,parameters_distribution)
558556
S3method(plot,parameters_efa)
559557
S3method(plot,parameters_model)
560558
S3method(plot,parameters_p_function)
@@ -613,7 +611,6 @@ S3method(print_html,parameters_standardized)
613611
S3method(print_md,compare_parameters)
614612
S3method(print_md,equivalence_test_lm)
615613
S3method(print_md,parameters_brms_meta)
616-
S3method(print_md,parameters_distribution)
617614
S3method(print_md,parameters_efa)
618615
S3method(print_md,parameters_efa_summary)
619616
S3method(print_md,parameters_model)

R/display.R

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -212,12 +212,3 @@ display.parameters_pca <- display.parameters_efa
212212
display.equivalence_test_lm <- function(object, format = "markdown", digits = 2, ...) {
213213
print_md(x = object, digits = digits, ...)
214214
}
215-
216-
217-
# Other functions ------------------------
218-
219-
220-
#' @export
221-
display.parameters_distribution <- function(object, format = "markdown", digits = 2, ...) {
222-
print_md(x = object, digits = digits, ...)
223-
}

R/plot.R

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,6 @@ plot.n_factors <- function(x, ...) {
4040
}
4141

4242

43-
#' @export
44-
plot.parameters_distribution <- function(x, ...) {
45-
insight::check_if_installed("see")
46-
NextMethod()
47-
}
48-
49-
5043
#' @export
5144
plot.n_clusters <- function(x, ...) {
5245
insight::check_if_installed("see")

R/print_md.R

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -333,23 +333,6 @@ print_md.equivalence_test_lm <- function(x,
333333
}
334334

335335

336-
# distribution print ----------------------------
337-
338-
#' @export
339-
print_md.parameters_distribution <- function(x, digits = 2, ci_brackets = c("(", ")"), ...) {
340-
formatted_table <- format(
341-
x = x,
342-
digits = digits,
343-
format = "markdown",
344-
ci_width = NULL,
345-
ci_brackets = ci_brackets,
346-
...
347-
)
348-
349-
insight::export_table(formatted_table, format = "markdown", align = "firstleft", ...)
350-
}
351-
352-
353336
# helper -----------------------
354337

355338
.export_table_tt <- function(x, formatted_table, groups, caption = NULL, footer = NULL, outformat = "markdown") {

0 commit comments

Comments
 (0)