Skip to content

Commit

Permalink
Fix for 2013 reader
Browse files Browse the repository at this point in the history
  • Loading branch information
mattfidler committed Nov 28, 2023
1 parent 089f782 commit 63db301
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions R/pmx-reader.R
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,7 @@ read_mlx_par_est <- function(path, x, ...) {
names <- vapply(names(xx), function(v) {
if (val == v) return("PARAM")
if (grepl("par", v, ignore.case=TRUE)) return("VALUE")
if (grepl("(value|val)", v, ignore.case=TRUE)) return("VALUE")
if (grepl("r[.]?s[.]?e[.]?", v, ignore.case=TRUE)) return("RSE")
if (grepl("s[.]?e[.]?", v, ignore.case=TRUE)) return("SE")
if (grepl("pval", v, ignore.case=TRUE)) return("PVALUE")
Expand Down

0 comments on commit 63db301

Please sign in to comment.