Skip to content
Merged
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
Expand Up @@ -2,8 +2,8 @@ Encoding: UTF-8
Package: RSiena
Type: Package
Title: Siena - Simulation Investigation for Empirical Network Analysis
Version: 1.6.9
Date: 2026-06-10
Version: 1.6.10
Date: 2026-06-14
Authors@R: c(person("Tom A.B.", "Snijders", role = c("aut", "ctb"), comment = c(ORCID = "0000-0003-3157-4157")),
person("Ruth M.", "Ripley", role = "aut"),
person("Krists", "Boitmanis", role = c( "aut","ctb")),
Expand Down
12 changes: 12 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
2026-06-14

# RSiena 1.6.10

## Changes in RSiena:
### Bug correction
* Running `siena` with `returnChains = TRUE, returnDataFrame = TRUE`
corrected.
### Functionality
* Undo sorting of returned data frames for `returnChains=TRUE`
(`siena07models.cpp`).

2026-06-10

# RSiena 1.6.9
Expand Down
4 changes: 2 additions & 2 deletions man/RSiena-package.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ Bug reports can be submitted at
\tabular{ll}{
Package: \tab RSiena\cr
Type: \tab Package\cr
Version: \tab 1.6.9\cr
Date: \tab 2026-06-10\cr
Version: \tab 1.6.10\cr
Date: \tab 2026-06-14\cr
Depends: \tab R (>= 4.5.0)\cr
Imports: \tab Matrix, lattice, parallel, MASS, methods, xtable\cr
Suggests: \tab network, tools, codetools, tcltk\cr
Expand Down
4 changes: 2 additions & 2 deletions src/siena07models.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -416,7 +416,7 @@ SEXP forwardModel(SEXP DERIV, SEXP DATAPTR, SEXP SEEDS,
SEXP thisChain;
if (returnDataFrame)
{
thisChain = getChainDFPlus(*(pEpochSimulation->pChain()), true);
thisChain = getChainDFPlus(*(pEpochSimulation->pChain()), false);
}
else
{
Expand Down Expand Up @@ -665,7 +665,7 @@ SEXP mlPeriod(SEXP DERIV, SEXP DATAPTR, SEXP MODELPTR, SEXP EFFECTSLIST,
if (returnDataFrame)
{
PROTECT(theseValues =
Rf_duplicate(getChainDFPlus(*(pMLSimulation->pChain()), true)));
Rf_duplicate(getChainDFPlus(*(pMLSimulation->pChain()), false)));
}
else
{
Expand Down
Loading