Some parameter sets copied from RMC-RFA include an Ordinate column; others (e.g., resmodel) don't. Functions should tolerate either case.
Scope
Audit all input-handling functions to confirm they use positional column access (h[, 2], h[, 3], etc.) rather than name-based access (h$Date). Positional access makes the functions indifferent to whether Ordinate is present as column 1.
If any functions currently use name-based access, convert them to positional and document the expected column order in the roxygen.
Feedback source
Raised by Allen (comment #5).
Some parameter sets copied from RMC-RFA include an
Ordinatecolumn; others (e.g., resmodel) don't. Functions should tolerate either case.Scope
Audit all input-handling functions to confirm they use positional column access (
h[, 2],h[, 3], etc.) rather than name-based access (h$Date). Positional access makes the functions indifferent to whetherOrdinateis present as column 1.If any functions currently use name-based access, convert them to positional and document the expected column order in the roxygen.
Feedback source
Raised by Allen (comment #5).