A reference table listing all decomposition methods implemented in the LEdecomp package,
along with their corresponding function names and classification.
method_registryA data frame with 28 rows and 3 variables:
Character. The method name used in the method argument of LEdecomp().
Character. The actual function name (as a string) used to compute the decomposition.
Character. One of "direct", "direct_sen", "opt_ok", or "general", indicating how the method operates internally:
"direct": Classic decomposition methods using two full input vectors (e.g., Arriaga, Lopez-Ruzicka).
"direct_sen": Sensitivity-based methods that take mx1 and mx2, and divide the result by their difference.
"opt_ok": Sensitivity methods that accept a single mx input and optionally allow optimization over the interpolation point between mx1 and mx2.
"general": Generic methods like stepwise and horiuchi using externally provided tools (e.g., from DemoDecomp).
Character. The package where the underlying decomp function resides.
This registry helps centralize method metadata and supports internal operations like method matching, class-based routing, and printing.
available_methods, LEdecomp