Cointegration is an important tool for modeling the long-run relationships in time series data. If you work with time series data, you will likely find yourself needing to use cointegration at some point. This blog provides an in-depth introduction to cointegration and will cover all the nuts and bolts you need to get started.
In time series modeling we often encounter trending or nonstationary time series data. Understanding the characteristics of such data is crucial for developing proper time series models. For this reason, unit root testing is an essential step when dealing with time series data. In this blog post, we cover everything you need to conduct time series data unit root tests using GAUSS.
The statistical characteristics of time series data often violate the assumptions of conventional statistical methods. Because of this, analyzing time series data requires a unique set of tools and methods, collectively known as time series analysis. This article covers the fundamental concepts of time series analysis and should give you a foundation for working with time series data. Everything is covered from time series plotting to time series modeling.
The preliminary econometric package for Time Series and Panel Data Methods has been updated and functionality has been expanded in this first official release of tspdblib 1.0. The tspdlib 1.0 package includes functions for time series unit root tests in the presence of structural breaks, time series and panel data unit root tests in the presence of structural breaks, and panel data causality tests. It is available for direct installation using the GAUSS Package Manager.
In this blog, we examine the issue of identifying unit roots in the presence of structural breaks. We will use the quarterly US current account to GDP ratio to compare results from a number of unit root test found in the GAUSS tspdlib library including the: Zivot-Andrews (1992) unit root test with a single structural break, Narayan and Popp (2010) unit root test with two structural breaks, Lee and Strazicich (2013, 2003) LM tests with one and two structural breaks, Enders and Lee Fourier (2012) ADF and LM tests.
Permutation Entropy (PE) is a robust time series tool which provides a quantification measure of the complexity of a dynamic system by capturing the order relations between values of a time series and extracting a probability distribution of the ordinal patterns (see Henry and Judge, 2019). Today, we will learn about the PE methodology and will demonstrate its use through a toy example.
Though many standard econometric models assume that variance is constant, structural breaks in variance are well-documented, particularly in economic and finance data. If these changes are not accurately accounted for, they can hinder forecast inference measures, such as forecast variances and intervals. In this blog, we consider a tool that can be used to help locate structural breaks in variance — the iterative cumulative sum of squares algorithm(ICSS) (Inclan and Tiao, 1994).
Last week we learned how to use the `date` keyword to load dates into GAUSS. Today, we extend our analysis of time series data to plot high-frequency Forex data.
Time series data with inconsistently formatted dates and times can make your work frustrating. Dates and times are often stored as strings or text data and converting to a consistent, numeric format might seem like a daunting task. Fortunately, GAUSS includes an easy tool for loading and converting dates and times – the `date` keyword.
The key to getting the most performance from a matrix language is to vectorize your code as much as possible. Vectorized code performs operations on large sections of matrices and vectors in a single operation, rather than looping over the elements one-by-one. In this blog, we learn how to use the GAUSS recserar function to vectorize code and simulate a time series AR(1) model.