-
Notifications
You must be signed in to change notification settings - Fork 60
Open
Description
Prework
- Read and agree to the code of conduct and contributing guidelines.
- If there is already a relevant issue, whether open or closed, comment on the existing thread instead of posting a new issue.
Description
library(pointblank)
# explore data
scan_data(penguins)
#> Error in get(as.character(FUN), mode = "function", envir = envir): object 'label_value' of mode 'function' was not found
Created on 2025-06-19 with reprex v2.1.1
Session info
sessioninfo::session_info()
#> ─ Session info ───────────────────────────────────────────────────────────────
#> setting value
#> version R version 4.5.1 (2025-06-13)
#> os Ubuntu 24.04.2 LTS
#> system x86_64, linux-gnu
#> ui X11
#> language en_US.utf8
#> collate en_US.utf8
#> ctype en_US.utf8
#> tz Europe/Paris
#> date 2025-06-19
#> pandoc 3.6.3 @ /usr/share/positron/resources/app/quarto/bin/tools/x86_64/ (via rmarkdown)
#> quarto 1.6.40 @ /home/maelle/.local/bin/quarto
#>
#> ─ Packages ───────────────────────────────────────────────────────────────────
#> package * version date (UTC) lib source
#> blastula 0.3.6 2025-04-03 [1] RSPM (R 4.5.0)
#> cli 3.6.5 2025-04-23 [1] RSPM (R 4.5.0)
#> digest 0.6.37 2024-08-19 [1] RSPM (R 4.5.0)
#> dplyr 1.1.4 2023-11-17 [1] RSPM (R 4.5.0)
#> evaluate 1.0.3 2025-01-10 [1] RSPM (R 4.5.0)
#> farver 2.1.2 2024-05-13 [1] RSPM (R 4.5.0)
#> fastmap 1.2.0 2024-05-15 [1] RSPM (R 4.5.0)
#> fs 1.6.6 2025-04-12 [1] RSPM (R 4.5.0)
#> generics 0.1.4 2025-05-09 [1] RSPM
#> ggforce 0.5.0 2025-06-18 [1] CRAN (R 4.5.1)
#> ggplot2 3.5.2 2025-04-09 [1] RSPM (R 4.5.0)
#> glue 1.8.0 2024-09-30 [1] RSPM (R 4.5.0)
#> gt 1.0.0 2025-04-05 [1] RSPM (R 4.5.0)
#> gtable 0.3.6 2024-10-25 [1] RSPM (R 4.5.0)
#> htmltools 0.5.8.1 2024-04-04 [1] RSPM (R 4.5.0)
#> knitr 1.50 2025-03-16 [1] RSPM (R 4.5.0)
#> lifecycle 1.0.4 2023-11-07 [1] RSPM (R 4.5.0)
#> magrittr 2.0.3 2022-03-30 [1] RSPM (R 4.5.0)
#> MASS 7.3-65 2025-02-28 [2] CRAN (R 4.5.1)
#> pillar 1.10.2 2025-04-05 [1] RSPM (R 4.5.0)
#> pkgconfig 2.0.3 2019-09-22 [1] RSPM (R 4.5.0)
#> pointblank * 0.12.2 2024-10-23 [1] RSPM (R 4.5.0)
#> polyclip 1.10-7 2024-07-23 [1] RSPM
#> R6 2.6.1 2025-02-15 [1] RSPM (R 4.5.0)
#> RColorBrewer 1.1-3 2022-04-03 [1] RSPM (R 4.5.0)
#> reprex 2.1.1 2024-07-06 [1] RSPM (R 4.5.0)
#> rlang 1.1.6 2025-04-11 [1] RSPM (R 4.5.0)
#> rmarkdown 2.29 2024-11-04 [1] RSPM (R 4.5.0)
#> scales 1.4.0 2025-04-24 [1] CRAN (R 4.5.0)
#> sessioninfo 1.2.3 2025-02-05 [1] RSPM (R 4.5.0)
#> tibble 3.3.0 2025-06-08 [1] RSPM
#> tidyselect 1.2.1 2024-03-11 [1] RSPM (R 4.5.0)
#> tweenr 2.0.3 2024-02-26 [1] RSPM
#> vctrs 0.6.5 2023-12-01 [1] RSPM (R 4.5.0)
#> withr 3.0.2.9001 2025-05-16 [1] Github (r-lib/withr@59da597)
#> xfun 0.52 2025-04-02 [1] RSPM (R 4.5.0)
#> xml2 1.3.8 2025-03-14 [1] RSPM (R 4.5.0)
#> yaml 2.3.10 2024-07-26 [1] RSPM (R 4.5.0)
#>
#> [1] /home/maelle/R/x86_64-pc-linux-gnu-library/4.5
#> [2] /opt/R/4.5.1/lib/R/library
#> * ── Packages attached to the search path.
#>
#> ──────────────────────────────────────────────────────────────────────────────
Reproducible example
- Post a minimal reproducible example so the maintainer can troubleshoot the problems you identify. A reproducible example is:
- Runnable: post enough R code and data so any onlooker can create the error on their own computer.
- Minimal: reduce runtime wherever possible and remove complicated details that are irrelevant to the issue at hand.
- Readable: format your code according to the tidyverse style guide.
Expected result
I would expect no error. I get the same error with mtcars.
Session info
End the reproducible example with a call to sessionInfo()
in the same session (e.g. reprex(session_info = TRUE)
) and include the output.
petrbouchal