zoo is an R package that provides an S3 class with methods for totally ordered indexed observations.
0
votes
1answer
13 views
How to customize axis when plot multiple time series data in 1 panel?
My situation is quiet like this question, how ever i need to plot multiple time series(or fixed length vectors) in one panel. (I want to upload a picture but it says i dont have enough reputation ...)
...
0
votes
1answer
32 views
aggregate zoo object index classes date
Iam trying to merge zoo objects with different index classes. Because the index classes are different I have tried to aggregate the the first zoo object as index class date.
> dput(ldr_fund)
...
0
votes
1answer
30 views
Plotting truncated times from zoo time series
Let's say I have a data frame with lots of values under these headers:
df <- data.frame(c("Tid", "Value"))
#Tid.format = %Y-%m-%d %H:%M
Then I turn that data frame over to zoo, because I want to ...
0
votes
1answer
16 views
How to change date format in a zoo object?
A very simple question. But I just cannot find the solution via Google.
I have a quarterly zoo object named 'data' with date format "1947-4-1".
How can I change the date format into '1947 Q1'?
1
vote
1answer
30 views
Filling NA values with repetition of the leftmost non-NA value in zoo
How to fill NA values with repetition of the leftmost non-NA value in zoo?
In zoo pdf guide we have the function na.fill which performs this task. My question is how to say the fucntion to take the ...
1
vote
1answer
41 views
Lagging regular time series with xts
I am trying to lag a (weakly) regular time series using xts. zoo:::lag.zooreg provides the correct behavior, but I would prefer to stick with xts if possible. Any suggestions on how to make below work ...
0
votes
0answers
30 views
Running rollapply on non-aligned time series
How can I run rollapply on non-aligned time series data? For example, I want to calculate the rolling 1-second mean for each observation of these time series:
library(xts)
set.seed(123)
myts = ...
0
votes
2answers
33 views
mean and sd of the day in R with xts
again I do have my df in xts and don't have names! (as far as I know there is no name anymore when setting as.POSIXct()):
"2012-04-09 05:00:00",2
"2012-04-09 09:00:00",4
"2012-04-09 ...
3
votes
2answers
62 views
Animals in the zoo: can we aggregate a daily time series of factors and flag activity by ID?
Suppose there is a daily time series of animal activity in a zoo over many years. A subset of a very large dataset might look like this:
library(data.table)
type <- ...
0
votes
1answer
18 views
Joomla Zoo - user profile
I have a question, help me please.
Can I create custom profiles for users in joomla 2.5+zoo? I need special profiles, with special settings/capabilities. Example:
Just register users see in profile ...
0
votes
1answer
71 views
Convert daily to weekly/monthly data with R
I have daily prices series over a wide range of products; I want to convert to a new dataframe with weekly or monthly data.
I first used xts in order to apply the to.weekly function...which works ...
1
vote
2answers
58 views
From daily time series to weekly time series in R xts object
I'm using the zoo and xts package for analysing financial data. ts package is not very suitable since financial series have weekend with no data available.
I read about the apply function availbale ...
0
votes
1answer
34 views
Using merge.zoo to dynamically create variables in R
I'm trying to create a function that automatically creates polynomials of a zoo object. Coming from Python, the typical way to it is to create a list outside a for loop, and then append the list ...
0
votes
1answer
29 views
How to extract the dates in a separate file from a zoo file of security prices?
I'm trying to extract the dates in a separate file from a zoo file--specifically, the trading-day dates rather than standard calendar day dates. I download a series from Yahoo Finance as such:
vti ...
2
votes
1answer
41 views
double timestamp in dataframe merge
I do have a df looking like this:
time,v1,v1,v3,v4
1352639505, , ,94,101
1352639565, , ,94,101
1352639505,10,222, ,
1352639565,11,221, ,
First one is UTC Timestamp from 1970-01-01 - so I would use
...
1
vote
1answer
40 views
How to transform an R Matrix into an xts/zoo object?
aI'm having a problem transforming an xts derived R Matrix back into an xts object after running the returns function. Here's what I've got...
> class(xtsData)
[1] "xts" "zoo"
> ...
1
vote
1answer
45 views
Moving average of previous three values in R
In the zoo package there is a function called rollmean, which enables you to make moving averages. The rollmean(x,3) will take the previous, current and next value (ie 4, 6 and 2) in the table below. ...
2
votes
1answer
49 views
R - moving window comparison with datasets of unequal size
I need to compare a large set of values to a small set and find the minimum difference between the two. Maybe this is “moving window” comparison? I’ve looked at several time series packages but ...
2
votes
1answer
43 views
Convert times series to.quarterly with NAs
I have a multivariate zoo time series that contains NAs and I want to convert that to a quarterly series.
df1 <-1:12
df1[df1%%4==0] <- NA
zoo.object <- zoo(matrix(df1, ...
2
votes
2answers
74 views
Producing a rolling average of an unbalanced panel data set
I am trying to compute rolling means of an unbalanced data set. To illustrate my point I have produced this toy example of my data:
ID year Var RollingAvg(Var)
1 2000 2 NA
1 2001 3 ...
3
votes
3answers
92 views
Plot value over hour of day with xts/zoo R
I do have a time-series looking like this (minute values):
"timestamp", value
"2012-04-09 05:03:00",2
"2012-04-09 05:04:00",4
"2012-04-09 05:05:00",5
"2012-04-09 05:06:00",0
...
1
vote
1answer
61 views
Why is there no apply.hourly in R with xts/zoo?
I want to aggregate data by hourly mean - hourly it is very easy:
apply.daily(X2,mean)
Why is there no fuction for hourly?
I tried
hr.means <- aggregate(X2, format(X2["timestamp"],"%Y-%m-%d ...
2
votes
2answers
66 views
Delete specific values in R with zoo/xts
My other Question about "Add missing xts/zoo data with linear interpolation in R" you can find here Add missing xts/zoo data with linear interpolation in R .
But in general there is one more problem ...
1
vote
1answer
79 views
Add missing xts/zoo data with linear interpolation in R
I do have problems with missing data, but I do not have NAs - otherwise would be easier to handle...
My data looks like this:
time, value
2012-11-30 10:28:00, 12.9
2012-11-30 10:29:00, 5.5
...
0
votes
0answers
46 views
optimized rolling functions on irregular time series with time-based window
Is there some way to use rollapply (from zoo package or something similar) optimized functions (rollmean, rollmedian etc) to compute rolling functions with a time-based window, instead of one based on ...
3
votes
1answer
55 views
Fill in missing time steps (yyyy-mm-dd HH:MM:SS) by adding rows with missing times in R
I have a large data set that looks like:
Time,Volume
1996-02-05 00:34:00,0.01
1996-02-05 00:51:00,0.01
1996-02-05 00:52:00,0.01
1996-02-05 01:04:00,0.01
1996-02-05 01:19:00,0.01
1996-02-05 ...
0
votes
1answer
43 views
How to merge couples of Dates and values contained in a unique csv
We have a csv file with Dates in Excel format and Nav for Manager A and Manager B as follows:
Date,Manager A,Date,Manager B
41346.6666666667,100,40932.6666666667,100
...
0
votes
1answer
92 views
Wrong result from mean(x, na.rm = TRUE)
I want to compute the mean, min and max of a series of Managers returns, as follows:
ManagerRet <-data.frame(diff(Managerprices)/lag(Managerprices,k=-1))
I then replace return = 0 with NaN since ...
1
vote
1answer
32 views
zoo time series loses colname information after reducing a multivariate to a univariate time series
Let's say we have the following multivariate time series
A=zoo(data.frame(x=100:101,y=200:201,z=300:301),1:2)
Everything is fine with colnames(A) here. The function gives
[1] "x" "y" "z"
Now ...
0
votes
1answer
112 views
scalable carry forward in R to create daily time series
I'm attempting to create a daily time series dataset from what is currently observed only periodically. I can successfully perform the desired operation for a single case but can't work out how to ...
2
votes
2answers
62 views
rollapply applied to xts object
require(quantmod)
require(PerformanceAnalytics)
getSymbols('INTC')
x<- monthlyReturn(INTC)
rollapply(1+x,12,cumprod)
Given the code above, I got this error
Error in array(r, dim = d, dimnames = ...
0
votes
0answers
81 views
possible bug in zoo - R [checking before submitting]
When a zoo object is empty, rollapply throws an error instead of just returning nothing:
require(zoo)
z = na.omit(zoo(cbind(NA,NA), as.Date("2012-01-01")))
rollapply(z, width=10, FUN=mean, by=1, ...
4
votes
0answers
148 views
How to use zoo or xts with large data?
How can I use the R packages zoo or xts with very large data sets? (100GB)
I know there are some packages such as bigrf, ff, bigmemory that can deal with this problem but you have to use their limited ...
3
votes
2answers
48 views
Coercing a POSIXct object to Date object
Reproducible code:
# Loading quantmod
library(quantmod)
# Please, put in R this structure
a <- structure(c(2.4, 2.35, 2.44, 2.44, 2.31, 2.32, 2.41, 2.43, 2.46,
2.42, 2.45, 2.39, ...
0
votes
1answer
36 views
rollapply with embedded reference
My current code is this:
Model <- head(rollapplyr(z, width = 131, function(x)
fitted(lm(y ~x1+ x2, data = as.data.frame(x))), by.column = FALSE)[,131],3429)
I would like to do this:
fit1 ...
0
votes
2answers
80 views
rollapply regression “envir” error
I have this data set
https://gist.github.com/natemiller/42eaf45747f31a6ccf9a
I'm trying to apply a rolling regression using the rollapply in the zoo package, following the examples in the rollapply ...
1
vote
1answer
97 views
Maximum slope for a given interval each day
I have a set of time series data with ground surface temperatures measured every 10 minutes over multiple days (actually 2 years of data) from three different locations. What I am interested in ...
2
votes
0answers
43 views
lag a zoo object by different time periods
I have a zoo object where the time component is hourly ie...
2009-04-01 00:00:00
2009-04-01 01:00:00
...
2013-03-20 23:00:00
I know that I can use lag(zoo, k=-1) to get the previous hour. How can ...
0
votes
2answers
145 views
How to calculate moving average from text file?
I have one text file. I want to do some calculations (moving average) as shown below and write the results. The text file contains 15 columns and 601 rows.
columns <- paste0("X", 1:13)
ref <- ...
0
votes
1answer
31 views
Trouble with sapply
Here is the reproductible example (at least on my computer)
a <- as.Date(as.Date("2012-10-01"):as.Date("2013-03-25"))
myFun <- function (x) {
...
2
votes
2answers
97 views
apply to an xts object in R
I have an xts object. I would like to take an average for each row and merge it back to my object. Ex:
require(xts)
obj = xts(matrix(1:100, ncol=2), order.by=seq.Date(from=as.Date("2012-01-01"), ...
3
votes
1answer
83 views
R: Merge multiple irregular time series with zoo by averaging
library(zoo)
a <- read.zoo(data.frame(t = c(1, 2, 3, 4, 5, 6), v = c(20, 20.5, 21, 20.7, 22, 19.6)))
b <- read.zoo(data.frame(t = c(1, 1.3, 2.4, 2.7, 5.3, 6, 6.9), v = c(15, 15.2, 11, 20.3, 12, ...
0
votes
1answer
40 views
Troubles in applying the zoo aggregate function to a time series
We have the following function to compute monthly returns from a daily series of prices:
PricesRet = diff(Prices)/lag(Prices,k=-1)
tail(PricesRet)
# Monthly simple returns
MonRet = ...
0
votes
1answer
48 views
Replace value in element class zoo
I have two time series of the same length of class zoo. One of them as NA value for some dates while the other one is completely filled by value. Since I need to plot some pie charts, I would need to ...
1
vote
1answer
72 views
Interpolate zoo object with missing Dates
I have a climate time series with missing Dates (not missing values). For example:
n = 15
full.dates = seq(Sys.Date(), by = 'day', length = n)
serie.dates = full.dates[c(1:10, 12, 15)] # missing 11, ...
3
votes
2answers
69 views
assign new column for xts
I have made use of lapply to calculate cumulative products as a new column on a data set, BUT I had to get the data, calculate it, and then overwrite the original data using assign in each iteration ...
0
votes
1answer
120 views
zoo Warning: number of items to replace is not a multiple of replacement length
I'm a new user of zoo and trying to get the min of two elements in a zoo object, and assign it to one of them. I've got the following error message. Please help shed some lights.
library("tseries")
...
2
votes
2answers
98 views
Use zoo read and split a data frame over a column
I have a table containing observations on scores of restaurants(identified by ID). The variable mean is the mean rating of reviews received in a week-long window centered on each day (i.e. from 3 days ...
-2
votes
1answer
138 views
R: converting data frame to zoo: Error in as.matrix.data.frame(x)
I need to merge two time series, and it seems it's best to do it using merge.zoo. When I try to convert each of the two data frames to zoo, I get the following error:
zoo(FNCC_short)
Error in ...
0
votes
0answers
31 views
Rreading cvs files with read.zoo
I'm using the following command in a for loop to read in to multiple csv files.:
z <- read.zoo(file = SITES[i], header=TRUE, sep=';',tz = "", format = "%d.%m.%Y %H:%M")
The command is working ...
