Dear group, I have many plots and numeric results in my R program, kindly how can I save them all sequently on one file. thanks in advance RAI [[alternative HTML version deleted]]
In general this depends what you plan to do with those results. I suspect you are looking for something like knitr with rmarkdown (.Rmd files to create HTML or Word) or LaTeX (.Rnw files to create PDF). --------------------------------------------------------------------------- Jeff Newmiller The ..... ..... Go Live... DCN:<jdnewmil at dcn.davis.ca.us> Basics: ##.#. ##.#. Live Go... Live: OO#.. Dead: OO#.. Playing Research Engineer (Solar/Batteries O.O#. #.O#. with /Software/Embedded Controllers) .OO#. .OO#. rocks...1k --------------------------------------------------------------------------- Sent from my phone. Please excuse my brevity. On February 1, 2015 12:05:47 PM PST, Ragia Ibrahim <ragia11 at hotmail.com> wrote:> >Dear group, > >I have many plots and numeric results in my R program, kindly how can >I save them all sequently on one file. >thanks in advance >RAI > > [[alternative HTML version deleted]] > >______________________________________________ >R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see >https://stat.ethz.ch/mailman/listinfo/r-help >PLEASE do read the posting guide >http://www.R-project.org/posting-guide.html >and provide commented, minimal, self-contained, reproducible code.
But in addition to what Jeff noted, see ?save and ?save.image (noting that that the resulting .Rdata file can only be read by R). Cheers, Bert Bert Gunter Genentech Nonclinical Biostatistics (650) 467-7374 "Data is not information. Information is not knowledge. And knowledge is certainly not wisdom." Clifford Stoll On Sun, Feb 1, 2015 at 12:26 PM, Jeff Newmiller <jdnewmil at dcn.davis.ca.us> wrote:> In general this depends what you plan to do with those results. I suspect you are looking for something like knitr with rmarkdown (.Rmd files to create HTML or Word) or LaTeX (.Rnw files to create PDF). > --------------------------------------------------------------------------- > Jeff Newmiller The ..... ..... Go Live... > DCN:<jdnewmil at dcn.davis.ca.us> Basics: ##.#. ##.#. Live Go... > Live: OO#.. Dead: OO#.. Playing > Research Engineer (Solar/Batteries O.O#. #.O#. with > /Software/Embedded Controllers) .OO#. .OO#. rocks...1k > --------------------------------------------------------------------------- > Sent from my phone. Please excuse my brevity. > > On February 1, 2015 12:05:47 PM PST, Ragia Ibrahim <ragia11 at hotmail.com> wrote: >> >>Dear group, >> >>I have many plots and numeric results in my R program, kindly how can >>I save them all sequently on one file. >>thanks in advance >>RAI >> >> [[alternative HTML version deleted]] >> >>______________________________________________ >>R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see >>https://stat.ethz.ch/mailman/listinfo/r-help >>PLEASE do read the posting guide >>http://www.R-project.org/posting-guide.html >>and provide commented, minimal, self-contained, reproducible code. > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code.
With a little effort you could implement Rstudio and try RMD (R Markdown) it is very proficient, look at https://support.rstudio.com/hc/en-us/articles/200552086-Using-R-Markdown Il 01/feb/2015 21:07 "Ragia Ibrahim" <ragia11 at hotmail.com> ha scritto:> > Dear group, > > I have many plots and numeric results in my R program, kindly how can I > save them all sequently on one file. > thanks in advance > RAI > > [[alternative HTML version deleted]] > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >[[alternative HTML version deleted]]
Hi, I have a original adjacency matrix n X n , and I want to connect certain row with a set of other selected columns (could be not the same as in the original matrix). this in each iteration I have a new row of this connections matrix , how to create this matrix. having original row number and the numbers of columns that will be connected to. e.g. 1 2 3 4 5 1 1 1 1 1 1 2 1 1 0 0 1 3 4 4 inf first iteration row 1 will have only connections to columns 2 and 5 and in secondly row 2 will have only relation to column 2 how can I do this thanks in advance [[alternative HTML version deleted]]