search for: stenberg

Displaying 18 results from an estimated 18 matches for "stenberg".

Did you mean: steinberg
2007 Nov 15
3
Ancova doesn't return test statistics
...ical explanatory variable My model is technically simple: model<-aov(GR~SR*HS*Pop*Popsize*Year) However, R is not returning any F and P values ? only Df, Sum Sq and Mean Sq. I have to remove either Year or Pop in order to get the test statistics. Why is this? Thank you in advance! Johan A. Stenberg, Umea University, Sweden
2007 May 14
2
Make sign test show test statistics
...9,100) R returns a P-value (0.088) but nothing else. As I want the result for a one-tailed test I take P/2 = 0.044). However, the journal to which I've submitted my results requests the test statistics, not just the P-values. How can I make R return the test statistics? Best regards, Johan Stenberg, Umea University, Sweden
2020 Sep 01
2
[RFC] [DebugInfo] Using DW_OP_entry_value within LLVM IR
...lvage Debug Info", but the idea of using the entry values on IR level is more general (not very localized), and there is the cause of potential complexity, since we need to carry that info throughout IR and use it as a backup. Best regards, Djordje ________________________________ From: David Stenberg <david.stenberg at ericsson.com> Sent: Tuesday, September 1, 2020 11:38 AM To: Djordje Todorovic <Djordje.Todorovic at syrmia.com>; llvm-dev at lists.llvm.org <llvm-dev at lists.llvm.org> Cc: paul.robinson at sony.com <paul.robinson at sony.com>; asowda at cisco.com <asow...
2006 Nov 16
1
curl-7.16.0 breaks compilation of vorbis-tools-1.1.1
Hello, curl-7.16.0 breaks compilation of vorbis-tools-1.1.1 - please see http://curl.haxx.se/mail/archive-2006-11/0046.html for details. According to Daniel Stenberg, CURLOPT_MUTE is deprecated. Could you please update vorbis-tools code so it won't use deprecated features of 'curl' ? Should I file a bug report regarding this issue ? Thanks, Sergei. Applications From Scratch: http://appsfromscratch.berlios.de/ ______________________________...
2006 Oct 12
3
Extrapolated regression lines
Dear list members, When I create a simple scatterplot with a regression line (se below) the line is automatically extrapolated outside the range of data points. Why is this and how can I prevent R from extrapolating the regression line? Thank you in advance, Johan model<-lm(Herb~Para) plot(Para,Herb) abline(model)
2023 Feb 22
1
[PATCH nbdkit] curl: Try to share as much as possible between handles in the pool
...nusable, and no > connection pooling can be done. How does that *not* make this whole curl > facility useless? > > The facility in general looks super weird; what sense does it make *not* > to share some particular CURL_LOCK_DATA_xxx? I can only conclude this cannot be true. Daniel Stenberg wrote this code which definitely uses threads: https://gist.github.com/bagder/7eccf74f8b6d70b5abefeb7f288dba9b Also I did a lot of testing and didn't hit any obvious threading bugs. Nevertheless I'm not planning to integrate this patch any time soon. > Laszlo Thanks, Rich. -- Rich...
2005 Mar 29
2
R-squared in Logistic Regression
Dear all, How do I make R show the R-squared (deviance explained by the model) in a logistic regression? Below is how I write my syntax. Basically I want to investigate density-dependence in parasitism of larvae. Note that in the end I perform a F-test because the dispersion factor (residual deviance / residual df) is significantly higher than 1. But how do I make R show the
2017 Oct 18
2
Is every intrinsic norecurse?
> From: piotrekpad at gmail.com [mailto:piotrekpad at gmail.com] On Behalf Of Piotr Padlewski > Sent: den 16 oktober 2017 17:33 > > Hi David, > The patch didn't get a lot of attention, so probably others does not > consider it a huge deal. Anyway, if someone is willing to review this, I > can pursue rebasing it. Okay. We are interested in getting something akin to your
2020 Sep 01
4
[RFC] [DebugInfo] Using DW_OP_entry_value within LLVM IR
Hi all, The debug entry values feature introduces new DWARF symbols (tags, attributes, operations) on caller (call site) as well as on callee side; and the intention is to improve debugging user experience by using the functionality (especially in “optimized” code by turning “<optimized_out>” values into real values). The call site information includes info about call itself (described with
2019 Feb 08
2
Scope for DILocalVariables describing parameters?
Hi! Is it valid to assume that the scope for a parameter-describing DILocalVariable always is a DISubprogram? Or do you know of any case where a parameter's scope can be a sub-scope of the DISubprogram? I added a check to the IR verifier and an assertion to DIBuilder::createParameterVariable() that verify this. This resulted in one test case, DebugInfo/X86/double-declare.ll, failing when
2009 May 27
1
Hierarchical glm with binomial family
Dear members of the R help list, I want to do a hierarchical glm with binomial family but am unsure about how to write the syntax which involves nesting. I want to test whether the risk of being attacked by Herbivores for Meadowsweet plants is significantly dependent on the Distance to heterospecific source plants. Dependent variable = Herbivory (yes/no) Explanatory continuous variable =
2020 Feb 07
4
Enabling debug entry value production by default
Hi all, I think we've reached a state where we're ready to enable debug entry value production by default for the x86_64, ARM, and AArch64 targets. For context, this is a debug info feature that allows debuggers to recover the value of unmodified optimized-out parameters by 'going up' a stack frame and interpreting spilled values, constants, etc. to work out what was passed to the
2020 Sep 08
2
[RFC] [DebugInfo] Using DW_OP_entry_value within LLVM IR
Hi Djordje, [Late reply as I was away, alas], For the example in https://reviews.llvm.org/D85012 , I'm not sure that just using an entry value is correct. The reason why the dbg.values for arguments are set to undef is not because the value can't be described, it's because deadargelim changes all the call sites to pass in 'undef', which I believe makes the value unrecoverable
2020 Sep 09
2
[RFC] [DebugInfo] Using DW_OP_entry_value within LLVM IR
Hi Djordje, On Wed, Sep 9, 2020 at 7:52 AM Djordje Todorovic <Djordje.Todorovic at syrmia.com> wrote: > Using entry-values ('callee' side of the feature) is not enough in any case. It is always connected to the call-site-param (function arguments but we call it call-site-params; 'caller' side of the feature) debug info. I believe that there are call-site-params that could
2017 Oct 20
2
Is every intrinsic norecurse?
...expand the set. > > This is asymmetric with "Throws", but for good reason - before Throws > every intrinsics was implicitly assumed to be no-throw, which is the > opposite situation from norecurse, IIUC. > > -- Sanjoy > > On Wed, Oct 18, 2017 at 8:53 AM, David Stenberg via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >>> From: piotrekpad at gmail.com [mailto:piotrekpad at gmail.com] On Behalf Of Piotr Padlewski >>> Sent: den 16 oktober 2017 17:33 >>> >>> Hi David, >>> The patch didn't get a lot of attent...
2023 Feb 22
1
[PATCH nbdkit] curl: Try to share as much as possible between handles in the pool
On 2/22/23 16:01, Richard W.M. Jones wrote: > Using the libcurl share interface we can share data between the > separate curl easy handles in the pool. For more about this see: > > https://curl.se/libcurl/c/CURLSHOPT_SHARE.html > https://gist.github.com/bagder/7eccf74f8b6d70b5abefeb7f288dba9b > https://everything.curl.dev/libcurl/sharing > --- > plugins/curl/curldefs.h |
2011 Mar 08
1
NaNs in Nested Mixed Model
Dear R users, I have a problem with something called "NaNs" in a nested mixed model. The background is that I have studied the number of insect nymphs emerging from replicated Willow genotypes in the field. I have 15 replicates each of 4 Willow genotypes belonging two 2 Willow species. Now I want to elucidate the effect of Willow genotype on the number of emerging nymphs. Previously I
2009 Jun 01
1
installing sn package
...mentation in R (Lazy Tiger)   35. Re: Multiple ANOVA tests (Mike Lawrence)   36. Re: r-plot (Jim Lemon)   37. Re: Harmonic Analysis (stephen sefick)   38. Re: Sort matrix by column 1 ascending then by column 2       decending (Henrique Dallazuanna)   39. Hierarchical glm with binomial family (Johan Stenberg)   40. Re: optim() question (John C Nash)   41. Re: Harmonic Analysis (Gerard M. Keogh)   42. Re: How to write a loop? (Andrew Dolman)   43. Re: file.move? (Prof Brian Ripley)   44. Re: Sort matrix by column 1 ascending then by column 2       decending (Paul Geeleher)   45. Defining functions - an...