fit<-ets(myts)
where myts is a time series defined using ts() function.Now i want to read the output parameters like smoothing parameters alpha, beta and initial states and model type chosen by ets() function(eg: (A,N,N))... How do i do that in c#? I am using R.Net.
Any help will be appreciated.
The result of the function ets is a list, so just coerce it to a list in C# too. See SupportSamples under https://github.com/jmp75/rdotnet-onboarding