Free Essay

Time Series Analysis Summary

In:

Submitted By Tokelo
Words 1929
Pages 8
Time Series Analysis Summary
Tokelo Khalema 2008060978 BSc. Actuarial Science University of the Free State Bloemfontein November 1, 2012

Time Series Analysis
A time-series is a stochastic process {Xt : t = 1, . . . , T } with a continous state space and discrete time domain. It arises naturally as an ordered series of values observed over time. Examples include daily closing prices of a stock index recorded over several years, say, the flow rate of the River Nile, road casualties in Great Britain over the years 1969-84, etc. Stationary time-series are particularly easy to analyse. A series is stationary if its mean and variance are constant over time. Special aids are available to help determine whether or not a series is stationary. Particularly notable in this regard are the autocorrelation function (ACF) and the partial autocorrelation function (PACF). These are plots of the sample autocorrelation and partial autocorrelation coefficients at various time lags, respectively. If the ACF decays gradually to zero, then the series is non-stationary. If on the other hand the ACF and PACF decay rapidly to zero, then the series is stationary. A series being non-stationary can be brought about by, among others, a trend, irregular fluctuations, or seasonal variation. Non-constant variance, or as commonly called, heteroscedasticity can be eliminated by using a variance-stabilising transformation. A number of ways exist that eliminate a trend. Two of which are, to subtract a regression line and to difference the series. The latter means creating the series ∆Xt = Xt − Xt−1 . In order to remove seasonality, the period must first be determined by creating a periodogram, and then differencing according to the period. As an example, a half-yearly periodic component from time-series Xt can be removed by taking the difference, ∆6 Xt = Xt − Xt−6 . Stationary time-series models include, Moving Average (MA), Autoregressive (AR), and Autoregressive Moving Average (ARMA) processes. Autoregressive Integrated Moving Average (ARIMA) processes are used to model nonstationary time-series. The ACf and PACF are also used for model identification. Say the autocorrelations tail off to zero while the partial autocorrelations cut off after p lags, then an appropriate model is an AR(p) model. But if the partial autocorrelations tail off to zero and the autocorrelations cut off after q lags, then we have an MA(q) process. An ARMA process can also be identified using the ACF and PACF. Say the autocorrelations tail off after q − p lags and q ≥ p, while the partial autocorrelations tail off after p − q lags and p ≥ q, then we have an ARMA(p, q) process. A white-noise process is a sequence of uncorrelated random variables Xt from a fixed distribution with mean zero, and finite constant variance. It is stationary, from its definition. When a model is fitted to a time-series, it is required that the residuals be white noise. The Ljung-Box-Pierce test is usually used to test for white noise. The Box-Jenkins approach to time-series analysis is the most commonly advocated time-series analysis methodology. The steps of this approach are as follows: 1. Draw the graph 1

2. Stabilise the variance 3. Test for stationarity and difference if necessary 4. Estimate the parameters 5. Estimate the coefficients 6. Carry out the diagnostic checks 7. Then use the model for forecasting if it passed the diagnostics These steps are summarised in figure 1 below. Postulate a general class of models Identify the model Reject or update fitted model

Estimate parameters

no

Are residuals white noise?

yes Use model for prediction Figure 1: Flow-chart to illustrate the general Box-Jenkins approach to timeseries analysis. Many standard packages include toolboxes for time-series analysis. These include among others, R, Matlab, and SAS.

2

LakeHuron

576

577

578

579

580

581

582

1880

1900

1920 Time

1940

1960

Figure 2: Time-series plot of the level of Lake Huron between years 1875 and 1972.

An illustrative Example
To demontrate how a series might be analysed in practice, we consider one sufficiently comprehensive example and carry out the analysis in R. The R builtin data set LakeHuron consists of measurements of the level of Lake Huron from 1875 to 1972. Figure 2 is a plot of this time series. > data(LakeHuron) > plot(LakeHuron) To view the behaviour of the mean and variance we issue the following command. > boxplot(LakeHuron~factor(c(gl(4,20),rep(5,18)))) From figure 3, the mean does not look very constant while the variance looks reasonably stable. From the acf in figure 4 below we see autocorrelations that decay very slowly with many of them rather significant. This suggests that the series is non-stationary. > par(mfrow=c(1,2)) > acf(LakeHuron,lag.max=12);pacf(LakeHuron,lag.max=12) Since we have a non-stationary series, we have to difference it to attain stationarity. This is further suggested by the Dickey-Fuller unit root test that 3

576

577

578

579

580

581

582

1

2

3

4

5

Figure 3: Side-by-side boxplots to visualise heteroscedasticity and non-constant mean.

Series LakeHuron
1.0

Series LakeHuron

0.8

0.6

Partial ACF 0 2 4 6 Lag 8 12

ACF

0.4

0.2

0.0

−0.2

−0.2 2

0.0

0.2

0.4

0.6

0.8

4

6 Lag

8 10

Figure 4: ACF and PACF plots of the Lake Huron time-series.

4

Differenced Time Series
2 dts −2 1880 −1 0 1

1900

1920 Time

1940

1960

Figure 5: Time-series plot of the differenced series. accepts differencing. Since we have a flat series we use the Dickey-Fuller test with ”none”. > ur.df(LakeHuron,"none",0) ############################################################### # Augmented Dickey-Fuller Test Unit Root / Cointegration Test # ############################################################### The value of the test statistic is: -0.0634 We proceed to difference the series and plot it. > dts <- diff(LakeHuron); p <- par(mfrow=c(1,1)) > plot(dts,main="Differenced Time Series") The differenced series above looks stationary. The unit root test also rejects H0 : φ0 = 1. Since once again we have a flat series we use the Dickey-Fuller test with ”none”. > ur.df(dts,"none",0)

############################################################### # Augmented Dickey-Fuller Test Unit Root / Cointegration Test # ############################################################### 5

−2

−1

0

1

2

1

2

3

4

5

Figure 6: Side-by-side boxplots to visualise heteroscedasticity and non-constant mean in the differenced series.

The value of the test statistic is: -8.716 This also suggests that d = 1 in the model ARIMA(p, d, q). Next we investigate the behaviour of the mean and variance. > boxplot(dts~factor(c(gl(4,20),rep(5,17)))) Now both the mean and variance look reasonably stable. This suggests that the series is stationary. A look at the acf and pacf in figure 7 below further supports that the series is stationary. All autocorrelations and partial autocorrelations lie within the confidence interval but for at most two of them that just barely touch the limits of the interval. It would be resonable to fit a simpler model, viz. an ARMA(1, 2) (since there’s suggestive evidence that q > p) model and then move on to a more complex model if we feel rather unsated with the quality of the fit. Model selection criteria exist that could be used to compare several candidate models. These include the AIC, BIC, and HCQ criteria. > acf(dts);pacf(dts) > m <- arima(LakeHuron,c(1,1,2)) > m 6

Series dts
1.0 0.2

Series dts

0.8

0.6

Partial ACF 0 5 10 Lag 15

ACF

0.2

0.4

0.0

−0.2

−0.2

−0.1

0.0

0.1

5

10 Lag

15

Figure 7: ACF and PACF plots of the differenced series. Series: LakeHuron ARIMA(1,1,2) Coefficients: ar1 ma1 0.6475 -0.5837 s.e. 0.1292 0.1393

ma2 -0.3279 0.1082

sigma^2 estimated as 0.4816: log likelihood=-102.56 AIC=213.12 AICc=213.56 BIC=223.42 From the above output the fitted model is Xt = 0.6475Xt−1 + t − 0.5837

t−1

− 0.3279

t−2 .

We assess the goodness of fit of the above model by examining the residuals. To do this we perform the Ljung-Box-Pierce test which conclusively accepts white noise: > Box.test(m$residuals,12) Box-Pierce test data: m$residuals X-squared = 5.0503, df = 12, p-value = 0.9563 7

Histogram of Residuals
30

Normal Q−Q Plot q 1.5

q q q q q q q q q q

25

20

Sample Quantiles

1.0

−0.5

q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q q qq q q q q qq q

Frequency

15

10

−2

−1

0

1

2

−1.5

0

−1.0

5

0.0 −2

0.5

0

1

2

Residuals

Theoretical Quantiles

Figure 8: A histogram and a normal quantile-quantile plot of the model residuals. For further diagnostic checks on the model, a histogram and normal quantilequantile plot of the residuals are created in figure 8 below, which do not show much deviation from normality: > hist(m$residuals,main="Histogram of Residuals") > qqnorm(m$residuals);qqline(m$residuals,col=2) Since none of the diagnostic checks considered above gives us any reason to doubt the quality of the fit, we accept the model and proceed to predict future values with the fitted model. Say we want to predict 10 years ahead. Then we issue the following command: > predict(m,n.ahead=10) $pred Time Series: Start = 1973 End = 1982 Frequency = 1 [1] 579.5848 579.2943 579.1061 578.9843 578.9054 578.8543 578.8212 578.7998 [9] 578.7859 578.7769 $se Time Series: 8

Start = 1973 End = 1982 Frequency = 1 [1] 0.6939623 1.0132292 1.1478702 1.2191141 1.2622767 1.2915184 1.3133202 [8] 1.3309101 1.3460033 1.3595592 This concludes the all the steps of the Box-Jenkins approach to time-series analysis. The moment a time series model has been accepted, it is ready to be put to use. Besides forecasting, as demonstrated above, other purposes of time series analysis are: • Description of data • Construction of a model which fits the data • Deciding whether the process is out of control, requiring action • For vector time series, investigating connections between two or more observed processes with the aim of using values of some of the processes to predict those of the others There are more complicated models than those discussed above. Commonly employed for modelling financial time series that exhibit periods of swings followed by periods of relative calm are the so-called Autoregressive Conditional Heteroscedasticity (ARCH) models. These models assume the variance of the current error term, t to be a function of the actual sizes of error terms of the previous time periods. The garch() function is available in R’s tseries package and is used for fitting GARCH models. A GARCH model, or a Generalised Autoregressive Conditional Heteroscedasticity model arises if an ARMA model is assumed for the error variance.

9

Bibliography
[1] R Development Core Team (2012). R: A language and environment for statistical computing. R Foundation for Statistical Computing, Vienna, Austria. ISBN 3-900051-07-0, URLhttp://www.R-project.org/.

10

Similar Documents

Free Essay

Research Product

...students of Bachelor of Sciences (Hons) (Statistics), Faculty of Computer and Mathematical Sciences, Universiti Teknologi MARA (UiTM) are required to undergo the industrial training. The students will be placed in the government or private organizations of their choice for a period of three months, during which they are also required to design a research project. The following one month will be allocated for data analysis, report writing and oral presentation. This training is very beneficial and important to expose students to the various aspects of industrial practices and ethics. The students are also able to apply the theories and knowledge that they have learned to the projects assigned to them. 1.2 OBJECTIVES OF INDUSTRIAL TRAINING The objectives of the industrial training are: ❖ To expose students to the real working environment ❖ To train students being familiar with the organization structure, operations, and administration. ❖ To acquire real experience in solving research problems and apply appropriate statistical data analysis. ❖ To enable students to integrate the theory learned at UiTM with practice. ❖ To cultivate cooperative networking between industries and UiTM 1.3 INDUSTRIAL TRAINING ATTACHMENT I had undergone my industrial training at Socio Economic and Environmental Research Institute (SERI) at Penang from 3rd January 2011 until 31st March 2011. I was directly supervised by Dr Chan Huang Chian and Ms Ong Wooi...

Words: 10336 - Pages: 42

Free Essay

Forecasting for House Sales in Us

...Forecasting Project House Sales in USA Presented by: Michelle Deets Ravin Seju Ankan Sinha March 7, 2016 Professor Dawit Zerom ISDS 526 Executive Summary The data in the report “Monthly total houses sold in the United States for the period January 1978 through July 2007” is time series data representing sales in thousands of units. The data has not been seasonally adjusted. Our project was to produce forecasts of housing sales by creating a model using Forecast Pro’s Expert Selection Method. The model was generated by withholding 2 years of data and creating a forecast based upon the data from January 1978 to July 2005. We provided fit measures based upon MAPE and RMSE and evaluated the model’s accuracy MAPE, RMSE, and GMRAE from Forecast Pro’s out-of-sample statistic evaluation table. The MAPE numbers show that the forecast expands from a 7.95% error at the beginning of the holdout period and quickly grows to 32% error within 24 months. The acceptability of this error depends upon which managers are using it. The housing industry touches many fields, from moving to painting to construction to land purchases. This large of an error might could be unacceptable given the amount of risk and resources involved in construction of new single family homes; a manager might prefer to only use the first 6 months of forecasted data to stay within a 10% error range. Looking at the results of the forecast’s graph, the actual data (Exhibit A, represented by the...

Words: 2230 - Pages: 9

Free Essay

Business

...slump, government excise taxes and other factors such as decreased numbers in both tourist arrivals to the Caribbean island and beer exports to the U.S. As purchasing manager, Benson’s prime responsibility was maintaining adequate inventory levels for all goods and materials used in the company’s production processes, including the purchase of new bottles and the scheduling of deliveries (Erskine, 2004). State the Assignment Question As purchasing manager, Benson was responsible for all goods and materials used in the company’s production process, inclusive of new bottles purchase. Benson had to be cognizant of the fact that orders for new bottles had to be ordered four months in advance to allow for supplier transportation and lead times....

Words: 2218 - Pages: 9

Free Essay

Mr Ado

...their sales revenue forecast for planning the budgeting using various forecasting models. Companies that do not implement these forecasting models may have some problems about the financial situation in the future. When we focus on the food sector in Turkey, we see that Turkey has started to be an effective player in the world food and beverage market every passing day. At the same time Turkey is ranked at 7th biggest agriculture country with the 62 billion dollars of agricultural revenue. Consumers have become more conscious about well-balanced and healthy nutrition. Along with this developments and changes leads to improvement of the food and beverage industry. Food and Drink Industry Associations of Turkey determine their food and beverage export targets as 40 billion dollars for 2023. Food industry is the one of the biggest industry in Turkey with about 280 billion dollars share in GDP. Food industry has 40.000 businesses and over 400.000 employees. Food sector has also 4.4 billion dollars foreign trade surplus and showed 7.2 % growth. 2. PRELIMINARY DATA ANALYSIS 3.1. Time Series...

Words: 2605 - Pages: 11

Free Essay

Arma Model Application

...Prediction and Analysis of the Gap of Per Capita Annual Income between Rural and City Households based on ARMA model Abstract This paper applies ARMA model into the analysis of the gap of per capita annual income between rural and city households from 1978 to 2011. Firstly, it builds up several ARMA models based on 1978-2009 data; and then predicts the income gaps of 2010 and 2011. Compared to the real income gaps of 2010 and 2011, this paper shows that ARMA model works well in this time series prediction. Keyword B-J model, ARMA model, per capita annual income of rural and city households 1 Introduction With the rapid development of the China economy, people’s life levels are rising year after year. However, there’re many social problems in the booming economy, such as the income gap between rural and city households. The increasing gap of per capita annual income between rural and city households has been a heat topic in the society, since it may result in the inequality in the social welfare distributions. Also, it will discourage the rural households’ working efficiency and reduce their happiness. In order to deal with this social problem in a proper way, many researchers have been thinking about it and offering advice to the policy makers. LU (2004) says that the phenomenon of urbanization has an important effect on the income gap between rural and city households [1]. YAO (2005) analyzes the relationship between the unbalanced financial development and the income gap...

Words: 1966 - Pages: 8

Free Essay

Eviews Commands

...Summary of important EViews-Commands Import of data from EXCEL: if the xlsx-format does not work, use File.xls Choice of sample period: Sample / @all @first @last 1990 2010 1981Q3 2005Q1 1960M1 2000M11 in command line e.g.: smpl @first 1990 Univariate statistics: Click series / View / Spreadsheet Graph Descriptive Statistics&Tests Correlogram data as numbers Graphics z.B. histogram, mean, etc. autocorrelationen Generation/Transformation of series: Generate / x = 0 generates a series with zeros Generate / pi = (pc – pc(-1))/pc(-1)*100 Generates the inflation rate in % based on prices pc Generate / x = log(y) taking logs Generate / dlx = dlog(x) dlx = log(x) – log(x(-1)) Growth rate in continuous time Generate / y = exp(x) exp(x) as command: series x=0 Trend variable (linear): Generate / t = @trend Standard normal distributed realizations: Generate / x = nrnd Lags, lagged variables, taking differences: Generate / x1 = x(-1) x1(t) = x(t-1), Lag 1 of x Generate / dx = d(x) dx(t) = x(t) – x(t-1) = (1-B)x(t) first difference Generate / d2x = d(x,2) d2x(t) = dx(t) – dx(t-1) = (1-B)^(2)x(t) taking first differences twice Generate / d12x = d(x,0,12) d12x(t) = x(t) - x(t-12) = [1-B^(12)]x(t) seasonal difference for monthly data Generate d12_1x = d(x,1,12) d12_1x(t) = (1-B)[1-B^(12)]x(t) Geneartion of dummy variables: seasonal dummies: s=1,2,3,... Generate / ds = @seas(s) as command: series ds = @seas(s) Generate / d1 = 0 and manually in View/Spreadsheet use Edit+/p-value for x of...

Words: 669 - Pages: 3

Free Essay

Best Fitted Model to Forecast the Trade Balance of Malaysia

...The inclusion of five appropriate models in this study is purposely to examine the parameter values for comparison for error measures. Models involved are based on the Univariate Modelling Techniques; Naive with Trend Model, Single Exponential Smoothing, Double Exponential Smoothing, Holt’s Method Model and Adaptive Response Rate Exponential Smoothing (ARRES). The best parameter value obtained in this study marked as the main indicator in selecting the best fitted model; indicated by the smallest value of mean square error (MSE and MAPE). Based on the analysis, Adaptive Response Rate Exponential Smoothing (ARRES) model is the most suitable model to forecast the monthly Trade balance for Malaysia. Keywords: Fitted Model, Forecast, Parameter Value, Univariate Modelling Techniques, MSE, MAPE INTRODUCTION The balance of trade is the difference between the monetary value of exports and imports in an economy over a certain period of time. A positive balance of trade is known as a trade surplus and consists of exporting more than is imported while a negative balance of trade is known as a trade deficit or, informally, a trade gap. The balance of trade forms part of the current account for a particular country, which also includes other transactions such as income from the international investment position as well as international aid. A surplus in current account shows the country's net international asset position increases...

Words: 2922 - Pages: 12

Premium Essay

Case Study Las Vegas Visitors

...Executive Summary Dumitri Mironescu is the owner of a limousine company in Las Vegas which currently consists of 17 vehicles. During the year of 2012, Dumitru decided that it was time to replace three of the company’s 17 vehicles. In addition, Dumitru wanted to add two new vehicles to his fleet of limousines. Dumitru submitted a business plan to the bank to finance his purchases. After reviewing his business plan, the bank was not comfortable with the company’s revenue forecast and needed further convincing. Dumutri got help from his son to prepare a forecast for visitors to Las Vegas in 2013. Revenue for the limousine service is driven by the amount of visitors to the area. Therefore, in order to forecast the company’s revenue, Denis will have to prepare a forecast for visitors to Las Vegas using different forecasting methods. The best forecast method will be chosen and will help determine the growth of revenue; and ultimately decide whether Dumitru should replace three vehicles as well as add two additional vehicles to his fleet. Background In 1983, Dumitru Mironescu and his family fled Romania and settled in Las Vegas. In order to help his family survive, Dumitru had given up ideas of furthering his education and took a job at a major hotel as a parking attendant until he learned to speak English. His incredible attention to detail and friendly interaction with everyone was noticed. Eventually his hard worked paid off and he was offered the position as the driver for...

Words: 842 - Pages: 4

Free Essay

Time Series

...U.S. roads (American Petroleum Institute). With the ever-increasing presence of natural gas in our lives, it is important to know how it affects us on the consumer level. More importantly, it is essential to understand how it affects us monetarily. When we can understand trends and forecast the pricing of natural gas, we can improve our financial planning, resource allocation, etc. II. Data Set Description and Methods Used This paper will be conducting a time series analysis on U.S. Natural Gas prices from January 2002 through December 2012. Prices were collected by the Energy Information Administration on a monthly basis, and the prices are measured in dollars per thousand cubic feet. The raw data set is much more extensive, and measures data such as wellhead price, import and export price, etc. I chose to neglect this in my data set for simplicity sake and because it is more applicable to look at prices directly affecting everyday individual consumers. The methods used in the time series analysis of U.S. Natural Gas Prices include non-seasonal differencing, exploring autocorrelation and partial autocorrelation functions, ARIMA modeling, conducting diagnostics on modeling by looking at residual normality [QQ plot, Shapiro Test], Box-Pierce...

Words: 2184 - Pages: 9

Free Essay

Electricity Forecasting

...two parts which are model estimation (fitted) and model evaluation. The selection of the most suitable model was indicated by the smallest value of mean square error (MSE) and Mean Absolute Percentage Error (MAPE.) Based on the analysis, Holt’s Method Model is the most suitable model for forecasting electricity consumption since it has the smallest value of MSE and MAPE. Keywords: Univariate Modelling Techniques; Forecast Model; Mean Absolute Percentage Error; Mean Square Error. Introduction Electricity is one of the most important and used form of energy. Nowadays, electricity is essential for economic development especially for industrial sector. Malaysia, as a developing country, the important of electricity cannot be denied especially in industrial sector. Malaysia’s National electricity utility company (TNB) is the largest in the industry, serving over six million customers throughout the country. TNB is responsible for transmission and distribution of electricity. Transmission activities include system planning, evaluating, implementing and maintaining the transmission assets. One of the requirements of the system planning is load forecasting. Univariate Modelling Techniques are used for analyzing data on a single variable at a time. Examples of Univariate Modelling Techniques are the Naïve Models, Methods of Average,...

Words: 3732 - Pages: 15

Premium Essay

Operations Management Krajewski Chpt 13

...known as a time series. Answer: True Reference: Demand Patterns Difficulty: Easy Keywords: time series, repeated observations 2. One of the basic time series patterns is trend. Answer: True Reference: Demand Patterns Difficulty: Easy Keywords: time series, pattern, trend 3. One of the basic time series patterns is random. Answer: True Reference: Demand Patterns Difficulty: Easy Keywords: time series, pattern, random 4. Random variation is an aspect of demand that increases the accuracy of the forecast. Answer: False Reference: Demand Patterns Difficulty: Easy Keywords: random variation, forecast accuracy 5. Aggregation is the act of clustering several similar products or services. Answer: True Reference: Key Decisions on Making Forecasts Difficulty: Moderate Keywords: aggregation, clustering 6. Aggregating products or services together generally decreases the forecast accuracy. Answer: False Reference: Key Decisions on Making Forecasts Difficulty: Moderate Keywords: aggregation, forecast accuracy 54 Copyright ©2010 Pearson Education, Inc. Publishing as Prentice Hall Chapter 13 • Forecasting 7. Judgment methods of forecasting are quantitative methods that use historical data on independent variables to predict demand. Answer: False Reference: Key Decisions on Making Forecasts Difficulty: Moderate Keywords: judgment method, forecast, historical data, qualitative methods 8. Time-series analysis is a statistical...

Words: 13527 - Pages: 55

Free Essay

Long Run Forecast of the Covariance Matrix

...core financial operations, for instance – many asset-pricing models use volatility as an estimation parameter for simple risk; several famous option pricing formulas such as Black-Scholes use volatility; volatility estimates and forecasts are crucial for portfolio management and also in hedging risk. Because of the importance of volatility, as can be seen from the examples above, the interest in modelling and forecasting volatility has increased many-fold in recent times, with a special emphasis on forecasting. There are several types of techniques available for forecasting volatility, with extraordinary diversity of procedure such as the Autoregressive Moving Average (ARMA) models, Autoregressive Conditional Heteroscedasticity (ARCH) models, Stochastic Volatility (SV) models, regime switching and threshold models. (Xiao and Aydemir, 2007:1) A broad division between the techniques is based on primary assumptions of constant variance i.e. homoscedastic e.g. AMA models, or non-constant variance i.e. heteroscedastic or time-varying e.g. GARCH models. The GARCH i.e. Generalized ARCH models introduced past conditional volatility as an explanatory variable of the forecast volatility in addition to volatility new that was already a part of the original ARCH model. The GARCH models have become the most widely used auto-regressive heteroscedastic models. (Labys, 2006:28) ARCH models have the capability of...

Words: 5171 - Pages: 21

Premium Essay

Twitter Mood Predicts the Stock Market

...c t Behavioral economics tells us that emotions can profoundly affect individual behavior and decisionmaking. Does this also apply to societies at large, i.e. can societies experience mood states that affect their collective decision making? By extension is the public mood correlated or even predictive of economic indicators? Here we investigate whether measurements of collective mood states derived from largescale Twitter feeds are correlated to the value of the Dow Jones Industrial Average (DJIA) over time. We analyze the text content of daily Twitter feeds by two mood tracking tools, namely OpinionFinder that measures positive vs. negative mood and Google-Profile of Mood States (GPOMS) that measures mood in terms of 6 dimensions (Calm, Alert, Sure, Vital, Kind, and Happy). We cross-validate the resulting mood time series by comparing their ability to detect the public’s response to the presidential election and Thanksgiving day in 2008. A Granger causality analysis and a Self-Organizing Fuzzy Neural Network are then used to investigate the hypothesis that public mood states, as measured...

Words: 8835 - Pages: 36

Premium Essay

Fdi in Bangladesh

...Foreign direct investment And Economic Growth in Bangladesh Internship program at Brac Bank Ltd. Internship Report On “Foreign direct investment And Economic Growth in Bangladesh and Internship program at Brac Bank Ltd.” The Internship report is submitted to the Department of Finance, University of Dhaka for the partial fulfillment of the requirement of BBA program. Submitted to: Department of Finance University of Dhaka Supervised by: Mohammad Jahangir Alam Chowdhury Professor Department of Finance University of Dhaka Submitted by: Zarin Tasnim ID: 17-009 Section: A Department of Finance University of Dhaka Signature of the Supervisor Date of Submission: 7th May, 2015 Letter of Transmittal 7th May, 2015 Mohammad Jahangir Alam Chowdhury Professor Department of Finance University of Dhaka Subject: Submission of Internship Report on Foreign direct investment and Economic Growth in Bangladesh. Dear Sir, It is an absolute pleasure for me to submit the Internship Report titled “Foreign direct investment and Economic Growth in Bangladesh” as a significant part of the BBA program. While making this report, I have experienced a fair knowledge about Foreign direct investment and economy of Bangladesh and its impact on the growth of Bangladesh. I have tried my best to follow your guidelines in every aspect of preparing this report. I have collected what I believed...

Words: 13995 - Pages: 56

Free Essay

Wk5 Dq2

...Discussion Question #2 Week 5 Lynnlee Palmer RES/342 July 2012 Biman Ghosh Discussion Question #2 Week 5 Components of a Time Series: (1) Secular trend The term “trend” is commonly used in day-to-day conversation. We often complain about the rising trend of population, prices etc. “Trend”, also called “Secular” or “long-term” trend is the basic tendency of production, sales, income, employment etc. to grow or decline over a period. It includes steady movements over a long time and excludes short-range oscillations. Secular trend is attributable to factors such as population change, technological progress, or large-scale shifts in consumer tastes. More populations call for more food, more clothing, and more housing. Technological changes, discovery, or depletion of resources, improvements in business organization and Government intervention in the economy is other major causes for the growth or decline of many economic time series. Secular trends may be linear or nonlinear. (2) Seasonal variation Seasonal variations are those periodic movements in business activity, which occur regularly every year and have their origin in the nature of the year itself. Since they repeat over a period of 12 months, they can be predicted accurately. Almost any type of business activity is susceptible to a seasonal influence to a greater or lesser degree and as such, these variations are regarded as normal phenomena during every year. Although the word...

Words: 1581 - Pages: 7