Re: [R] large number of scrollable histograms....

2019-01-23 Thread Bill Poling
: R help Mailing list Subject: Re: [R] large number of scrollable histograms Another alternative is to use ggplot2 to create the various plots, then put them into a list and use cowplot::plot_grid to plot the grid of plots with a specified number of rows and columns. Here's some pseudo co

Re: [R] large number of scrollable histograms....

2019-01-23 Thread PIKAL Petr
Hi Yes, you should get multipage pdf, each page populated by single call to plot function. However I am not sur if your proposal with function will work. I usually do simply pdf("sample.pdf", 7, 5) for (i in 1:n) { hist(L[[i]]) } dev.off() Cheers Petr From: akshay kulkarni Sent: Wedne

Re: [R] large number of scrollable histograms....

2019-01-22 Thread Jeff Newmiller
You can use knitr (child documents) with rmarkdown to generate an html file containing many htmlwidgets. There are many htmlwidgets you can choose from, see [1]. You can also use htmlwidgets with shiny if you prefer, though I don't know if you can get the many plots simultaneously with shiny. S

Re: [R] large number of scrollable histograms....

2019-01-22 Thread Enrico Schumann
> "akshay" == akshay kulkarni writes: akshay> dear members, akshay> I am a day trader based in INDIA. I use R for my research. akshay> I have about 200 vectors whose histograms I need to akshay> inspect. I have to compare them simultaneously. akshay> I know methods wher

Re: [R] large number of scrollable histograms....

2019-01-22 Thread Eric Berger
Another alternative is to use ggplot2 to create the various plots, then put them into a list and use cowplot::plot_grid to plot the grid of plots with a specified number of rows and columns. Here's some pseudo code to give you the general idea Step 1: generate the plots and put them into a list fo

Re: [R] large number of scrollable histograms....

2019-01-22 Thread PIKAL Petr
Hi what about to create all histograms in pdf device? see ?pdf Cheers Petr > -Original Message- > From: R-help On Behalf Of akshay kulkarni > Sent: Tuesday, January 22, 2019 2:21 PM > To: R help Mailing list > Subject: [R] large number of scrollable histograms > > dear members, >