Skip to content

Commit

Permalink
renamed labels of plots
Browse files Browse the repository at this point in the history
  • Loading branch information
Konrad1991 committed Sep 6, 2024
1 parent 9def0f8 commit f48e807
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tsf/R/BatchPlottingPlotly.R
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ plotSignalPlotly <- function(df, Dataset) {
mode = "markers",
marker = list(size = dotSizePlotly()),
color = ~factor(repetitions),
name = ~paste0("Repetition signal simulated", factor(repetitions)),
name = ~paste0("signal simulated Rep.", factor(repetitions)),
legendgroup = legend_group[i]
) %>% layout(margin = 0.015)
}
Expand Down Expand Up @@ -80,7 +80,7 @@ plotFreeDyePlotly <- function(df, Dataset) {
type = "scatter",
mode = "markers",
marker = list(size = dotSizePlotly()),
name = ~paste0("Repetition (Dye)", factor(repetitions)),
name = ~paste0("Dye Rep.", factor(repetitions)),
legendgroup = legend_group[i]
) %>% layout(margin = 0.015)
}
Expand All @@ -106,7 +106,7 @@ plotHostDyePlotly <- function(df, Dataset) {
type = "scatter",
marker = list(size = dotSizePlotly()),
mode = "markers",
name = ~paste0("Repetition (Host-Dye)", factor(repetitions)),
name = ~paste0("Host-Dye Rep.", factor(repetitions)),
legendgroup = legend_group[i]
) %>% layout(margin = 0.015)
}
Expand Down

0 comments on commit f48e807

Please sign in to comment.