search for: source_r341

Displaying 6 results from an estimated 6 matches for "source_r341".

2017 Aug 23
2
Possible repeat{} / break function bug in R 3.4.1
...art -------------- An embedded and charset-unspecified text was scrubbed... Name: breakTest.R URL: <https://stat.ethz.ch/pipermail/r-devel/attachments/20170823/9ee1b2d7/attachment.ksh> -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: break-source_R341.R URL: <https://stat.ethz.ch/pipermail/r-devel/attachments/20170823/9ee1b2d7/attachment-0001.ksh>
2017 Aug 23
4
Possible repeat{} / break function bug in R 3.4.1
...>>> Best regards, >>> Martin Maechler, ETH Zurich >> Trying again with the two attachment. Yes, I of all people (!!) >> should know that they must have an allowed MIME type; in this >> case text/plain ! >> >> Martin >> >> ## see ./break-source_R341.R >> if(x < y) { >> writeLines("No Break Dance :-(") >> x <- x + 1 >> } else { >> writeLines("Break Dance!") >> break >> } >> ## From: Peter Bosa <Peter.Bosa at oregonmetro.gov> >> ## To: "R-devel at...
2017 Aug 23
0
Possible repeat{} / break function bug in R 3.4.1
...is "nicer". > >> Best regards, >> Martin Maechler, ETH Zurich > > Trying again with the two attachment. Yes, I of all people (!!) > should know that they must have an allowed MIME type; in this > case text/plain ! > > Martin > > ## see ./break-source_R341.R > if(x < y) { > writeLines("No Break Dance :-(") > x <- x + 1 > } else { > writeLines("Break Dance!") > break > } > ## From: Peter Bosa <Peter.Bosa at oregonmetro.gov> > ## To: "R-devel at r-project.org" <R-devel at r-pro...
2017 Aug 23
0
Possible repeat{} / break function bug in R 3.4.1
...t;>> Martin Maechler, ETH Zurich >>> Trying again with the two attachment. Yes, I of all people (!!) >>> should know that they must have an allowed MIME type; in this >>> case text/plain ! >>> >>> Martin >>> >>> ## see ./break-source_R341.R >>> if(x < y) { >>> writeLines("No Break Dance :-(") >>> x <- x + 1 >>> } else { >>> writeLines("Break Dance!") >>> break >>> } >>> ## From: Peter Bosa <Peter.Bosa at oregonmetro.gov> >&...
2017 Aug 23
0
Possible repeat{} / break function bug in R 3.4.1
...>>> Martin Maechler, ETH Zurich >>> Trying again with the two attachment. Yes, I of all people (!!) >>> should know that they must have an allowed MIME type; in this >>> case text/plain ! >>> >>> Martin >>> >>> ## see ./break-source_R341.R >>> if(x < y) { >>> writeLines("No Break Dance :-(") >>> x <- x + 1 >>> } else { >>> writeLines("Break Dance!") >>> break >>> } >>> ## From: Peter Bosa <Peter.Bosa at oregonmetro.gov> &...
2017 Aug 22
2
Possible repeat{} / break function bug in R 3.4.1
Hello, I've noticed the following error using repeat{} / break in R 3.4.1 running on Windows 10 and Windows Server 2008 (both 64-bit environments). When running a repeat function, the break command causes an error message if the repeat command refers to code within a file, but does not produce an error if the code is contained within the repeat{} command. For example, the following code runs