Advent of Code is back! Unwrap daily challenges to sharpen your Alteryx skills and earn badges along the way! Learn more now.

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Extract ARIMA and ETS coefficients

fabriciopsouza
5 - Atom

Hi everyone!

 

Its possible to extract ARIMA and ETS coefficients? 

 

Tks!

2 REPLIES 2
AndrewKramer
Alteryx Alumni (Retired)

These coefficients are produced in a report ("R" anchor of ARIMA/ETS Tool); however, these values cannot be extracted as text or a variable.

AndrewKramer
Alteryx Alumni (Retired)

After further investigation, you should be able to extract these coefficients with the R Tool. The "O" anchor contains the serialized model object. You can unserialize this object and extract the fitted values.

 

#Load Model Object
the.model <- read.Alteryx("#1")

#Unserialize Model Object
mod.obj <- unserializeObject(as.character(the.model$Object[1]))

#Get coefficients
coef <- data.frame(mod.obj$coef)

#Write back to Alteryx
write.Alteryx(coef, 1)

  

Labels