search for: friedrichsmei

Displaying 20 results from an estimated 36 matches for "friedrichsmei".

Did you mean: friedrichsmeier
2007 Feb 01
0
Fwd: Re: read.spss and encodings
--- John Kane <jrkrideau at yahoo.ca> wrote: > Date: Thu, 1 Feb 2007 09:07:11 -0500 (EST) > From: John Kane <jrkrideau at yahoo.ca> > Subject: Re: [R] read.spss and encodings > To: Thomas Friedrichsmeier > <thomas.friedrichsmeier at ruhr-uni-bochum.de> > > Hi Thomas, > > I am using R 2.4.1 on WindowsXP and I don't seem to > be > having any problem, im B?ro, and zuhause are coming > in > just fine in a 200 line dataset. > > I have imported it with bo...
2020 May 24
1
Surpising behavior when using an active binding as loop index in R 4.0.0
A shorter reproducible example: example(makeActiveBinding) for (fred in 1:3) { 0 } ls() Both problems go away if you first do compiler::enableJIT(2) So looks like a bug in compiling the for loop. -Deepayan On Sat, May 23, 2020 at 5:45 PM Thomas Friedrichsmeier via R-devel <r-devel at r-project.org> wrote: > > Possibly just a symptom of the earlier behavior, but I'll amend my > example, below, with an even more disturbing observation: > > Am Sat, 23 May 2020 13:19:24 +0200 > schrieb Thomas Friedrichsmeier via R-devel <r-de...
2006 Nov 07
2
Crash when embedding R X11 windows
...ntly calls to XFindContext() may fail in the context of embedding the X11 window. The patch simply checks the return value of XFindContext() for a non-zero (i.e. error) value, and in that case drops out of the function. Does this seem like a valid fix? Should I provide more info? Regards Thomas Friedrichsmeier -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-devel/attachments/20061107/acb0b680/attachment.bin
2007 Jan 17
2
R_ParseVector API change
...) is part of the public API, I'm wondering, whether this API change was intentional or not. Either way is fine with me, but in order to make sure the next release of RKWard will be compilable with R 2.5.0, I'd like to make sure, whether or not the change is here to stay. Regards Thomas Friedrichsmeier -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-devel/attachments/20070117/fac8d584/attachment.bin
2007 Mar 29
1
small bug in ansari.test
...TIES <- (length(r) != length(unique(r))) if(is.null(exact)) - exact <- ((m < 50) && (n < 50)) + exact <- ((m < 50) && (n < 50) && (!TIES)) if(exact && !TIES) { pansari <- function(q, m, n) { Regards Thomas Friedrichsmeier -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-devel/attachments/20070329/16ab7353/attachment.bin
2006 Apr 10
2
install.packages on unix / su (PR#8760)
Full_Name: Thomas Friedrichsmeier Version: R 2.2.1 OS: Debian / Linux Submission from: (NULL) (84.60.123.243) Wishlist item: There is a small problem using intall.packages() (and update.packages()): Typically I want to install packages for system-wide use, not in a user directory. Obviously this does not work without superuser...
2020 May 23
2
Surpising behavior when using an active binding as loop index in R 4.0.0
Hi, I stumbled upon a surprising behavior when using an active binding as a loop index variable in R 4.0.0. In contrast, the behavior observed in R 3.6.1 is in line with my expectations. Consider the code below: makeActiveBinding("i", function(value) { if (missing(value)) { x } else { print("set") x <<- value } }, globalenv()) i <- 1 # output
2006 Oct 06
1
operator :: and symbols not in the namespace of a package with a namespace (PR#9279)
Full_Name: Thomas Friedrichsmeier Version: 2.4.0 OS: GNU/Linux Submission from: (NULL) (84.61.116.51) Since R 2.4.0, operator "::" also returns objects in the package environment, if the package does not have a namespace. This is a very welcome addition. Additional wish: If a package has a namespace, but does not pla...
2007 Feb 01
2
read.spss and encodings
...ad spin, so I thought I'd better post here, before calling this to be a bug in R. Two questions: 1) Is there some way to work around this, i.e. make sure it is converted to proper UTF-8 while importing? Am I missing something obvious? 2) Should I submit this as a bug report? Thanks! Thomas Friedrichsmeier -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-help/attachments/20070201/e419601f/attachment.bin
2007 Mar 01
1
Default par() options
...=19)) Only those options would need to be specified in the list, for which you actually want to set a default different from the built-in. Options explicitely specified in X11(), plot(), additional calls to par(), etc. would take precedence over options("par.default"). Regards Thomas Friedrichsmeier -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-help/attachments/20070301/13fb8bea/attachment.bin
2020 May 24
0
Fwd: RKWard and R 4.0.0 - Important bug and workaround
...this notice by the main developer. Meanwhile, it has been communicated that R 4.0.1 will be released on June 6. Cheers, Johannes ---------- Weitergeleitete Nachricht ---------- Betreff: RKWard and R 4.0.0 - Important bug and workaround Datum: Sonntag, 24. Mai 2020, 10:14:17 CEST Von: Thomas Friedrichsmeier <thomas.friedrichsmeier at ruhr-uni-bochum.de> An: rkward-devel at kde.org <rkward-devel at kde.org>, rkward-users at kde.org Hi! This is a note of caution about using RKWard with R 4.0.0: -- Problem -- There is a bug in R 4.0.0 with respect to active bindings, which RKWard is rel...
2007 Apr 16
1
args / formals on primitives
...# -> NULL (c is a 'primitive' function) The comment seems out of date, as args(c) does in fact have a non-NULL return value: args(c) # function (..., recursive = FALSE) # NULL While at it, I was wondering, why formals(c) still returns NULL, in contrast. Regards Thomas Friedrichsmeier -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available Url : https://stat.ethz.ch/pipermail/r-devel/attachments/20070416/07116e3c/attachment.bin
2005 Oct 17
1
RFC: API to allow identification of warnings and errors in the output stream
...to tests/embedding/. This example basically just generates a number of different types of messages, then catches the output, and classifies it into several categories. I'll gladly provide more explanations or a different format of patches if needed. Looking forward to your comments Thomas Friedrichsmeier
2007 Feb 21
3
non-interactive R_tryEval does not return
...at least I think that is what happens, at least on some configurations. Here's a repeatable example: cd R_HOME/tests/Embedding touch tmp.R make tryEval and then (correct) > ./tryEval --slave Error in sqrt("") : Non-numeric argument to mathematical function Caught an error calling sqrt(). Try again with a different argument. [1] 3 versus (non-interactive; no return) >
2005 Apr 20
3
Embedded R and x11
Hi, I'm working on a frontend for R. I have R running in a separate thread in my application using Rf_initEmbeddedR, and I'm using R_tryEval to run commands in R (i.e. I don't run the mainloop). Everything works fine, except the x11-device: I can open x11-windows and paint to them alright from R. However, the x11-window does not respond to any events. E.g. clicking the
2005 Sep 22
3
warning.expression?
Hi! I'm trying to catch all warning-messages for special handling. It seems options (warning.expression=myfunc ()) can be used for that. However, the question is: How can I get at the actual warning in myfunc ()? Apparently in S, you can use .C("get_last_message") for that. Is there a similar mechanism in R? Thanks for your help! Thomas
2005 Sep 22
3
warning.expression?
Hi! I'm trying to catch all warning-messages for special handling. It seems options (warning.expression=myfunc ()) can be used for that. However, the question is: How can I get at the actual warning in myfunc ()? Apparently in S, you can use .C("get_last_message") for that. Is there a similar mechanism in R? Thanks for your help! Thomas
2007 May 04
2
Qt device update
Hi, a few days back I had asked for help on a Qt device package. Thanks to hints from Duncan TL and Thomas Friedrichsmeier, I now have something more or less functional. For those interested, It can be downloaded from http://dsarkar.fhcrc.org/R/R-Qt.html I have a couple of related questions. First, dev.interactive(), used in example() and many demo()-s to decide if the current device is interactive, is currently im...
2018 May 02
1
Two questions on r-base-3.5 transition
Dear R debian maintainers! As maintainer of rkward, I will be affected by the "r-base-3.5" transition. Could you help me by answering the following two questions? 1) Is there any (upper / lower) time estimate on when 3.5.0 will enter sid? I have at least one somewhat-important-but-easy-to-fix-issue pending for rkward. So far I figured I would delay this until R 3.5.0 has entered sid,
2020 May 23
0
Surpising behavior when using an active binding as loop index in R 4.0.0
Possibly just a symptom of the earlier behavior, but I'll amend my example, below, with an even more disturbing observation: Am Sat, 23 May 2020 13:19:24 +0200 schrieb Thomas Friedrichsmeier via R-devel <r-devel at r-project.org>: [...] > Consider the code below: > > makeActiveBinding("i", > function(value) { > if (missing(value)) { > x > } else { > print("set") > x <<- value > } > }, globalenv()) > &...