Skip to content

Commit

Permalink
285 substitute dplyr::full_join with base::merge in `tm_g_gh_corr…
Browse files Browse the repository at this point in the history
…elationplot` (#286)

Fix #285

---------

Signed-off-by: Marcin <133694481+m7pr@users.noreply.github.com>
  • Loading branch information
m7pr committed Jul 24, 2024
1 parent 2d33b3b commit ebd654b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/tm_g_gh_correlationplot.R
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ srv_g_correlationplot <- function(id,

qenv <- qenv %>% teal.code::eval_code(
code = bquote({
ANL_TRANSPOSED <- dplyr::full_join( # nolint
ANL_TRANSPOSED <- dplyr::inner_join( # nolint
ANL_x, ANL_y,
by = c("USUBJID", "AVISITCD", .(trt_group)),
suffix = .(sprintf("_%s", c(input$xaxis_param, input$yaxis_param)))
Expand Down

0 comments on commit ebd654b

Please sign in to comment.