similar to: update R version in windows

Displaying 20 results from an estimated 30000 matches similar to: "update R version in windows"

2017 Nov 10
0
update R version in windows
This issue does not exist on Linux. My Ubuntu updates both R and all packages. Stephen B -----Original Message----- From: J C Nash [mailto:profjcnash at gmail.com] Sent: Friday, November 10, 2017 1:19 PM To: r-help; RICHARD M. HEIBERGER; Bond, Stephen Subject: Re: [R] update R version in windows However, trying this on Linux Mint gave package ?installr? is not available (for R version
2017 Nov 10
3
update R version in windows
However, trying this on Linux Mint gave package ?installr? is not available (for R version 3.4.2) Has the package not been updated yet? JN Try the installr package. It was designed for this purpose. On Fri, Nov 10, 2017 at 11:49 AM, Bond, Stephen <Stephen.Bond at cibc.com> wrote: > Is there a utility which will allow me to upgrade my R version and update all packages from the old
2018 Mar 22
1
how to add a child to a child in XML
Just to clarify and hopefully catch the attention of the maintainer: The newXMLNode function is not mentioned in: https://cran.r-project.org/web/packages/XML/XML.pdf which supposedly describes all functions in the package. Stephen From: Ben Tupper [mailto:btupper at bigelow.org] Sent: Thursday, March 22, 2018 10:40 AM To: Bond, Stephen Cc: r-help Subject: Re: [R] how to add a child to a
2018 Mar 22
0
how to add a child to a child in XML
Hi, It's a reasonable question. The answer is that it actually is included, but there are many instances across packages where multiple functions are documented on a single help page. The following brings up such a page... (for XML_3.98-1.9) > library(XML) > ?newXMLNode You can see the same on line... https://www.rdocumentation.org/packages/XML/versions/3.98-1.9/topics/newXMLDoc
2018 Mar 22
2
how to add a child to a child in XML
Big thanks. newXMLNode works great. Wonder why it is not included in the documentation. There is newXMLDoc and newXMLNamespace, but no mention of newXMLNode. Stephen From: Ben Tupper [mailto:btupper at bigelow.org] Sent: Wednesday, March 21, 2018 6:18 PM To: Bond, Stephen Cc: r-help Subject: Re: [R] how to add a child to a child in XML Hi, XML doesn't use the `$` to access child nodes.
2018 Mar 21
0
how to add a child to a child in XML
Hi, XML doesn't use the `$` to access child nodes. Instead use either `[name]` to get a list of children of that name or `[[name]]` to get the just the first child of that name encountered in the genealogy. Thus for your example... > root$child1 NULL > root[['child1']] <child1 name1="A" name2="B" name3="C"/> On the other hand, you might
2017 Nov 10
3
update R version in windows
Is there a utility which will allow me to upgrade my R version and update all packages from the old version? If I manually upgrade, then I have to manually re-install 50 packages. Thank you. Stephen B [[alternative HTML version deleted]]
2017 Aug 08
1
Nested for loop
Hi Caitlin and Ben, Thanks for your responses! My issue is that I'd like to create one continuous line, rather than 3 lines overlayed. The code I've attached works for a population of 400 and samples 100 times. I'd like to extend this to 300 samples and 3 populations. So, the x-axis would range from 0-300 samples. What I'm having trouble with is finding a way to change the
2011 Aug 08
2
Creating a scatterplot with sequential dates on x-axis?
Hi all. I need to plot 30 values and I'd like the x-axis to have 30 dates values, e.g., 5/1/2011, 5/2/2011, etc. so an observer could see how the values correspond as the month progresses. Is there a convenient function I could use? I considered creating two vectors, x and y, then simply plotting those. Thanks, ~Caitlin [[alternative HTML version deleted]]
2011 Mar 18
1
Help with setting the y-axis in a plot.
Hi all. I'm working on an assignment for a psychology class and I am not sure how to adjust the y-axis so it displays the range: 0, 5, 10, 15 The code below is almost ideal: lsd = c(3, 5, 13) mar = c(1, 2, 3) g_range <- range(0, lsd, mar) plot(lsd, type="o", col="blue", ylim=g_range, axes=FALSE, ann=FALSE) axis(1, at=1:3,
2012 Mar 30
2
Problem loading package 'JGR' using R-2.15.0 (Win32).
Hi all. Upon attempting to load the 'JGR' package, on a Win32 machine (SP3), a pop-up message appeared stating that R had encountered a problem and needs to close. Has anyone else encountered this? Thanks. ~Caitlin [[alternative HTML version deleted]]
2011 Aug 30
2
Plotting multiple vectors in one window?
Hi all. Using the following code: plot(bsa, abs, col='blue', pch=16, xlim=c(0, 25), ylim=c(0.0, 1.0), xlab = expression(paste(BSA, " (", mu, "g)", sep="")), ylab=expression(A[595])) plot(unknown1, abs2, col='blue', pch=16, xlim=c(0, 25), ylim=c(0.0, 1.0), xlab = expression(paste(Unknown_1, " (", mu, "g)", sep="")),
2011 Jan 30
0
Stub domains broken in Xen 4.0?
When I try to use stubdom-dm in lieu of qemu-dm, the guest domain crashes almost immediately if I specify an emulated NIC (''vif='') in the guest configuration file. If I don''t specify a vif, it works fine. If I use the same configuration with qemu-dm instead of sutbdom-dm, it works fine. Is there some reason QEMU emulated networking doesn''t work with stub domains
2015 May 10
2
Wrong MD5 checksums in R 3.2.0
Dear R-devel members, Several R user recently reported <https://github.com/talgalili/installr/issues/30> (while using the installr <http://cran.r-project.org/web/packages/installr>package) that when running MD5 checksums on a recent R installation (R 3.2.0), they get that the files ?bin/R.exe?, ?bin/Rscript.exe? have the wrong MD5 checksums on Windows. I intend to remove the test for
2015 May 11
2
Wrongly checked MD5 checksums in R 3.2.0's windows binary
On 11 May 2015, at 09:53 , Martin Maechler <maechler at lynne.stat.math.ethz.ch> wrote: >>>>>> Tal Galili <tal.galili at gmail.com> >>>>>> on Sun, 10 May 2015 23:13:09 +0300 writes: > >> Dear R-devel members, Several R user recently reported >> <https://github.com/talgalili/installr/issues/30> (while >> using the
2015 May 11
2
Wrongly checked MD5 checksums in R 3.2.0's windows binary
Thank you Duncan, Peter and Martin for the responses. Just to mention that the code is based on tools::md5sum, and the issue can be reproduced (in Windows) using: if(!require(installr)) install.packages("installr") installr::checkMD5sums2(dir=R.home()) With regards, Tal [[alternative HTML version deleted]]
2013 Sep 09
1
windowing
Is there a package or a command that does window aggregation like select sum(col1) over (partition by col2, col3 order by col4 rows between unbounded preceding and current row) as sum1 from table1 ; the above is Netezza syntax, but Postgre has same capability. Stephen B [[alternative HTML version deleted]]
2015 Dec 09
4
Problemas de instalación
Buenos días, He cambiado la versión de R como siempre a través de: install.packages("installr") library(installr) updateR() En esta ocasión trabajando bajo windows 10. La versión 3.2.2 me ofrece menos mirror, pero mi principal problema es que no soy capaz de trabajar con Rcommander (ahora lo hago con RStudio) me da la siguiente salida: > utils:::menuInstallPkgs() --- Please select a
2015 May 11
2
Wrongly checked MD5 checksums in R 3.2.0's windows binary
Hi Duncan, Thank you for the clarification. :) I ended up removing these files from being scanned in the updated version of installr. I would rather focus on supporting an MD5 scan that is based on what is listed in MD5 file itself (ignoring exceptions that are not clearly stated in the file). ----------------Contact Details:------------------------------------------------------- Contact
2015 May 11
0
Wrongly checked MD5 checksums in R 3.2.0's windows binary
>>>>> Tal Galili <tal.galili at gmail.com> >>>>> on Sun, 10 May 2015 23:13:09 +0300 writes: > Dear R-devel members, Several R user recently reported > <https://github.com/talgalili/installr/issues/30> (while > using the installr > <http://cran.r-project.org/web/packages/installr>package) > that when running MD5