Re: [R] Time Series of Histograms

2010-12-19 Thread Enrico R. Crema
Hi Jorge, Yes this was exactly what I was looking for! Many Thanks!!! E. On 20 Dec 2010, at 02:11, Jorge Ivan Velez wrote: > Hi Enrico, > > Is this close to what you want to do? > > http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=109 > > HTH, > Jorge > > > On Sun, Dec 19, 2010

Re: [R] Time Series of Histograms

2010-12-19 Thread Jorge Ivan Velez
Hi Enrico, Is this close to what you want to do? http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=109 HTH, Jorge On Sun, Dec 19, 2010 at 7:03 PM, Enrico R. Crema <> wrote: > Dear List, > > I have a set of distributions recorded at an equal interval of time and I > would like to p

Re: [R] Time Series of Histograms

2010-12-19 Thread Enrico R. Crema
Many Thanks Dennis, The distributions are simulated ordinal data all bounded in the same upper and lower limit, and I wanted to plot how the distribution changes through time. Since the distributions are often multimodal boxplots were not useful so I made some violinplots... My practical soluti

Re: [R] Time Series of Histograms

2010-12-19 Thread Dennis Murphy
Hi: You can get a violin plot in lattice rather straightforwardly. It's easiest if time is an ordered factor, but you can also do it if time is numeric; in the latter case, the code associated with Figure 10.14 in the Lattice book provides a template to start with: http://lmdvr.r-forge.r-project.o

[R] Time Series of Histograms

2010-12-19 Thread Enrico R. Crema
Dear List, I have a set of distributions recorded at an equal interval of time and I would like to plot them as series of horizontal histograms (with the x-axis representing time, and y-axis representing the bins) since the distribution shifts from unimodal to multimodal in several occasions.