From 87fbf33049da089aaa0b8a3172c2dfdcb0f25c16 Mon Sep 17 00:00:00 2001 From: Mariana P Braga Date: Tue, 7 Jul 2026 11:51:19 +0200 Subject: [PATCH 1/2] Install with pak::pak --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e4c7454..42e960a 100644 --- a/README.md +++ b/README.md @@ -18,14 +18,14 @@ and basic examples of running various models under [Articles](https://treeppl.or You can install treepplr like so: ``` r -if(!require("devtools", quietly = TRUE)) { - install.packages("devtools") - library(devtools) +if(!require("pak", quietly = TRUE)) { + install.packages("pak") + library(pak) } else { - library(devtools) + library(pak) } -devtools::install_github("treeppl/treepplr") +pak::pak("treeppl/treepplr") ``` This will only install the R package. The TreePPL compiler will not be downloaded and installed until you run your first analysis, and the TreePPL compiler is called. During the download, you will see a message like this From 3332908daae9bc7458a42a366bad2d4cec1b1661 Mon Sep 17 00:00:00 2001 From: Mariana P Braga Date: Sat, 18 Jul 2026 17:46:07 +0200 Subject: [PATCH 2/2] Add authors and future.apply package --- DESCRIPTION | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index d5b77ad..fb62dfe 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,9 +1,12 @@ Package: treepplr Title: R Interface to TreePPL Version: 0.15.0 -Authors@R: +Authors@R: c( person("Mariana", "P Braga", , "mpiresbr@gmail.com", role = c("aut", "cre"), - comment = c(ORCID = "0000-0002-1253-2536")) + comment = c(ORCID = "0000-0002-1253-2536")), + person("Tim", "Virgoulay", role = "aut"), + person("Stenio", "Foerster", role = "aut") + ) Description: This package in an interface for using TreePPL programs. License: MIT + file LICENSE Encoding: UTF-8 @@ -17,6 +20,7 @@ Imports: assertthat, digest, future, + future.apply, methods, jsonlite, tidytree,