Skip to content

Commit

Permalink
typo fix
Browse files Browse the repository at this point in the history
  • Loading branch information
wokenny13 committed Aug 7, 2024
1 parent e2024fc commit fe70440
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions R/Figures.R
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ TADA_Boxplot <- function(.data, id_cols = c("TADA.ComparableDataIdentifier")) {
}

base_boxplot <- plotly::plot_ly(
y = list(values), type = "box", fillcolor = tada.pal[[1]][1],
y = list(values), type = "box", fillcolor = tada.pal[1, 1],
q1 = quant_25, median = box_median,
q3 = quant_75, lowerfence = box_lower,
hoverinfo = "y",
upperfence = box_upper, boxpoints = "outliers",
marker = list(color = tada.pal[[1]][1]),
stroke = I(tada.pal[[1]][2])
marker = list(color = tada.pal[1, 1]),
stroke = I(tada.pal[1, 2])
)

# figure margin
Expand Down

0 comments on commit fe70440

Please sign in to comment.