From 18abe619c4ba29d1c5f3e35901db8eb69f10e001 Mon Sep 17 00:00:00 2001 From: Davis Vaughan Date: Mon, 12 Jan 2026 09:26:32 -0500 Subject: [PATCH] Avoid underscored function variant --- R/2-2.manipulate.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/2-2.manipulate.R b/R/2-2.manipulate.R index ada1dc1..4a1a21e 100644 --- a/R/2-2.manipulate.R +++ b/R/2-2.manipulate.R @@ -702,7 +702,7 @@ get_group_skeleton <- function(go, Group = "v_class", count = NULL, top_N = 8) { .[V(tmp_go)$name, "x"] suppressWarnings({ V(tmp_go)$count <- tmp_v %>% - dplyr::group_by_(Group) %>% + dplyr::group_by(dplyr::pick(dplyr::all_of(Group))) %>% dplyr::count() %>% tibble::column_to_rownames(Group) %>% .[V(tmp_go)$name, "n"]