Displaying 2 results from an estimated 2 matches for "__c__tbl_df".
2025 Jan 18
0
How setClass() may introduce a binary dependency between packages
...s(nm = _) |> lapply(\(n) {
ns <- loadNamespace(n)
ls(ns, pattern = '^[.]__C__', all.names = TRUE) |>
setNames(nm = _) |> lapply(get, ns) |>
vapply(attr, '', 'package') ->
pkgs
pkgs[pkgs != n]
}) |> Filter(length, x = _)
# $dplyr
# .__C__tbl .__C__tbl_df
# "tibble" "tibble"
#
# $MatrixModels
# .__C__mMatrix .__C__replValueSp
# "Matrix" "Matrix"
#
# $NMF
# .__C__AssayData
# "Biobase"
#
# $readr
# .__C__tbl .__C__tbl_df
# "tibble" "tibbl...
2025 Jan 18
0
How setClass() may introduce a binary dependency between packages
...amespace(n)
> ls(ns, pattern = '^[.]__C__', all.names = TRUE) |>
> setNames(nm = _) |> lapply(get, ns) |>
> vapply(attr, '', 'package') ->
> pkgs
> pkgs[pkgs != n]
> }) |> Filter(length, x = _)
> # $dplyr
> # .__C__tbl .__C__tbl_df
> # "tibble" "tibble"
> #
> # $MatrixModels
> # .__C__mMatrix .__C__replValueSp
> # "Matrix" "Matrix"
> #
> # $NMF
> # .__C__AssayData
> # "Biobase"
> #
> # $readr
> # .__C__...