0
votes
1answer
112 views
Multivariate time series modelling in R
I want do fit some sort of multi-variate time series model using R.
Here is a sample of my data:
u cci bci cpi gdp dum1 dum2 dum3 dx
16.50 14.00 53.00 45.70 80.63 0 0 1 …
1
vote
2answers
171 views
storing massive ordered time series data in bigtable derivatives
I am trying to figure out exactly what these new fangled data stores such as bigtable, hbase and cassandra really are.
I work with massive amounts of stock market data, billions of rows of …
2
votes
1answer
99 views
R lag over missing data
Is there a variant of lag somewhere that keeps NAs in position? I want to compute returns of price data where data could be missing.
Col 1 is the price data
Col 2 is the lag of price
Col 3 shows p - …
1
vote
3answers
250 views
Time series in R
Hi,
I am tracking my body weight in a spread sheet but I want to improve the experience by using R. I was trying to find some information about time series analysis in R but I was not succesful.
The …
0
votes
1answer
62 views
key-value store for time series data?
I've been using SQL Server to store historical time series data for a couple hundred thousand objects, observed about 100 times per day. I'm finding that queries (give me all values for object XYZ …
0
votes
1answer
80 views
How to use correlogram to estimate variance?
From a book of computer simulation, I got this two equation.
The first is to calculate correlogram, the second is how to use correlogram to estimate variance.
The common approach to estimate …
0
votes
7answers
135 views
Finding similarities in a multidimensional array
Consider a sales department that sets a sales goal for each day. The total goal isn't important, but the overage or underage is. For example, if Monday of week 1 has a goal of 50 and we sell 60, that …
0
votes
2answers
126 views
How to use aryule() in Matlab to extend a number series?
I have a series of numbers. I calculated the "auto-regression" between them using Yule-Walker method.
But now how do I extend the series?
Whole working is as follows:
a) the series I use:
…
2
votes
2answers
39 views
Downsize Growing Time-Related Mysql Table
We have a database with the time related data in it. As you can imagine it growths (and slows down) with time. There is 50% read and 25% inserts and 25% update action on the present (this months) …
1
vote
4answers
311 views
which is the most efficient XML Parser for C++ ?
I need to write an application that fetches element name value (time-series data) pair from any xml source, be it file, web server, any other server. the application would consume the XML and take out …
2
votes
3answers
308 views
On the issue of automatic time series fitting using R
we have to fit about 2000 or odd time series every month,
they have very idiosyncratic behavior in particular, some are arma/arima, some are ewma, some are arch/garch with or without seasonality …
3
votes
4answers
370 views
Reshaping time series data from wide to tall format (for plotting)
I have a data frame containing multiple time series of returns, stored in columns.
The first column contains dates, and subsequent columns are independent time series each with a name. The column …
1
vote
2answers
459 views
Cumulative sums, moving averages, and SQL “group by” equivalents in R
What's the most efficient way to create a moving average or rolling sum in R? How do you do the rolling function along with a "group by"?
0
votes
1answer
401 views
JFreechart Rendering a timeseries on a tick scale
I have a timeseries of data which i'd like to plot on a tick scale rather than a time scale.
e.g. If the series contains points received at times: 10, 15, 30, 100. Instead of plotting these against …
1
vote
1answer
358 views
JFreechart Realtime Combined Plot - Rendering the previous value for a step subchart if no data point has been received
I have a combined plot in JFreechart consisting of 4 timeseries charts with a common time domain axis.
The data for the subplots arrives at different rates. For example I may receive a price change …
