translate_nm_operator: Function to translate 'NONMEM' operators to 'R' operators

View source: R/filter-nm-data.R

translate_nm_operatorR Documentation

Function to translate NONMEM operators to R operators

Description

Function to translate NONMEM operators to R operators

Usage

translate_nm_operator(expr)

Arguments

expr

String. A NONMEM ignore/accept expression

Value

A dplyr::filter() expression

Note

.EQN. and .NEN. are available after ⁠NONMEM 7.3⁠

See Also

invert_operator(), translate_nm_expr()

Examples

## Not run: 

translate_nm_operator(c("AGE.NE.30", "ID.EQ.2", "WT/=70"))
#> [1] "AGE!=30" "ID==2" "WT!=70"

## End(Not run)

metrumresearchgroup/bbr documentation built on March 29, 2025, 1:08 p.m.