Compute the logarithm of many different Columns.

Parameters:

Parameters:
See dedicated page for more information.
Purpose
Apply a log/exp transformation to one or more numeric columns.
Useful to stabilize variance, reduce right-skew (log), or revert a previous log transform (exp).
`
where is the parCox offset. (Natural log.)
Use this **only** to invert a previouscompute LOG` done with the same .
Why the offset ? It shifts data so the argument of the log stays positive (e.g., zero or negative values). Typical safe choice is , but any real value is accepted.
Input (pin 0): a table with one or more numeric columns. Non-numeric values are ignored/returned as null.
Output: the input table plus one new column per transformed variable.
LOG_<col> when compute LOG; EXP_<col> when compute EXP.Read data (e.g., with readCSV) and connect its output to logarithm.
Open Parameters:
Preview/Run. New columns LOG_* or EXP_* appear alongside the originals.
LOG_*, raise parCox until for your data range.compute EXP to raw features explodes to astronomic values—use it to undo a previous compute LOG (with the same ).Nulls in LOG_*
Cause: or non-numeric input.
Fix: increase parCox or clean/convert the source columns.
Huge values in EXP_*
Cause: applying EXP to raw features or logs from a different .
Fix: ensure you’re inverting log(C+x) with the same .
All results look identical
Cause: wrong selection in idxVars or a constant input column.
Fix: reopen the column selector and verify you picked the intended fields; check upstream data.

LOG_* / EXP_* columns

