Skip to content

Commit 63db301

Browse files
committed
Fix for 2013 reader
1 parent 089f782 commit 63db301

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

R/pmx-reader.R

+1
Original file line numberDiff line numberDiff line change
@@ -463,6 +463,7 @@ read_mlx_par_est <- function(path, x, ...) {
463463
names <- vapply(names(xx), function(v) {
464464
if (val == v) return("PARAM")
465465
if (grepl("par", v, ignore.case=TRUE)) return("VALUE")
466+
if (grepl("(value|val)", v, ignore.case=TRUE)) return("VALUE")
466467
if (grepl("r[.]?s[.]?e[.]?", v, ignore.case=TRUE)) return("RSE")
467468
if (grepl("s[.]?e[.]?", v, ignore.case=TRUE)) return("SE")
468469
if (grepl("pval", v, ignore.case=TRUE)) return("PVALUE")

0 commit comments

Comments
 (0)