Tagged Questions
5
votes
1answer
53 views
R circular LOESS function over 24 hours (a day)
I have data for free parking slots over hours and days.
Here's a random sample of 100.
sl <- list(EmptySlots = c(7, 6, 20, 5, 16, 20, 24, 5, 24, 24, 15, 11,
8, 6, 13, 2, 21, 6, 1, 6, 9, 1, 8, 0, ...
1
vote
2answers
101 views
Boxplot with ggplot2 in R - returns by month
I have computed monthly returns from a price series. I then build a dataframe as follows:
y.ret_1981 y.ret_1982 y.ret_1983 y.ret_1984 y.ret_1985
1 0.0001015229 0.0030780203 ...
2
votes
3answers
97 views
Summarise data into monthly counts by year
I'm not used to working with time series data in R, and I'm a bit stuck with this. I have a data frame of event references and the data the event was recorded. The data runs over a period of 7 years ...
-2
votes
2answers
166 views
ggplot2 overlapping time series
I am trying to plot estimated and actual depth values on a river that I worked on. It seems as if the time period when the estimated and actual overlap, the estimated does not output correctly, even ...
0
votes
1answer
185 views
Plotting a time series in R using ggplot2,
I'm try to create a time series where, x = year, y = cpue_wt, grouped by station. I have 7 stations: Here is a snapshot of the data, which goes from 1986-2011. I want one plot, with 7 different ...
0
votes
1answer
99 views
graphing time series data in both xaxis and yaxis
x <- structure(list(Date = structure(c(15358, 15359, 15362, 15363,
15364, 15365), class = "Date"), EndTime = structure(c(1327016747,
1327166720, 1327361839, 1327446733, 1327533097, 1327619504), ...
1
vote
3answers
245 views
Drawing a multiline graph with ggplot2 from a zoo object
all.
I read several previous message at stackoverflow, and went through the documentation of zoo and ggplot2 but didn't find any suitable answer.
Say I have a zoo object called 'data'. The original ...
5
votes
1answer
1k views
Add Moving average plot to time series plot in R
I have a plot of time series in ggplot2 package and I have performed the Moving average and I would like to add the result of moving average to the plot of time series.
Sample of Data-set (p31):
...
1
vote
1answer
270 views
Stacked Negative/Positive Time Series Using ggplot2 and geom_area
I'm trying to reproduce a stacked time-series graph which shows how the composition and size of a bank's balance sheet changes over time. It should look something like this:
Where assets go above ...
0
votes
1answer
326 views
chart.Correlation independent vs dependent variables visualisation
In R, I have a dataset that has one independent variable and 9 dependent variables, and I want to see the scatter plot, histogram plus correlation values like in chart.Correlation() but I don't want ...
1
vote
2answers
312 views
Plot a sample of a time series
I have a dataset that contains observations for every second of four consecutive days (roughly 340'000 data points). This is too much to display in a scatter plot. I would like to plot only a uniform ...
3
votes
1answer
468 views
Plots in R (ggplot2) for time series with multiple values per time?
Let's say I have data consisting of the time I leave the house and the number of minutes it takes me to get to work. I'll have some repeated values:
08:00, 20
08:04, 25
08:30, 40
08:20, 23
08:04, 22
...
6
votes
1answer
598 views
Add text to a faceted plot in ggplot2 with dates on X axis
I am new to ggplot2 and it's been wonderful, but I'm having difficulty with one thing.
I have plotted a number of time series that span a year. The X axis is derived from a variable of class Date. I ...
1
vote
1answer
78 views
coloured vlines on a POSIXct axis with a different dataset in ggplot2
I'd like to annotate my plot of bugs with the release date which is in another data.frame, but I'd like the colour of the vline to match that of corresponding original trace
# first create some dummy ...
0
votes
2answers
434 views
Time series visualization for start, end, duration in R
I have the following data:
> Data
Date Start End
1 2011-11-15 12:01:27 12:30:15
2 2011-11-16 12:01:25 12:32:15
3 2011-11-17 12:01:02 12:39:12
4 2011-11-19 12:01:12 ...
3
votes
1answer
326 views
Weird “Non-continuous variable supplied to scale_x_continuous Error”
I have an interesting conundrum. I can create the type of chart I seek interactively, but not automatically. Or, I nearly had it automatically, but something broke. (example data at end of post).
I ...
0
votes
1answer
492 views
How can I overlay timeseries models for exponential decay into ggplot2 graphics?
I'm trying to plot an exponential decay line (with error bars) onto a scatterplot in ggplot of price information over time. I currently have this:
f2 <- ggplot(data, aes(x=date, y=cost) ) +
...
1
vote
1answer
210 views
Faceted time series with mean profile in ggplot2
Using the following simulated time series:
n=70
m1 = matrix(rnorm(n), ncol=7)
m2 = matrix(rnorm(n, 0,4), ncol=7)
d = data.frame(rbind(m1,m2), cl=rep(c(1,2), each=5))
(first 7 columns represent the ...
0
votes
1answer
320 views
Time Series in ggplot2
I need to visualize events for a given month and how they change over time. I have a row for each month over several years. For example, the first row shows me activity over time for M1. I want to ...
0
votes
2answers
310 views
Overlapping time series with R
My data frame df has these columns: token (a factor), date (a POSIXct), an count (an integer).
> head(df,3)
token date count
1 foo 10/1/2011 12:00:00 AM 6
2 bar ...
6
votes
1answer
2k 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, ...
3
votes
1answer
3k views
How can I persuade ggplot2 geom_text to label a specified date in a time series plot?
I am using ggplot2 to plot simple line charts of time series data. One difficulty I have run into is labelling specific points corresponding to x-axis values i.e. dates.
date <- ...
2
votes
2answers
898 views
How to create a time scatterplot with R?
The data are a series of dates and times.
date time
2010-01-01 09:04:43
2010-01-01 10:53:59
2010-01-01 10:57:18
2010-01-01 10:59:30
2010-01-01 11:00:44
…
My goal was to represent a scatterplot with ...
3
votes
3answers
2k views
How do I plot a cross correlation matrix for timeseries?
I have a timeseries representation of my data as follows (without the row and column) annotations:
L1 L2 L3 L4
t=1 0 1 1 0
t=2 0 1 1 1
t=3 1 0 1 1
t=4 0 1 1 0
I am ...
3
votes
1answer
306 views
smoothing of auto-correlated time series data with ggplot2
Is there a way to incorporate smoothing function for an auto-correlated time series in ggplot2?
I have time series data that is auto-correlated for which I currently use a manual process to determine ...
6
votes
2answers
933 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 ...
3
votes
2answers
1k views
R: Plot a time series with quantiles using ggplot2
I need to plot a time series with ggplot2. For each point of the time series I also have some quantiles, say 0.05, 0.25, 0.75, 0.95, i.e. I have five data for each point. For example:
time ...
5
votes
1answer
2k views
How to get a vertical geom_vline to an x-axis of class date?
Even though I found Hadley's post in the google group on POSIXct and geom_vline, I could not get it done. I have a time series from and would like to draw a vertical line @1998, 2005 and 2010 for ...
2
votes
2answers
4k views
Time Series in R with ggplot2
I'm a ggplot2 newbie and have a rather simple question regarding time-series plots.
I have a data set in which the data is structured as follows.
Area 1998 1999 2000 2001 2002 2003 2004 2005 ...
3
votes
1answer
822 views
time series in R
here is my question:
i have these data
summary(data)
Date
1990/01: 1
1990/02: 1
1990/03: 1
1990/04: 1
...
25
votes
3answers
15k 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 = ...
3
votes
1answer
1k views
Barplot totals by month with ggplot?
I have time series data (I've posted it here as a data.frame):
x <- structure(list(date = structure(c(1264572000, 1266202800, 1277362800,
1277456400, 1277859600, 1278032400, 1260370800, ...
3
votes
2answers
2k views
R + ggplot: plotting irregular time series
I have data at a number of days since an event. This data is sampled irregularly - my time points are like 0, 5, 6, 10, 104 days. I don't have specific date-time information - i.e. I have no idea when ...

