You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: NEWS.md
+14-5Lines changed: 14 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,12 +1,21 @@
1
1
# Package v0.4.2
2
-
## Goals:
2
+
## Introduction of Function Classes
3
+
* This version introduces classes to each of the main function outputs (`antcolony.lavaan` == "antcolony", `simulatedAnnealing` == "simulatedAnnealing", `tabuShortForm` == "tabu")
4
+
* This will allow for `plot` and `print` methods for each of these functions
3
5
4
-
* Create an option for an initial short form to feed into the functions as a starting point
6
+
## Broken functionality: antcolony_plot
7
+
* The function `antcolony_plot` was replaced with `plot.antcolony` (aka, a plot method)
5
8
6
-
## Bugfixes:
9
+
## New functionality: S3 method for plotting
10
+
* With the addition of classes, a plot method and accompanying documentation has been added.
11
+
* Future updates will expand S3 methods for `print()` and `summary()`
7
12
8
-
* Fixed a situation where simulatedAnnealing returns the initial model
9
-
* Fixed simulatedAnnealing not correctly accepting a user-defined restartCriteria
13
+
## Bugfixes
14
+
* Bugfixes to the main functions when using them to create shortforms of bifactor models.
15
+
* They should now produce actual bifactor shortforms (in v0.4.1, sometimes the item names would be cut off in later iterations [FIXED] and the relationship between latent variables would be changed when they should have been kept constant [FIXED]).
16
+
17
+
## Added a package loading message
18
+
* Now, when using an interactive R session, a package message is printed out (with a little Penguin holding it all up)!
# Check the above messages and set pheromone to zero under certain circumstances
359
362
# the circumstances in question:
360
363
bad.warnings<- c("WARNING: could not compute standard errors",
361
-
"WARNING: could not compute scaled test statistic", "WARNING: covariance matrix of latent variables is not positive definite", "WARNING: model has NOT converged")
362
-
bad.errors<- c("ERROR: initial model-implied matrix (Sigma) is not positive definite","ERROR: initial model-implied matrix (Sigma) is not positive definite", "ERROR: missing observed variables in dataset")
364
+
"WARNING: could not compute scaled test statistic",
365
+
"WARNING: covariance matrix of latent variables is not positive definite",
366
+
"WARNING: model has NOT converged",
367
+
"WARNING: could not invert information matrix",
368
+
"WARNING: the optimizer warns that a solution has NOT been found")
369
+
bad.errors<- c("ERROR: initial model-implied matrix (Sigma) is not positive definite",
0 commit comments