Error Correction Model
Here are two great introductory videos on error correction models.
Here are two great introductory videos on error correction models.
Cointegration is an important concept when dealing with time series data. Here’s the corresponding definition on Wikipedia:
Cointegration is a statistical property of time series variables. Two or more time series are cointegrated if they share a common stochastic drift.
Genetic Programming at its core uses a set of operators (selection, mutation, crossover, elitism etc.) and parameters (number of generations, population size etc.). As there is a vast literature on this subject, I will skip the basics and assume that the reader is already familiar with the topic.
Yesterday, I wanted to calculate the significance of Pearson correlation coefficients between two series of data. I knew that I could use a Student’s t-test for this purpose, but I did not know how to do this in Excel 2013. And, to be honest, I did not really understand the documentation of Excel’s T.TEST formula. So, here is what I did.
Recently, I had created a user form with JSONForm. However, the form was embedded in another site with its own save button. JSONForm usually adds its own submit button to the site, but you easily can remove it. One of the problems left was how to trigger validation for the form manually once the site’s save button was clicked. Be aware that this implies triggering validation from outside the HTML form element. Whereas JSONForm’s submit button resides inside the form element as an <input type="button">, my site’s save button does not. Unfortunately, the description in the JSONForm’s Wiki pages was not really understandable to me. It took me a long time but I finally succeeded to trigger JSONForm validation manually. Here’s what I did.