From 317d6e650b40442e8563f6fbfa5c9c0886605604 Mon Sep 17 00:00:00 2001 From: Matthew Fidler Date: Thu, 10 Oct 2024 06:25:41 -0500 Subject: [PATCH] Add doc --- man/rxUdfUi.Rd | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 man/rxUdfUi.Rd diff --git a/man/rxUdfUi.Rd b/man/rxUdfUi.Rd new file mode 100644 index 000000000..afd575cbf --- /dev/null +++ b/man/rxUdfUi.Rd @@ -0,0 +1,34 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/rudf.R +\name{rxUdfUi} +\alias{rxUdfUi} +\title{This function is called when processing rxode2 user functions from +the models} +\usage{ +rxUdfUi(num, fun, iniDf) +} +\arguments{ +\item{num}{This represents the user function number in the model} + +\item{fun}{this is the function that needs to be parsed and +changed. This is a R language expression} + +\item{iniDf}{initial values \code{data.frame}} +} +\value{ +This needs to return a list with the following elements: +\itemize{ +\item \code{iniDf} -- the modified initial estimate data.frame +\item \code{before} -- any model code that needs to be added before the current line +\item \code{after} -- any model code that needs to be added after the current line +\item \code{replace} -- replacement code for this user function +} +} +\description{ +This function is called when processing rxode2 user functions from +the models +} +\author{ +Matthew L. Fidler +} +\keyword{internal}