Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: lavaanExtra
Title: Convenience Functions for Package 'lavaan'
Version: 0.2.1
Version: 0.2.2
Date: 2024-07-01
Authors@R:
person("Rémi", "Thériault", , "remi.theriault@mail.mcgill.ca", role = c("aut", "cre"),
Expand Down Expand Up @@ -40,6 +40,6 @@ Suggests:
Config/testthat/edition: 3
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.1
RoxygenNote: 7.3.2
VignetteBuilder: knitr
Language: en-US
1 change: 1 addition & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Generated by roxygen2: do not edit by hand

export(cfa_fit_plot)
export(discover_all_indirect_effects)
export(lavaan_cor)
export(lavaan_cov)
export(lavaan_defined)
Expand Down
11 changes: 11 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# lavaanExtra 0.2.3
* Incoming ✨

## lavaanExtra 0.2.2
* **Major Enhancement**: Added comprehensive indirect effects discovery (x.boot-inspired) to `write_lavaan()`
* **New Function**: `discover_all_indirect_effects()` automatically identifies ALL possible indirect pathways in SEM models using graph traversal algorithms
* **Enhanced `write_lavaan()`**: Now supports `indirect = TRUE` for comprehensive automatic indirect effects discovery, maintaining backward compatibility with existing approaches
* **New Parameters**: Added `auto_indirect_max_length` and `auto_indirect_limit` to control performance and complexity of automatic discovery
* **New Vignette**: Added comprehensive documentation for x.boot-inspired indirect effects functionality
* This enhancement addresses the investigation request for Christian Dorri's x.boot extension concept, providing Amos-like comprehensive indirect effects discovery without manual specification requirements

# lavaanExtra 0.2.2
* Incoming ✨

Expand Down
Loading