From 99e92cb89d60ef0ffdec13feb64b436876b76d03 Mon Sep 17 00:00:00 2001 From: oliviaAB Date: Wed, 13 Mar 2024 11:54:37 +1300 Subject: [PATCH] Corrected typo in title of features weight pair plot --- R/output_plot.R | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/R/output_plot.R b/R/output_plot.R index 2c95e88..1293a71 100644 --- a/R/output_plot.R +++ b/R/output_plot.R @@ -842,7 +842,7 @@ plot_features_weight_pair <- function(method_output, toplot <- method_output$features_weight axis_vars <- latent_dimensions - title <- paste0("Features ", y_label, " - ", attr(method_output, "method")) + title <- paste0(y_label, " - ", attr(method_output, "method")) } else { if (length(method_output) != 2) { stop( @@ -878,7 +878,6 @@ plot_features_weight_pair <- function(method_output, ) title <- paste0( - "Features ", y_label, " - ", paste0(names(method_output), collapse = " vs ")