search for: akerst

Displaying 20 results from an estimated 20 matches for "akerst".

Did you mean: akers
2017 Jun 14
2
[WISH / PATCH] possibility to split string literals across multiple lines
...used. > > A backslash at the end of the line leads to errors when you accidently > put a space after the backslash and the editor doesn't flag it. > > Bill Dunlap > TIBCO Software > wdunlap tibco.com > > On Wed, Jun 14, 2017 at 3:58 AM, Andreas Kersting <r-devel at akersting.de> > wrote: > >> Hi, >> >> I would really like to have a way to split long string literals across >> multiple lines in R. >> >> Currently, if a string literal spans multiple lines, there is no way to >> inhibit the introduction of newline chara...
2017 Jun 14
8
[WISH / PATCH] possibility to split string literals across multiple lines
Hi, I would really like to have a way to split long string literals across multiple lines in R. Currently, if a string literal spans multiple lines, there is no way to inhibit the introduction of newline characters: > "aaa + bbb" [1] "aaa\nbbb" If a line ends with a backslash, it is just ignored: > "aaa\ + bbb" [1] "aaa\nbbb" We could use
2017 Jun 14
2
[WISH / PATCH] possibility to split string literals across multiple lines
...st > emulate something like that is the following. > > `%+%` <- function(x,y) paste0(x,y) > > "hello" %+% > " pretty" %+% > " world" > > > -Mark > > > > Op wo 14 jun. 2017 om 13:53 schreef Andreas Kersting <r-devel at akersting.de > >: > > > On Wed, 14 Jun 2017 06:12:09 -0500, Duncan Murdoch < > > murdoch.duncan at gmail.com> wrote: > > > > > On 14/06/2017 5:58 AM, Andreas Kersting wrote: > > > > Hi, > > > > > > > > I would really like to hav...
2017 Jun 14
0
[WISH / PATCH] possibility to split string literals across multiple lines
...espaces as it's counter-intuitive, misleading and makes it impossible to continue spaces on the next line. None of the languages that I can think of with multiline strings do that as that's way too dangerous. Cheers, Simon > On Jun 14, 2017, at 6:58 AM, Andreas Kersting <r-devel at akersting.de> wrote: > > Hi, > > I would really like to have a way to split long string literals across multiple lines in R. > > Currently, if a string literal spans multiple lines, there is no way to inhibit the introduction of newline characters: > > > "aaa > +...
2017 Jun 14
0
[WISH / PATCH] possibility to split string literals across multiple lines
...a big fan of that syntax but it is widely used. A backslash at the end of the line leads to errors when you accidently put a space after the backslash and the editor doesn't flag it. Bill Dunlap TIBCO Software wdunlap tibco.com On Wed, Jun 14, 2017 at 3:58 AM, Andreas Kersting <r-devel at akersting.de> wrote: > Hi, > > I would really like to have a way to split long string literals across > multiple lines in R. > > Currently, if a string literal spans multiple lines, there is no way to > inhibit the introduction of newline characters: > > > "aaa >...
2018 Jan 26
1
utils::install.packages with quiet=TRUE fails for source packages on Windows
The obvious guess would be that Rstudio is attempting something like redirecting output and getting itself confused. However, it is pretty clearly Their Problem, no? Rstudio has their own support infrastructure. -pd > On 26 Jan 2018, at 09:17 , Andreas Kersting <r-devel at akersting.de> wrote: > > Just noticed that this problem only occurs from within RStudio (v1.1.414). Any ideas why? > > Am 26.01.2018 um 08:56 schrieb Andreas Kersting: >> Hi, >> Installing a source package on Windows using utils::install.packages() with quiet=TRUE fails, while...
2017 Jun 14
0
[WISH / PATCH] possibility to split string literals across multiple lines
...ave run into this myself a few times as well. One way to at least emulate something like that is the following. `%+%` <- function(x,y) paste0(x,y) "hello" %+% " pretty" %+% " world" -Mark Op wo 14 jun. 2017 om 13:53 schreef Andreas Kersting <r-devel at akersting.de>: > On Wed, 14 Jun 2017 06:12:09 -0500, Duncan Murdoch < > murdoch.duncan at gmail.com> wrote: > > > On 14/06/2017 5:58 AM, Andreas Kersting wrote: > > > Hi, > > > > > > I would really like to have a way to split long string literals across...
2017 Jun 15
0
[WISH / PATCH] possibility to split string literals across multiple lines
...at the end of the line leads to errors when you accidently >> put a space after the backslash and the editor doesn't flag it. >> >> Bill Dunlap >> TIBCO Software >> wdunlap tibco.com >> >> On Wed, Jun 14, 2017 at 3:58 AM, Andreas Kersting <r-devel at akersting.de> >> wrote: >> >>> Hi, >>> >>> I would really like to have a way to split long string literals across >>> multiple lines in R. >>> >>> Currently, if a string literal spans multiple lines, there is no way to >>> inhib...
2020 Sep 28
3
Specifying C Standard in Package's Makevars File
Hi, what is the correct way to specify a C standard in a package's Makevars file? Building a package with e.g. PKG_CFLAGS = -std=gnu11 does work but R CMD check issues a warning: * checking compilation flags in Makevars ... WARNING Non-portable flags in variable 'PKG_CFLAGS': -std=gnu11 (Same for -std=c11.) Thanks! Regards, Andreas Kersting
2017 Jun 14
0
[WISH / PATCH] possibility to split string literals across multiple lines
...>> `%+%` <- function(x,y) paste0(x,y) >> >> "hello" %+% >> " pretty" %+% >> " world" >> >> >> -Mark >> >> >> >> Op wo 14 jun. 2017 om 13:53 schreef Andreas Kersting < >> r-devel at akersting.de>: >> >> > On Wed, 14 Jun 2017 06:12:09 -0500, Duncan Murdoch < >> > murdoch.duncan at gmail.com> wrote: >> > >> > > On 14/06/2017 5:58 AM, Andreas Kersting wrote: >> > > > Hi, >> > > > >> > > >...
2017 Jun 14
4
[WISH / PATCH] possibility to split string literals across multiple lines
On Wed, 14 Jun 2017 06:12:09 -0500, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > On 14/06/2017 5:58 AM, Andreas Kersting wrote: > > Hi, > > > > I would really like to have a way to split long string literals across > > multiple lines in R. > > I don't understand why you require the string to be a literal. Why not > construct the long
2018 Jan 26
2
utils::install.packages with quiet=TRUE fails for source packages on Windows
Hi, Installing a source package on Windows using utils::install.packages() with quiet=TRUE fails, while it works with the default quiet = FALSE. The problem seems to be caused by the fact that when quiet = TRUE, stdout and stderr are set to FALSE when calling "R CMD INSTALL" with base::system2() here:
2019 Dec 04
0
error in parallel:::sendMaster
...osed this pipe directly after fork in close_fds_child_ci() resulting in sendMaster() later failing with EBADF. It was fixed with this commit: https://github.com/wch/r-source/commit/e08cffac1c5b9015a1625938d568b648eb1d8aee Regards, Andreas 2019-11-28 13:54 GMT+01:00 Andreas Kersting<r-devel at akersting.de>: > Hi Tomas, > > I rebuild R (v3.5.2 for now, R-devel to follow) from the Debian package with MC_DEBUG defined and hopefully also with "-Wall -O0 -gdwarf-2 -g3", though I still have to verify this. > > Below is the output. I think it is a total of two mclapply i...
2019 Dec 04
0
error in parallel:::sendMaster
...osed this pipe directly after fork in close_fds_child_ci() resulting in sendMaster() later failing with EBADF. It was fixed with this commit: https://github.com/wch/r-source/commit/e08cffac1c5b9015a1625938d568b648eb1d8aee Regards, Andreas 2019-11-28 13:54 GMT+01:00 Andreas Kersting<r-devel at akersting.de>: > Hi Tomas, > > I rebuild R (v3.5.2 for now, R-devel to follow) from the Debian package with MC_DEBUG defined and hopefully also with "-Wall -O0 -gdwarf-2 -g3", though I still have to verify this. > > Below is the output. I think it is a total of two mclapply i...
2019 Nov 27
0
error in parallel:::sendMaster
...h 85 parts) produced the sendMaster errors and failed. If (in a new session via Rscript) I only process the second input file it will work. The other observations on R vs Rscript, NFS share etc. still hold. Sorry for this! Regards, Andreas 2019-11-27 12:10 GMT+01:00 Andreas Kersting<r-devel at akersting.de>: > Hi, > > I am facing a very weird problem with parallel::mclapply. I have a script which does some data wrangling on an input dataset in parallel and then writes the results to disk. I have been using this script daily for more than one year always on an EC2 instance launched...
2019 Nov 27
2
error in parallel:::sendMaster
...e sendMaster errors and failed. If (in a new session via Rscript) I only process the second input file it will work. The other observations on R vs Rscript, NFS share etc. still hold. > > Sorry for this! Regards, > Andreas > > 2019-11-27 12:10 GMT+01:00 Andreas Kersting<r-devel at akersting.de>: >> Hi, >> >> I am facing a very weird problem with parallel::mclapply. I have a script which does some data wrangling on an input dataset in parallel and then writes the results to disk. I have been using this script daily for more than one year always on an EC2 instanc...
2019 Nov 27
2
error in parallel:::sendMaster
Hi, I am facing a very weird problem with parallel::mclapply. I have a script which does some data wrangling on an input dataset in parallel and then writes the results to disk. I have been using this script daily for more than one year always on an EC2 instance launched from the same AMI (no updates installed after launch) and processed thousands of different input data sets successfully. I now
2019 Nov 28
0
error in parallel:::sendMaster
...and failed. If (in a new session via Rscript) I only process the second input file it will work. The other observations on R vs Rscript, NFS share etc. still hold. >> >> Sorry for this! Regards, >> Andreas >> >> 2019-11-27 12:10 GMT+01:00 Andreas Kersting<r-devel at akersting.de>: >>> Hi, >>> >>> I am facing a very weird problem with parallel::mclapply. I have a script which does some data wrangling on an input dataset in parallel and then writes the results to disk. I have been using this script daily for more than one year always on an...
2019 Nov 28
1
error in parallel:::sendMaster
...new session via Rscript) I only process the second input file it will work. The other observations on R vs Rscript, NFS share etc. still hold. >>> >>> Sorry for this! Regards, >>> Andreas >>> >>> 2019-11-27 12:10 GMT+01:00 Andreas Kersting<r-devel at akersting.de>: >>>> Hi, >>>> >>>> I am facing a very weird problem with parallel::mclapply. I have a script which does some data wrangling on an input dataset in parallel and then writes the results to disk. I have been using this script daily for more than one year...
2018 Jan 26
0
utils::install.packages with quiet=TRUE fails for source packages on Windows
Just noticed that this problem only occurs from within RStudio (v1.1.414). Any ideas why? Am 26.01.2018 um 08:56 schrieb Andreas Kersting: > Hi, > > Installing a source package on Windows using utils::install.packages() > with quiet=TRUE fails, while it works with the default quiet = FALSE. > The problem seems to be caused by the fact that when quiet = TRUE, > stdout and