Tagged Questions

xts is an R package that contains an eXtensible Time Series class and methods. xts extends and behaves like zoo.

learn more… | top users | synonyms

14
votes
3answers
2k views

Efficiency of operations on R data structures

I'm wondering if there's any documentation about the efficiency of operations in R, specifically those related to data manipulation. For example, I imagine it's efficient to add columns to a data ...
5
votes
2answers
98 views

What does useMethod mean here?

One of the kool things about R is if I type the function name I get to see the implementation. But this one is confusing me, recursively: > library(xts) > align.time function (x, ...) { ...
5
votes
1answer
153 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 ...
4
votes
2answers
122 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
1answer
192 views

R: Error in xts - order.by

I am trying to (re)build a basic prediction model of the S&P 500 INDEX (data orignates from Yahoo finance) I ran into some difficulties with the "ordering" of my data set. During the build of ...
4
votes
2answers
542 views

Convert data from csv file into “xts” object

I have got CSV files which has the Date in the following format: 25-Aug-2004 I want to read it as an "xts" object so as to use the function "periodReturn" in quantmod package. Can I use the ...
4
votes
3answers
334 views

Setting an xts Index

Build an xts object with two rows. library(xts) junk<-xts(c(1,2),as.Date(c("2010-01-01","2010-05-01"))) junk > [,1] > 2010-01-01 1 > 2010-05-01 2 Why ...
4
votes
1answer
740 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, ...
4
votes
2answers
244 views

How do I match data frames by time intervals?

This is a problem that comes up often when I am importing raw data from data loggers. A temperature logger is set to record temperature every ten minutes, and a separate gas logger is set to record ...
3
votes
1answer
83 views

Conversion from `zoo` to `xts` creates lots of NAs in the index

I have a rather strange problem that is probably best described by an example of an R session. I've tried to make this reproducible, as asked for in the comments below. meto <- structure(c(30, 25, ...
3
votes
1answer
67 views

Set day of week to be used by to.weekly

I am trying to convert a time series of daily data (only business days) contained in an xts object into a time series of weekly data. Specifically, I want the resulting time series to contain the end ...
3
votes
2answers
227 views

Aggregate (count) occurences of values over arbitrary timeframe

I have a CSV file with timestamps and certain event-types which happened at this time. What I want is count the number of occurences of certain event-types in 6-minutes intervals. The input-data ...
3
votes
1answer
119 views

R xts object subseting xts object with multiple days of intraday data for certain hours

Is there a way in xts object to do the same as below but for xts object with multiple days of intraday data? The below works like a clock but for one day of data. If I pass xts from 22nd to 26th it ...
3
votes
2answers
187 views

xts tick data rolling subset

I have created an xts object from historical tick data, sourced from a SQL database. I would like to create subsets of the tick data, for example: Show daily ticks between 10am and 2:30pm. This ...
3
votes
2answers
85 views

xts comparison to another xts object does not work

this = structure(c(-0.012, -0.028, -0.044, -0.033, -0.039, -0.042), .Dim = c(3L, 2L), .Dimnames = list(NULL, c("one", "two")), index = structure( c(1313643600, 1313730000, 1313816400), tzone = ...
3
votes
1answer
219 views

Adding Points, Legends and Text to plots using xts objects

I am starting on a bit of analysis on pairs of stocks (pairs trading) and here is the function I wrote for producing a graph (pairs.report - listed below). I need to plot three different lines in a ...
3
votes
1answer
106 views

Segmentation Fault working with a list of xts objects in R

I am having trouble working with a list of xts objects. I get different and strange behavior when running lapply on the list elements, and sometimes the program segfaults. I am running R 2.12.2 on ...
3
votes
2answers
190 views

How do I merge a large list of xts objects via loop / function in R?

I have a loop that extracts ~200 individual timeseries by making calls to an API. The loop outputs the timeseries as xts objects (library(xts)) into the Global Environment with the suffix ".oc". So I ...
3
votes
1answer
232 views

How do remove data from a certain weekday period from a R time-series?

I have a R xts timeseries. How can I create a new timeseries from it, which contains all the data from the original, except the data points occurring on Monday between 12:00 and 18:00?
3
votes
1answer
596 views

Quickly apply xts vector operations across wide zoo objects in R

This is really an extension of my question yesterday where I learned about apply.weekly. This works great, but I want to do this over wide zoo objects. If I use apply.weekly on a wide zoo it sums the ...
3
votes
2answers
1k views

R: Converting a data frame to xts

I'm trying to convert a data frame to xts object using the as.xts()-method. Here is my input dataframe q: q t x 1 2006-01-01 00:00:00 1 2 2006-01-01 01:00:00 2 3 2006-01-01 02:00:00 3 ...
3
votes
1answer
315 views

How can I alter a time series (XTS or ZOO) in R?

I am new to stackoverflow and fairly new to R but have searched long and hard and cannot find an answer to the following question. I have a number of data files that are temperature against a time ...
2
votes
1answer
40 views

can I write an xts object using write.csv in R

I have an xts object, the first column of which is date-time, followed by OHLC. when I type >test it prints the correct output as follows: 2010-09-08 15:13:00 115 115 110 115 ...
2
votes
1answer
74 views

Why is xts implemented as a matrix rather than a data frame?

I've found some information about xts fields representation in this thread but I'm still not clear why xts is an index + a matrix. Why not an index + a data frame? Wouldn't that allow more ...
2
votes
1answer
26 views

R divide 2 list objects which each contain the same size xts objects

I have 2 lists whose components are xts objects (co and oc). I want to produce another list object that has the result of oc / co. > length(co) [1] 1064 > length(oc) [1] 1064 > ...
2
votes
1answer
37 views

Dividing each row of an xts or zoo time series object by a fixed row

I am trying to divide an xts object which holds a number of time series (columns; with a common date column (index). I want to divide each column by its value at a specified date (say '2010-09-30'). ...
2
votes
3answers
103 views

R Rounding a Time

I have a data frame with a series of times in the following format: 08:09:23.079 > class(timer3) [1] "factor" I would like to round/convert them to this format: 08:09 The end goal is to use ...
2
votes
1answer
63 views

Finding the most recent observation earlier than a certain timestamp with XTS

I have an xts object that looks like this: > q.xts val 2011-08-31 09:30:00.002357 -1.0135222 2011-08-31 09:30:00.003443 -0.2182679 2011-08-31 09:30:00.005075 ...
2
votes
2answers
104 views

How to transform xts to lower frequency in a cumulative way

I am trying to convert xts time series data to lower periodicity in a cumulative way. For example, using to.weekly on sample data (sample_matrix) from xts package I get this: library(xts) ...
2
votes
2answers
90 views

Get time from xts index

I have an xts object, x. I want to run a for loop until a certain time, based on the time stamp in the index. > index(x) [1] "2011-10-12 16:44:00 SAST" Lets say I want to run my loop as long as ...
2
votes
1answer
73 views

Replace a for loop with apply family function on a xts

Hi my xts structure is : head(sym) BidSize Bid Ask AskSize Quantity Mid 2006-01-04 09:01:00 3771 181000 182000 5783 15625 181500 2006-01-04 09:02:00 3952 ...
2
votes
2answers
61 views

Converting XTS periodicity on non OHLC

I am working with xts or data.frame objects and require a simple means to roll up data that is of 1 minute intervals into 15 minute, hourly, etc... I realize that there are the to.period methods but ...
2
votes
2answers
106 views

xts merge odd behaviour

I have 3 xts objects all of whose indicies are 'Date' objects: > a a 1995-01-03 1.76 1995-01-04 1.69 > b b 1995-01-03 1.67 1995-01-04 ...
2
votes
1answer
111 views

Aggregating daily data using quantmod 'to.weekly' function creates weekly data ending on Monday not Friday

I am trying to aggregate daily share price data (close only) to weekly share price data using the "to.weekly" function in quantmod. The xts object foo holds daily share price data for a stock starting ...
2
votes
1answer
120 views

Wrong week-ending date using 'to.weekly' function in 'xts' package

I have a really odd issue... I am using the to.weekly and to.period function to convert a daily xts object to weekly data. In most instances, I get the week-ending date as a Friday (day.of.week ...
2
votes
3answers
109 views

Creating an xts object results in altered timestamps

Suppose I have: R> str(data) 'data.frame': 4 obs. of 2 variables: $ datetime: Factor w/ 4 levels "2011-01-05 09:30:00.001",..: 1 2 3 4 $ price : num 18.3 18.3 18.3 18.3 R> data ...
2
votes
1answer
154 views

Adding points to xts plot

I thought Adding Points, Legends and Text to plots using xts objects would have the answer to this question, but apparently not... require(quantmod) getSymbols("SAM") big.red.dot <- zoo(85, ...
2
votes
2answers
91 views

How can i convert a dataframe with a factor column to a xts object?

I have a csv file and when i use this command SOLK<-read.table('Book1.csv',header=TRUE,sep=';') I get this output > SOLK Time Close Volume 1 10:27:03,6 0,99 1000 2 ...
2
votes
1answer
88 views

Applying rolling functions based on time (intraday)

I am trying to test reversion on intra day trades to interim VWAP. I have compiled a (hopefully) reproducible example to show what I have done. At present I use rollapply, but that applies the VWAP ...
2
votes
1answer
113 views

Repeat Values when Merging XTS Data

If one of my tables has multiple values for the time stamp, and the other just one, can I repeat the value of the single item in the multiple values? For instance: XTS_A: 2011/01/01 10:00:00,Bar ...
2
votes
2answers
149 views

Converting xts to ts: Error in Round(frequency)

I have some imported csv data that I have turned into an xts object. If I try to convert it into a ts object (with the end goal of using functions like acf) I get: "Error in round(frequency) : ...
2
votes
2answers
241 views

Convert data.frame to xts object and preserve types

Is there a way to create an xts object from a data.frame and preserve data type? My numerics are being converted to character. This post from 2009 suggests merging columns into an existing xts: ...
2
votes
2answers
95 views

Prepend irregular xts with zeros

I need to add two irregular time series (covering business days). I have two xts series for two different products A + B. Product B has data from a later startup-date than A. I think I need to ...
2
votes
2answers
632 views

Remove y-axis label from plot of an xts object

Here is the code generating a plot of an xts object: require("quantmod") getSymbols("SPY") plot(Cl(SPY)) Which yields the following plot: Can you remove the y-axis values (the prices) from a ...
2
votes
2answers
61 views

timeBasedSeq function repeats some of the days it creates!

I am using The timeBasedSeq function from xts package to use as index in a time series/zoo object but it repeats some of the days it creates! Which than causes problems with zoo because the "index ...
2
votes
1answer
120 views

Reformatting xts object based on criteria

I have an xts object with series of monthly compounded returns of stocks in the following form: AALBERTS ABN_AMRO ABN_LNAM ACCELL_G AEGON___ 1973-01 NA NA NA NA ...
2
votes
3answers
155 views

How to vectorize: set a value based on last time a binary vector was 1

I have another R beginner question... How can I vectorize (avoid for loop in) following code: # algorithm for getting entry prices (when signal > 0): look back from current # position until you ...
2
votes
2answers
243 views

Is it posible to optimize (vectorize) these two functions for better performance

In my first attempts in using R I wrote two functions that are not very performant I guess and would appreciate if I can receive some hints on how to make them more performant (vectorized). Both ...
2
votes
3answers
390 views

Change value of some column in xts based on other columns values with lookback

I have the following xts object (representing long/short entries (column 1 and 2) and exit (columns 3 and 4) triggers with "aggregate" signal column which should be 1 (system is long), -1 (system is ...
2
votes
1answer
121 views

Rank ordering xts objects representing some property of equities using R

I am trying to rank order equities (by return for example). As a result I would like to receive a table containing names of stocks in ascending/descending order (parameter to this rank order function) ...

1 2 3