Tagged Questions

A Time Series is a sequence of data points with values measured at successive times. Time Series Analysis exploits this natural temporal ordering to extract meaning and trends from the underlying data.

learn more… | top users | synonyms (1)

30
votes
15answers
4k views

Predict Stock Market Values

I'm building a web semantic project that gathers the maximum ammount of historic data about a certain company and tries to predict its future market stock values. For data I have the historic stock ...
13
votes
4answers
4k 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 ...
13
votes
5answers
5k views

Java library to do time series analysis

I need to do some analysis of an arbitrary amount of time series in Java. Among others i need to be able to use Linear regression, various smoothing techniques, filtering, etc. I'm not very keen of ...
8
votes
4answers
78 views

Is there a powerful database system for time series data?

In multiple projects we have to store, aggregate, evaluate simple measurement values. One row typcially consists of a time stamp, a value and some attributes to the value. In some applications we ...
8
votes
4answers
3k views

What is the best open source solution for storing time series data?

I am interested in monitoring some objects. I expect to get about 10000 data points every 15 minutes. (Maybe not at first, but this is the 'general ballpark'). I would also like to be able to get ...
7
votes
1answer
114 views

grouping events in a time series with R

I've been doing some logging to try and illustrate to Comcast Business the frequency of their service interruptions at my office. I'm logging ping response times to a file then parsing that file with ...
7
votes
2answers
132 views

R: Reversing the data in a time series object

I figured out a way to backcast (ie. predicting the past) with a time series. Now I'm just struggling with the programming in R. I would like to reverse the time series data so that I can forecast ...
7
votes
2answers
341 views

Excel or R: Preparing time series from multiple sources?

Lately I often had to handle time series data from multiple .csv sources in the same analysis. Let's assume for simplicity that all series are regular quarterly series (no missing values in between). ...
7
votes
2answers
407 views

how to calculate all pairwise distances in two dimensions

Say I have data concerning the position of animals on a 2d plane (as determined by video monitoring from a camera directly overhead). For example a matrix with 15 rows (1 for each animal) and 2 ...
7
votes
7answers
947 views

C++ Time Series Library (Analysis and Processing)

I'm looking to get SO'ers advice and suggestion on Time-Series libraries written in C++, some of the constraints and requirements for the library: Performance is very critical Capable of handling ...
7
votes
3answers
570 views

Detecting rare incidents from multivariate time series intervals

Given a time series of sensor state intervals, how do I implement a classifier which learns from supervised training data to detect an incident based on a sequence of state intervals? To simplify the ...
7
votes
3answers
2k views

Plotting two variables as lines using ggplot2

A very newbish question, but say I have data like this: test_data <- data.frame( var0 = 100 + c(0, cumsum(runif(49, -20, 20))), var1 = 150 + c(0, cumsum(runif(49, -10, 10))), date = ...
7
votes
2answers
249 views

Problem with iterating over a time-series in clojure

I have the following problem: I have a time-series with more than 10000 entries and I want to perform some calculations with each of them. This alone wouldn't be a problem, but I need to get the last ...
7
votes
5answers
2k views

MATLAB: compute mean of each 1-minute interval of a time-series

I have a bunch of times-series each described by two components, a timestamp vector (in seconds), and a vector of values measured. The time vector is non-uniform (i.e. sampled at non-regular ...
7
votes
3answers
2k 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 ...
6
votes
2answers
86 views

Selecting last n items in a time series

I want to select the last n items of a time series. I can use the [ operator, but I lose the time series attributes of the data: data <- ts(1:10, frequency = 4, start = c(1959, 2)) ...
6
votes
2answers
294 views

Easiest way to create an irregular time series graph (R? GGPLOT? ITS?)

I'm a graphic designer who is trying to use R to create graphs that are too complicated for Excel. I'm specifically trying to create an irregular time series step chart. I've had no problems creating ...
6
votes
2answers
601 views

Python Smooth Time Series Data

I have some data in python that is unixtime, value: [(1301672429, 274), (1301672430, 302), (1301672431, 288)...] Time constantly steps by one second. How might I reduce this data so the timestamp ...
6
votes
2answers
479 views

What is the best practice of handling time series in R?

I am using R for some statistical analysis of time series. I have tried Googling around, but I can't seem to find any definitive answers. Can any one who knows more please point me in the right ...
6
votes
5answers
1k views

Which R time/date class and package to use?

I have a limited time series exposure in R. So, I wonder which time/date class (and associated package) would be most appropriate to start with. Among the plethora of packages available at CRAN ...
6
votes
1answer
401 views

How to aggregate timeseries in Python?

I have two different timeseries with partially overlapping timestamps: import scikits.timeseries as ts from datetime import datetime a = ts.time_series([1,2,3], dates=[datetime(2010,10,20), ...
6
votes
1answer
324 views

which time series class to use in R for financial data?

for working with financial time series, like daily stock prices or intraday data, which time series packages are preferred? xts, plain zoo, or timeSeries or something else? I use both xts and zoo, but ...
6
votes
2answers
2k views

How to parse milliseconds in R?

How do I use strptime or any other functions to parse timestamps with milliseconds in R? > time[1] [1] "2010-01-15 13:55:23.975" > strptime(time[1], format="%Y-%m-%d %H:%M:%S.%f") [1] NA > ...
6
votes
4answers
1k 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 ...
5
votes
1answer
430 views

R ggplot2 plot several time series in a plot

After succeeding (with your help) in plotting meteo variables in single (one variable) graphs I'm trying to produce a panel with time series of the different variables in my data in a single panel, ...
5
votes
1answer
154 views

Regular analysis over irregular time series

I have an irregular time series (xts in R) that I want to apply some time-windowing to. For example, given a time series like the following, I want to compute things like how many observations there ...
5
votes
1answer
100 views

na.locf but don't do trailing NAs

I have the following time series > y<- xts(1:10, Sys.Date()+1:10) > y[c(1,2,5,9,10)] <- NA > y [,1] 2011-09-04 NA 2011-09-05 NA 2011-09-06 3 2011-09-07 4 ...
5
votes
3answers
427 views

R: merge two irregular time series (solved)

I have two multivariate time series x and y, both covering approximately the same range in time (one starts two years before the other, but they end on the same date). Both series have missing ...
5
votes
1answer
192 views

time series barplot in R

i have a time series data like this: x <- structure(list(date = structure(c(1264572000, 1266202800, 1277362800, 1277456400, 1277859600, 1278032400, 1260370800, 1260892800, 1262624400, ...
5
votes
1answer
207 views

Storing complex time-series in R

I have a dataframe with several columns: state county year Then x, y, and z, where x, y, and z are observations unique to the triplet listed above. I am looking for a sane way to store this in a ...
5
votes
2answers
651 views

Convert a irregular time series to a regular time series

I am having a problem when converting irregular time series to regular time series. Below a simplified example can be found: require(zoo) t <- as.character(c(1981,1984,1985)) d <- c(1,3,6) dt ...
5
votes
1answer
3k 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 ...
5
votes
3answers
2k views

rrd tool alternative for high volume

I am interested in knowing if there is any alternative to rrdtool for logging time series data. I am looking at something that can scale for a large number of devices to monitor. From what I read on ...
4
votes
1answer
69 views

rollapply time series in R (zoo) on backward looking data

I would like to use the zoo function rollapply to apply a function (for example mean) on a time series but only using the last N known points. For example: x = zoo(c(1,2,3,4), ...
4
votes
1answer
64 views

Shift a whole range of keys

I am working on time series data, for which the key column is a timestamp : Time. There are also many "value" columns for each row. I am about to shift a whole range of my data by several hours (due ...
4
votes
1answer
134 views

Dynamic Time Warping vs Needleman-Wunsch_algorithm

I am looking for the differences between Dynamic Time Warping and Needleman-Wunsch algorithm. Basically, they both find an alignment score. I need to calculate alignment(similarity) score between ...
4
votes
2answers
125 views

R Month by Month Percent Growth on an XTS objects

How might I plot month to month growth for the following data: A 2008-07-01 0 2008-08-01 87 2008-09-01 257 2008-10-01 294 2008-11-01 325 2008-12-01 299 (In dput format, before ...
4
votes
3answers
132 views

How to get the sum of each four rows of a matrix in R

I have a 4n by m matrix (sums at 7.5 min intervals for a year). I would like to transform these to 30 min sums, e.g. convert a 70080 x 1 to a 17520 matrix. What is the most computationally efficient ...
4
votes
3answers
120 views

Expand Categorical Column in a Time Series to Mulitple Per Second Count Columns

What is the best way to make the following transformation? There are two parts to this conversion. The first is to convert the speed to a per second mean. The second is to take the categorical column ...
4
votes
1answer
163 views

“as of” in numpy

I am looking for a way to implement an "as of" operator in numpy. Specifically, if: t1 is an n-vector of timestamps in a strictly increasing order; d1 is an n x p matrix of observations, with i-th ...
4
votes
2answers
426 views

Compute a compounded return series in Python

Greetings all, I have two series of data: daily raw stock price returns (positive or negative floats) and trade signals (buy=1, sell=-1, no trade=0). The raw price returns are simply the log of ...
4
votes
4answers
279 views

Getting consist units from diff command in R

The R diff command returns the differences between dates in a vector of dates in the R date format. I'd like to control the units that are returned, but it seems like they are automatically ...
4
votes
1answer
248 views

Data frames with variable-length data in R/Splus

The following works fine in R myarray <- as.array(list(c(5,5), 9, c(4,2,2,4,6))) mydf <- as.data.frame(myarray) But in Splus it does not---giving the error message: Problem in ...
4
votes
3answers
2k views

Using JFreeChart to display recent changes in a time series

How can I use JFreeChart to display just the most recent data in a continually updated time series?
4
votes
5answers
2k views

Storing time-series data, relational or non?

I am creating a system which polls devices for data on varying metrics such as CPU utilisation, disk utilisation, temperature etc. at (probably) 5 minute intervals using SNMP. The ultimate goal is to ...
4
votes
1answer
452 views

Identify important minima and maxima in time-series w/ Mathematica

I need a way to identify local minima and maxima in time series data with Mathematica. This seems like it should be an easy thing to do, but it gets tricky. I posted this on the MathForum, but ...
4
votes
2answers
430 views

Read a time series table using read.zoo

I've looked all over the place, but I can't find where this question has been asked before. What is a clean way to get this data into a proper zoo series? This version is a copy/paste to make this ...
4
votes
5answers
798 views

Calculate Returns over Period of Time

I'm trying to get a time series of returns for holding a certain asset for a specific time. My dataframe looks like this: Date Price 1998-01-01 20 1998-01-02 22 1998-01-03 21 ...
4
votes
2answers
383 views

What's a succinct, useful and efficient way to store large time-series in F#?

I'm currently learning F# and I'm exploring using it to analyse financial time-series. Can anyone recommend a good data structure to store time-series data in? F# offers a rich selection of native ...
4
votes
1answer
743 views

R: converting xts or zoo object to a data frame

What is an easy way of coercing time series data to a data frame, in a format where the resulting data is a summary of the original? This could be some example data, stored in xts or zoo object: t, ...

1 2 3 4 5 6