From 0979ceed12515bf7be2f6019ed4be2106f7d25a3 Mon Sep 17 00:00:00 2001 From: Florence Bockting Date: Thu, 17 Sep 2026 12:03:17 +0300 Subject: [PATCH 1/5] docs: add a development roadmap article to the website --- .Rbuildignore | 2 +- _pkgdown.yml | 8 +- vignettes/articles-online-only/roadmap.Rmd | 290 +++++++++++++++++++++ 3 files changed, 298 insertions(+), 2 deletions(-) create mode 100644 vignettes/articles-online-only/roadmap.Rmd diff --git a/.Rbuildignore b/.Rbuildignore index 63463781..031998a3 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -18,7 +18,7 @@ vignettes/loo2-non-factorized_cache/* .github/* .vscode/* ^\.github$ -^vignettes/online-only$ +^vignettes/articles-online-only$ ^CRAN-SUBMISSION$ ^release-prep\.R$ diff --git a/_pkgdown.yml b/_pkgdown.yml index 0a216a02..43ffd1c2 100644 --- a/_pkgdown.yml +++ b/_pkgdown.yml @@ -12,10 +12,13 @@ navbar: title: "loo" structure: - left: [home, vignettes, functions, news, pkgs, stan] + left: [home, vignettes, functions, news, roadmap, pkgs, stan] right: [search, bluesky, forum, github, lightswitch] components: + roadmap: + text: Roadmap + href: articles/articles-online-only/roadmap.html pkgs: text: Other Packages menu: @@ -54,6 +57,9 @@ articles: - loo2-large-data - loo2-moment-matching - loo2-mixis + - title: Project + contents: + - articles-online-only/roadmap - title: Frequently asked questions contents: - faq diff --git a/vignettes/articles-online-only/roadmap.Rmd b/vignettes/articles-online-only/roadmap.Rmd new file mode 100644 index 00000000..e9228e86 --- /dev/null +++ b/vignettes/articles-online-only/roadmap.Rmd @@ -0,0 +1,290 @@ +--- +title: "Development roadmap" +output: + rmarkdown::html_vignette: + toc: false +vignette: > + %\VignetteIndexEntry{Development roadmap} + %\VignetteEngine{knitr::rmarkdown} + %\VignetteEncoding{UTF-8} +--- + +```{css, echo=FALSE} +.rm { + --rm-fg: var(--bs-body-color, #212529); + --rm-muted: var(--bs-secondary-color, #6c757d); + --rm-line: var(--bs-border-color, #dee2e6); + --rm-card: var(--bs-tertiary-bg, #f8f9fa); + --rm-accent: var(--bs-primary, #b2001d); + --rm-done: #2e7d32; + --rm-now: #1565c0; + --rm-planned: #6d4c41; + --rm-open: #7b1fa2; +} +.rm-updated { color: var(--rm-muted); font-size: 0.9em; } + +/* timeline */ +.rm-timeline { + display: grid; + grid-template-columns: repeat(4, minmax(0, 1fr)); + gap: 0; + margin: 2rem 0 2.5rem; + position: relative; +} +.rm-timeline::before { + content: ""; + position: absolute; + top: 0.7rem; left: 12.5%; right: 12.5%; + border-top: 3px solid var(--rm-line); +} +.rm-station { text-align: center; position: relative; padding: 0 0.5rem; } +.rm-station::before { + content: ""; + display: block; + width: 1.4rem; height: 1.4rem; + margin: 0 auto 0.75rem; + border-radius: 50%; + border: 3px solid var(--rm-accent); + background: var(--bs-body-bg, #fff); + position: relative; +} +.rm-station.rm-past::before { background: var(--rm-accent); } +.rm-station.rm-current::before { box-shadow: 0 0 0 5px color-mix(in srgb, var(--rm-accent) 25%, transparent); } +.rm-station p { margin: 0; } +.rm-station-title { font-weight: 700; font-size: 1.1em; } +.rm-station-sub { color: var(--rm-muted); font-size: 0.9em; } +.rm-station a { text-decoration: none; } + +/* status badges */ +.rm-badge { + display: inline-block; + padding: 0.1em 0.6em; + border-radius: 1em; + font-size: 0.8em; + font-weight: 600; + color: #fff; + white-space: nowrap; +} +.rm-badge.done { background: var(--rm-done); } +.rm-badge.now { background: var(--rm-now); } +.rm-badge.planned { background: var(--rm-planned); } +.rm-badge.open { background: var(--rm-open); } + +/* cards */ +.rm-cards { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr)); + gap: 1rem; + margin: 1rem 0 2rem; +} +.rm-card { + background: var(--rm-card); + border: 1px solid var(--rm-line); + border-left: 4px solid var(--rm-accent); + border-radius: 0.4rem; + padding: 0.9rem 1rem 0.6rem; +} +.rm-card h4 { margin: 0.4rem 0 0.4rem; font-size: 1.05em; } +.rm-card p { margin: 0 0 0.5rem; font-size: 0.95em; } +.rm-links { color: var(--rm-muted); font-size: 0.85em; } + +.rm-note { + border: 1px solid var(--rm-line); + border-radius: 0.4rem; + padding: 0.75rem 1rem; + margin: 1rem 0; +} + +@media (max-width: 600px) { + .rm-timeline { grid-template-columns: 1fr; gap: 1.25rem; } + .rm-timeline::before { top: 0.7rem; bottom: 0.7rem; left: 0.7rem; right: auto; border-top: 0; border-left: 3px solid var(--rm-line); } + .rm-station { text-align: left; padding-left: 2.5rem; } + .rm-station::before { position: absolute; left: 0; top: 0; margin: 0; } +} +``` + +:::::: {.rm} + +[Last updated: September 2026]{.rm-updated} + +This page shows what the **loo** developers work on now and what we plan +next. It helps you prepare for changes and find places where you can help. + +::: {.rm-note} +**This roadmap is not a promise.** loo is developed by a small team, mostly in +volunteer time. Plans and their order can change. Releases have no fixed dates. +::: + +::::: {.rm-timeline} + +:::: {.rm-station .rm-past} +[v2.10.1]{.rm-station-title} + +[Released July 2026]{.rm-station-sub} + +[NEWS](../news/index.html){.rm-station-sub} +:::: + +:::: {.rm-station} +[v2.11.0]{.rm-station-title} + +[Next minor release]{.rm-station-sub} + +[Milestone](https://github.com/stan-dev/loo/milestone/2){.rm-station-sub} +:::: + +:::: {.rm-station .rm-current} +[v3.0.0]{.rm-station-title} + +[Next major release, in development]{.rm-station-sub} + +[Milestone](https://github.com/stan-dev/loo/milestone/1){.rm-station-sub} +:::: + +:::: {.rm-station} +[Beyond 3.0.0]{.rm-station-title} + +[Ideas and exploration]{.rm-station-sub} +:::: + +::::: + +**Status:** +[In progress]{.rm-badge .now} +[Planned]{.rm-badge .planned} +[Open for ideas]{.rm-badge .open} + +## v2.11.0 + +::::: {.rm-cards} + +:::: {.rm-card} +[Planned]{.rm-badge .planned} + +#### Comparison output for subsampling + +Update the output structure of `loo_compare()` for subsampled LOO. + +[[#392](https://github.com/stan-dev/loo/issues/392)]{.rm-links} +:::: + +::::: + +## v3.0.0: predictive measures and model comparison + +The next major release extends loo from the ELPD to many predictive measures. + +::::: {.rm-cards} + +:::: {.rm-card} +[In progress]{.rm-badge .now} + +#### Predictive performance measures + +The `*_pred_measure()` functions compute twelve measures, for example the +ELPD, RMSE, $R^2$, CRPS, and accuracy. They work for in-sample, PSIS-LOO, +K-fold, and test-data predictions. You can also define your own measure. + +[[#281](https://github.com/stan-dev/loo/issues/281)]{.rm-links} +:::: + +:::: {.rm-card} +[In progress]{.rm-badge .now} + +#### Model comparison with `model_compare()` + +`model_compare()` compares models on any of these measures and reports the +standard error of each difference. It replaces `loo_compare()`, which keeps +working but warns. +:::: + +:::: {.rm-card} +[In progress]{.rm-badge .now} + +#### Formula reference + +A paper states every formula that loo implements, in one notation. The +documentation will cite it. We plan to publish it on arXiv. +:::: + +:::: {.rm-card} +[Planned]{.rm-badge .planned} + +#### Clearer warnings and messages + +Fewer and more specific warnings and messages, with the details moved to the +documentation. + +[[#353](https://github.com/stan-dev/loo/issues/353)]{.rm-links} +:::: + +:::: {.rm-card} +[Planned]{.rm-badge .planned} + +#### Closer integration with posterior + +Use more functions from the **posterior** package. Rename `n_eff` to ESS, as +in posterior. + +[[#249](https://github.com/stan-dev/loo/issues/249) · [#192](https://github.com/stan-dev/loo/issues/192)]{.rm-links} +:::: + +:::: {.rm-card} +[Planned]{.rm-badge .planned} + +#### Parallel computation + +Run loo computations in parallel with the **mirai** package. + +[[#308](https://github.com/stan-dev/loo/issues/308)]{.rm-links} +:::: + +:::: {.rm-card} +[Planned]{.rm-badge .planned} + +#### Plots of model differences + +Extend `loo_plot_difference()`. + +[[#394](https://github.com/stan-dev/loo/issues/394)]{.rm-links} +:::: + +:::: {.rm-card} +[Planned]{.rm-badge .planned} + +#### Code quality + +Mutation testing of the test suite, and a clean-up of old issues. + +[[#385](https://github.com/stan-dev/loo/issues/385) · [#388](https://github.com/stan-dev/loo/issues/388)]{.rm-links} +:::: + +::::: + +## Beyond 3.0.0 + +::::: {.rm-cards} + +:::: {.rm-card} +[Open for ideas]{.rm-badge .open} + +#### Your suggestion + +Is a measure, a diagnostic, or a workflow missing? Tell us. + +[[Open an issue](https://github.com/stan-dev/loo/issues/new) · [Stan Forums](https://discourse.mc-stan.org/)]{.rm-links} +:::: + +::::: + +## How to help + ++ Try the development version and report problems: + `remotes::install_github("stan-dev/loo")`. ++ Pick an issue labelled + [good first issue](https://github.com/stan-dev/loo/labels/good%20first%20issue) + or [help wanted](https://github.com/stan-dev/loo/labels/help%20wanted). ++ Read the + [contributing guide](https://github.com/stan-dev/loo/blob/master/.github/CONTRIBUTING.md). + +:::::: From d5d5f01eedc0aa5dfa129ce3773bc6695f17490c Mon Sep 17 00:00:00 2001 From: Florence Bockting Date: Thu, 17 Sep 2026 13:08:36 +0300 Subject: [PATCH 2/5] docs: add roadmap for website --- vignettes/articles-online-only/roadmap.Rmd | 141 +++++++++++---------- 1 file changed, 74 insertions(+), 67 deletions(-) diff --git a/vignettes/articles-online-only/roadmap.Rmd b/vignettes/articles-online-only/roadmap.Rmd index e9228e86..54effe5d 100644 --- a/vignettes/articles-online-only/roadmap.Rmd +++ b/vignettes/articles-online-only/roadmap.Rmd @@ -107,12 +107,27 @@ vignette: > [Last updated: September 2026]{.rm-updated} -This page shows what the **loo** developers work on now and what we plan -next. It helps you prepare for changes and find places where you can help. +Welcome! This page shows what the core developers of **loo** are working on +right now and what we have planned for the coming releases. It highlights a +selection of our main goals, not a complete list of everything we work on. + +We hope the roadmap is useful to you in a few ways: + ++ **If you use loo**, it shows what we currently prioritize and what changes + are on their way, so you can plan ahead. ++ **If you would like to contribute**, it shows the topics we are actively + thinking about. If one of them interests you, we would love to hear from you. + Leave a comment on the linked issue, or reach out on the + [Stan Forums](https://discourse.mc-stan.org/). ++ **If you think something important is missing**, or should get more + attention, please tell us. Your input helps us decide what to work on next. ::: {.rm-note} -**This roadmap is not a promise.** loo is developed by a small team, mostly in -volunteer time. Plans and their order can change. Releases have no fixed dates. +**A note on plans.** This roadmap shows our strategic plans for the medium and +long term. Alongside this work, we continue to respond to bug reports, +questions, and requests as they come in. The roadmap describes our current +intentions, not fixed commitments. Priorities can shift, and releases +have no fixed dates. We update this page as our plans change. ::: ::::: {.rm-timeline} @@ -122,7 +137,7 @@ volunteer time. Plans and their order can change. Releases have no fixed dates. [Released July 2026]{.rm-station-sub} -[NEWS](../news/index.html){.rm-station-sub} +[What's new](../news/index.html){.rm-station-sub} :::: :::: {.rm-station} @@ -144,7 +159,7 @@ volunteer time. Plans and their order can change. Releases have no fixed dates. :::: {.rm-station} [Beyond 3.0.0]{.rm-station-title} -[Ideas and exploration]{.rm-station-sub} +[Your ideas are welcome]{.rm-station-sub} :::: ::::: @@ -156,23 +171,24 @@ volunteer time. Plans and their order can change. Releases have no fixed dates. ## v2.11.0 +A smaller release with improvements to the current interface. + ::::: {.rm-cards} :::: {.rm-card} [Planned]{.rm-badge .planned} -#### Comparison output for subsampling +#### Any topic here? -Update the output structure of `loo_compare()` for subsampled LOO. - -[[#392](https://github.com/stan-dev/loo/issues/392)]{.rm-links} +Do we want to make some further changes? :::: ::::: -## v3.0.0: predictive measures and model comparison +## v3.0.0 -The next major release extends loo from the ELPD to many predictive measures. +Our next major release is a big step for loo. Beyond the ELPD, you will be able +to evaluate and compare models with many other predictive measures. ::::: {.rm-cards} @@ -181,11 +197,11 @@ The next major release extends loo from the ELPD to many predictive measures. #### Predictive performance measures -The `*_pred_measure()` functions compute twelve measures, for example the -ELPD, RMSE, $R^2$, CRPS, and accuracy. They work for in-sample, PSIS-LOO, -K-fold, and test-data predictions. You can also define your own measure. +The new `*_pred_measure()` functions provide predictive performance measures +beyond the ELPD, including RMSE, MAE, MSE, $R^2$, (C)RPS, the Brier score, and +classification accuracy. They work with in-sample, PSIS-LOO, K-fold, and +test-data predictions, and you can add your own measures. -[[#281](https://github.com/stan-dev/loo/issues/281)]{.rm-links} :::: :::: {.rm-card} @@ -193,40 +209,41 @@ K-fold, and test-data predictions. You can also define your own measure. #### Model comparison with `model_compare()` -`model_compare()` compares models on any of these measures and reports the -standard error of each difference. It replaces `loo_compare()`, which keeps -working but warns. +`model_compare()` succeeds `loo_compare()` and lets you compare models on all +built-in and custom measures. No worries: `loo_compare()` will keep working, +with a warning that points you to the new function. :::: :::: {.rm-card} [In progress]{.rm-badge .now} -#### Formula reference +#### Improved documentation and tutorials -A paper states every formula that loo implements, in one notation. The -documentation will cite it. We plan to publish it on arXiv. +We are actively working on several tutorials that introduce all new features +from three angles: the *implementation*, the *workflow*, and the *formal, +mathematical* background. :::: :::: {.rm-card} [Planned]{.rm-badge .planned} -#### Clearer warnings and messages +#### Better control of warnings and messages -Fewer and more specific warnings and messages, with the details moved to the -documentation. +We will make it easier to control warnings and messages at the package level, +for example to silence them in simulations or to see more detail when +debugging. -[[#353](https://github.com/stan-dev/loo/issues/353)]{.rm-links} :::: :::: {.rm-card} -[Planned]{.rm-badge .planned} - -#### Closer integration with posterior +[In progress]{.rm-badge .planned} -Use more functions from the **posterior** package. Rename `n_eff` to ESS, as -in posterior. +#### Improved diagnostics -[[#249](https://github.com/stan-dev/loo/issues/249) · [#192](https://github.com/stan-dev/loo/issues/192)]{.rm-links} +We will add more reliable Monte Carlo standard errors for PSIS-LOO, and +diagnostics that show when K-fold and other refit-based results are unreliable. +We also want to guide you step by step to a more robust computation when the +diagnostics warn. :::: :::: {.rm-card} @@ -234,57 +251,47 @@ in posterior. #### Parallel computation -Run loo computations in parallel with the **mirai** package. - -[[#308](https://github.com/stan-dev/loo/issues/308)]{.rm-links} -:::: - -:::: {.rm-card} -[Planned]{.rm-badge .planned} - -#### Plots of model differences - -Extend `loo_plot_difference()`. - -[[#394](https://github.com/stan-dev/loo/issues/394)]{.rm-links} -:::: - -:::: {.rm-card} -[Planned]{.rm-badge .planned} - -#### Code quality - -Mutation testing of the test suite, and a clean-up of old issues. - -[[#385](https://github.com/stan-dev/loo/issues/385) · [#388](https://github.com/stan-dev/loo/issues/388)]{.rm-links} +We will update how loo runs computations in parallel, so that it works better +in settings such as computing clusters. :::: ::::: ## Beyond 3.0.0 +This part of the roadmap is still open, and we would like to shape it together +with you. + ::::: {.rm-cards} :::: {.rm-card} [Open for ideas]{.rm-badge .open} -#### Your suggestion +#### Your ideas -Is a measure, a diagnostic, or a workflow missing? Tell us. +Is there a measure, a diagnostic, or a workflow you miss in loo? Or a topic +you think deserves a higher priority? We would love to hear about it. -[[Open an issue](https://github.com/stan-dev/loo/issues/new) · [Stan Forums](https://discourse.mc-stan.org/)]{.rm-links} +[[Open an issue](https://github.com/stan-dev/loo/issues/new) · [Start a thread on the Stan Forums](https://discourse.mc-stan.org/)]{.rm-links} :::: ::::: -## How to help - -+ Try the development version and report problems: - `remotes::install_github("stan-dev/loo")`. -+ Pick an issue labelled - [good first issue](https://github.com/stan-dev/loo/labels/good%20first%20issue) - or [help wanted](https://github.com/stan-dev/loo/labels/help%20wanted). -+ Read the - [contributing guide](https://github.com/stan-dev/loo/blob/master/.github/CONTRIBUTING.md). +## Get involved + +Contributions are welcome! Here are a few ways to join in: + ++ **Try the development version** with + `remotes::install_github("stan-dev/loo")`, and let us know what works well + and what does not. ++ **Share your view on priorities.** Comment on an issue that matters to you, + or let us know about features you are missing. ++ **Interested in contributing?** Browse our + [open issues](https://github.com/stan-dev/loo/issues) and leave a comment + on the one you would like to work on, or reach out on the + [Stan Forums](https://discourse.mc-stan.org/). ++ **Read the + [contributing guide](https://github.com/stan-dev/loo/blob/master/.github/CONTRIBUTING.md)** + for how we work. :::::: From 1c6bd61f8fbb2e06f6173b471b357709aced7c3a Mon Sep 17 00:00:00 2001 From: Florence Bockting Date: Thu, 17 Sep 2026 13:11:43 +0300 Subject: [PATCH 3/5] docs: add temporary roadmap.html for easier review --- vignettes/articles-online-only/roadmap.html | 511 ++++++++++++++++++++ 1 file changed, 511 insertions(+) create mode 100644 vignettes/articles-online-only/roadmap.html diff --git a/vignettes/articles-online-only/roadmap.html b/vignettes/articles-online-only/roadmap.html new file mode 100644 index 00000000..8d522cc5 --- /dev/null +++ b/vignettes/articles-online-only/roadmap.html @@ -0,0 +1,511 @@ + + + + + + + + + + + + + + +Development roadmap + + + + + + + + + + + + + + + + + + + + + + + +

Development roadmap

+ + + + +
+

Last updated: September 2026

+

Welcome! This page shows what the core developers of +loo are working on right now and what we have planned +for the coming releases. It highlights a selection of our main goals, +not a complete list of everything we work on.

+

We hope the roadmap is useful to you in a few ways:

+
    +
  • If you use loo, it shows what we currently +prioritize and what changes are on their way, so you can plan +ahead.
  • +
  • If you would like to contribute, it shows the +topics we are actively thinking about. If one of them interests you, we +would love to hear from you. Leave a comment on the linked issue, or +reach out on the Stan +Forums.
  • +
  • If you think something important is missing, or +should get more attention, please tell us. Your input helps us decide +what to work on next.
  • +
+
+

A note on plans. This roadmap shows our strategic +plans for the medium and long term. Alongside this work, we continue to +respond to bug reports, questions, and requests as they come in. The +roadmap describes our current intentions, not fixed commitments. +Priorities can shift, and releases have no fixed dates. We update this +page as our plans change.

+
+
+
+

v2.10.1

+

Released July 2026

+

What’s +new

+
+
+

v2.11.0

+

Next minor release

+

Milestone

+
+
+

v3.0.0

+

Next major release, in +development

+

Milestone

+
+
+

Beyond 3.0.0

+

Your ideas are welcome

+
+
+

Status: In +progress Planned Open for ideas

+
+

v2.11.0

+

A smaller release with improvements to the current interface.

+
+
+

Planned

+
+

Any topic here?

+

Do we want to make some further changes?

+
+
+
+
+
+

v3.0.0: predictive measures and model comparison

+

Our next major release is a big step for loo. Beyond the ELPD, you +will be able to evaluate and compare models with many other predictive +measures.

+
+
+

In progress

+
+

Predictive performance measures

+

The new *_pred_measure() functions provide predictive +performance measures beyond the ELPD, including RMSE, MAE, MSE, \(R^2\), (C)RPS, the Brier score, and +classification accuracy. They work with in-sample, PSIS-LOO, K-fold, and +test-data predictions, and you can add your own measures.

+
+
+
+

In progress

+
+

Model comparison with model_compare()

+

model_compare() succeeds loo_compare() and +lets you compare models on all built-in and custom measures. No worries: +loo_compare() will keep working, with a warning that points +you to the new function.

+
+
+
+

In progress

+
+

Improved documentation and tutorials

+

We are actively working on several tutorials that introduce all new +features from three angles: the implementation, the +workflow, and the formal, mathematical background.

+
+
+
+

Planned

+
+

Better control of warnings and messages

+

We will make it easier to control warnings and messages at the +package level, for example to silence them in simulations or to see more +detail when debugging.

+
+
+
+

In progress

+
+

Improved diagnostics

+

We will add more reliable Monte Carlo standard errors for PSIS-LOO, +and diagnostics that show when K-fold and other refit-based results are +unreliable. We also want to guide you step by step to a more robust +computation when the diagnostics warn.

+
+
+
+

Planned

+
+

Parallel computation

+

We will update how loo runs computations in parallel, so that it +works better in settings such as computing clusters.

+
+
+
+
+
+

Beyond 3.0.0

+

This part of the roadmap is still open, and we would like to shape it +together with you.

+
+
+

Open for ideas

+
+

Your ideas

+

Is there a measure, a diagnostic, or a workflow you miss in loo? Or a +topic you think deserves a higher priority? We would love to hear about +it.

+

Open an issue · Start a thread on the Stan +Forums

+
+
+
+
+
+

Get involved

+

Contributions are welcome! Here are a few ways to join in:

+
    +
  • Try the development version with +remotes::install_github("stan-dev/loo"), and let us know +what works well and what does not.
  • +
  • Share your view on priorities. Comment on an issue +that matters to you, or let us know about features you are missing.
  • +
  • Interested in contributing? Browse our open issues and leave +a comment on the one you would like to work on, or reach out on the Stan Forums.
  • +
  • Read the contributing +guide for how we work.
  • +
+
+
+ + + + + + + + + + + From 31bd43ebaf383efe1f4b6e8ab5fdf33e3ec25ff4 Mon Sep 17 00:00:00 2001 From: Florence Bockting Date: Thu, 17 Sep 2026 13:28:19 +0300 Subject: [PATCH 4/5] chore: update NEWS.md --- NEWS.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NEWS.md b/NEWS.md index 05834e1f..452e4ca8 100644 --- a/NEWS.md +++ b/NEWS.md @@ -6,6 +6,8 @@ and moment matching in #395 comparison-model minus reference-model by @florence-bockting in #391 * Update user messages in `print()` by @ishaan-arora-1, @florence-bockting in #328. +* Add roadmap with strategic development plans to loo website in by +florence-bockting in #396 # loo 2.10.1 From 16527cdd8fe63136c21897761dd405251cfa1236 Mon Sep 17 00:00:00 2001 From: Florence Bockting Date: Fri, 18 Sep 2026 17:19:00 +0300 Subject: [PATCH 5/5] docs: reorder tasks and remove status --- vignettes/articles-online-only/roadmap.Rmd | 37 +++++----------------- 1 file changed, 8 insertions(+), 29 deletions(-) diff --git a/vignettes/articles-online-only/roadmap.Rmd b/vignettes/articles-online-only/roadmap.Rmd index 54effe5d..0b58aeba 100644 --- a/vignettes/articles-online-only/roadmap.Rmd +++ b/vignettes/articles-online-only/roadmap.Rmd @@ -55,21 +55,6 @@ vignette: > .rm-station-sub { color: var(--rm-muted); font-size: 0.9em; } .rm-station a { text-decoration: none; } -/* status badges */ -.rm-badge { - display: inline-block; - padding: 0.1em 0.6em; - border-radius: 1em; - font-size: 0.8em; - font-weight: 600; - color: #fff; - white-space: nowrap; -} -.rm-badge.done { background: var(--rm-done); } -.rm-badge.now { background: var(--rm-now); } -.rm-badge.planned { background: var(--rm-planned); } -.rm-badge.open { background: var(--rm-open); } - /* cards */ .rm-cards { display: grid; @@ -159,15 +144,11 @@ have no fixed dates. We update this page as our plans change. :::: {.rm-station} [Beyond 3.0.0]{.rm-station-title} -[Your ideas are welcome]{.rm-station-sub} +[Planned improvements & Your ideas are welcome]{.rm-station-sub} :::: ::::: -**Status:** -[In progress]{.rm-badge .now} -[Planned]{.rm-badge .planned} -[Open for ideas]{.rm-badge .open} ## v2.11.0 @@ -176,7 +157,6 @@ A smaller release with improvements to the current interface. ::::: {.rm-cards} :::: {.rm-card} -[Planned]{.rm-badge .planned} #### Any topic here? @@ -193,7 +173,6 @@ to evaluate and compare models with many other predictive measures. ::::: {.rm-cards} :::: {.rm-card} -[In progress]{.rm-badge .now} #### Predictive performance measures @@ -205,7 +184,6 @@ test-data predictions, and you can add your own measures. :::: :::: {.rm-card} -[In progress]{.rm-badge .now} #### Model comparison with `model_compare()` @@ -215,7 +193,6 @@ with a warning that points you to the new function. :::: :::: {.rm-card} -[In progress]{.rm-badge .now} #### Improved documentation and tutorials @@ -225,7 +202,6 @@ mathematical* background. :::: :::: {.rm-card} -[Planned]{.rm-badge .planned} #### Better control of warnings and messages @@ -235,8 +211,13 @@ debugging. :::: +::::: + +## v3.X.X + +::::: {.rm-cards} + :::: {.rm-card} -[In progress]{.rm-badge .planned} #### Improved diagnostics @@ -247,7 +228,6 @@ diagnostics warn. :::: :::: {.rm-card} -[Planned]{.rm-badge .planned} #### Parallel computation @@ -257,7 +237,7 @@ in settings such as computing clusters. ::::: -## Beyond 3.0.0 +## Beyond v3.X.X This part of the roadmap is still open, and we would like to shape it together with you. @@ -265,7 +245,6 @@ with you. ::::: {.rm-cards} :::: {.rm-card} -[Open for ideas]{.rm-badge .open} #### Your ideas