search for: seriesa

Displaying 4 results from an estimated 4 matches for "seriesa".

Did you mean: series
2000 Feb 01
1
plotting spectrum of time series etc
...ven in the help file didn't work (all with the same error message, below). And the 'ts'ibrary was loaded with "library(ts)" or "library("ts"). I also tried library(tseries) but got the same problem. Could anyone please give me some help with this? > spectrum(seriesa) Error in plot.spec(spg.out, ...) : binary operator applied to invalid types. Also, I'm running R under windows 95, and I can't seem to set the line length of the display right. So sometimes I got an error message that's too long and I can't read it in full. I tried options(width=?...
2008 Apr 02
1
How to best read in this data / Switching rows and colums
Hi, I have to read in data which looks like this: SeriesA, 5, 5, 5, 5 SeriesB, 8, 5, 8, 8, 7, 10, 2, 7, 3 SeriesC, 5, 5, 8, 4, 7, 7, 4, 5 SeriesD, 5, 9, 5, 4, 2, 3, 10, 1 SeriesE, 7, 10, 9, 5, 8, 6, 10, 9, 5, 10, 4, 3, 2, 10, 8, 8, 10, 10, 10 SeriesF, 1, 2, 1, 5, 1, 7, 5, 7, 7, 3 There are actually much more data points in the data, each line contains be...
2009 Jan 20
1
Problem with FAME
...alue at: 08:3 Basis: DAILY OVERLAY(TS21560100, TS21555100) ?Vollzeitaequivalente Beschaeftigung? stands for ?Full-time equivalent employment? Also, I have the same error message when I run the code from the manual: > seriesA <- tis(1:24,start=c(2002,1),freq =12) > seriesB <- tis(1:104, start = c(2002, 1), tif = "wmonday") > documentation(seriesB) <- paste("Line", 1:4, "of seriesB documentation") > putfame(c(mser = "seriesA", wser = "seriesB"), db =...
2007 Jan 18
4
How to optimize this loop ?
Dear R Users, I request your help to optimize a loop. Given a series of observations, I want to know how many consecutive past observations are below the last one. e.g : my_series <- c(3, 4, 10,14,8,3,4,6,9) As the last number (9) is higher than the four preceding numbers (6, 4, 3, 8), this function should return 4. my_series <- c(3, 4, 10,14,8,3,4,11,9) Here, it should return 0, as 9