I use the Splunk Machine Learning command:
| fit LinearRegression blah, blah into ModelName
I can generate a ModelName file.
Using the command
| summary ModelName
I can generate a result set that has feature and coefficient fields.
How can I "extract" the numerical coefficients so that I can create a regression equation for future use?
Example: I'm trying to create the equation
y = c0 + c1 * Term1 + c2 * Term2
for a future modeling activity?