GithubHelp home page GithubHelp logo

Comments (2)

helske avatar helske commented on August 19, 2024

First possibility that comes to my mind would be the use of so called "seemingly unrelated time series model", where you use multivariate model for both Y and X, i.e. something like this:

model <- SSModel(log(cbind(MyY, MyX)) ~ 
  SSMtrend(2, Q = list(matrix(NA, 2, 2), matrix(NA, 2, 2))), 
  H = matrix(NA, 2, 2), data = MyData)

fit <- fitSSM(model, inits = rep(0, 9), method = "BFGS")
sim <- simulateSSM(fit$model, "obs", nsim = 100)
ts.plot(exp(sim[,1,]))

Essentially you are modelling both the observations Y and the covariate values X, instead of treating X fixed, and here the relationship between Y and X is incorporated into the covariance terms in H and Q.

from kfas.

andrewbcooper avatar andrewbcooper commented on August 19, 2024

Brilliant! It never occurred to me to incorporate the relationship between X and Y in the covariance terms. And yes, treating those future Xs as "known" in the model for Y was bothering me, but I couldn't figure out how to avoid it. This is perfect! And it takes 1/60th of the processing time! Thanks!

from kfas.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.