search for: natural

Displaying 20 results from an estimated 10649 matches for "natural".

2006 Aug 25
2
R in Nature
Hi all, We've just had a paper accepted for publication in Nature. We used R for 95% of our analyses (one of my co-authors sneaked in some GenStat when I wasn't looking.). The preprint is available from the Nature web site, in the open peer-review trial section. I searched Nature for previous references to "R Development Core Team", and I received no hits. So I tentatively
2010 May 20
1
sqldf: issues with natural joins
Hello, I'm having trouble discovering what's going wrong with my use of natural joins via sqldf. Following the instructions under 4i at http://code.google.com/p/sqldf/, which discusses creating indices to speed joins, I have been only unreliably able to get natural joins to work. For example, > Tid <- c('AES 01-01-02 10:58:00', 'AES 01-01-02 11:53:00',...
2011 Apr 30
3
[LLVMdev] LoopInfo are not able to identify some natural loops?
In C code, if a loop is not a natural loop, that means its loop body should at least have one label, right? In that case, some BB out of the loop can jump to the loop body, so the loop has more than on entry. Does LoopInfo guarantee to identify all natural loops? This property is very important for my pass. regards, Bo On Fri, Apr 2...
2011 May 01
0
[LLVMdev] LoopInfo are not able to identify some natural loops?
On 4/30/11 8:52 AM, Bo Wu wrote: > In C code, if a loop is not a natural loop, that means its loop body > should at least have one label, right? In that case, some BB out of > the loop can jump to the loop body, so the loop has more than on entry. Off the top of my head, I would think you are right: a C label would have to exist within the loop in order to hav...
2017 Aug 31
3
Natural vs National in R signon banner?
The R signon banner includes this statement: Natural language support but running in an English locale Should that not say 'National' instead of 'Natural'? Meaning that LOCALE support is enabled, not that the interface understands human language? Please ignore this and forgive me if this is an inappropriate post. I am a N00B in R....
2010 Apr 06
0
[LLVMdev] Idea for Google Summer Code : C Compiler for EFI Byte Code implement in LLVM
On Apr 3, 2010, at 2:36 PM, Russell Wallace wrote: > On Fri, Apr 2, 2010 at 6:17 PM, Chris Lattner <clattner at apple.com> wrote: >> No, please don't. This is something we specifically do not want to support. The issue is not the parser, the issue is that struct field offsets are no longer constant in this model. > > What about declaring that pointers are always 64
2011 Apr 30
2
[LLVMdev] LoopInfo are not able to identify some natural loops?
...nd that some loops can not be identified by LoopInfo pass. For example, the loop at line 3094 of rdopt.c of benchmark 464.h264ref from spec cpu2006 is not a loop or a child (pr grandchild) of any loop in the loop list generated by LoopInfo pass. The documentation of LoopInfo says that it identifies natural loops, who have exactly one entry point. But the IR of this loops shows that it's header only has one BB in preds. Does that mean LoopInfo can not identify some natural loops? Thanks, Bo -- Bo Wu Ph.D. student CAPS group Computer Science Department The College of William & Mary www.cs.w...
2000 Sep 04
2
bug in spline()? (PR#653)
BUG IN SPLINE()? Version R-1.0.1, system i486,linux If the spline(x,y,method="natural") function is given values outside the range of the data, it does not give a warning. Moreover, the extrapolated value reported is not the ordinate of the natural spline defined by (x,y). Example. Let x <- c(2,5,8,10) and y <- c(1.2266,-1.7606,-0.5051,1.0390). Then interpolate/extrapol...
2007 Apr 01
4
[LLVMdev] PR400 - alignment for LD/ST
On Sun, 1 Apr 2007, Christopher Lamb wrote: > Also I wanted to clear something up about the meaning of the alignment > attribute. My thinking is that this indicates over/under alignment with > respect to natural alignment for the type. This is to say in the Load/Store > instruction classes the default alignment value will be zero, meaning natural > alignment for the given type. If the alignment value is nonzero then the > alignment value should be used over the natural or preferred alignment....
2010 Apr 09
1
How to get the penalty matrix for natural cubic spline?
Hi, all I am trying to get the basis matrix and penalty matrix for natural cubic splines. In the "splines" package of R,"ns" can generate the B-spline basis matrix for a natural cubic spline. How can I get the basis matrix and penalty matrix for natural cubic spline. Thanks a lot! Lee [[alternative HTML version deleted]]
2017 Sep 01
2
Natural vs National in R signon banner?
...call 'National Language' is often > referred to as 'Native Language'. And the 'National Language' terminology > is said to not be used consistently: > https://en.wikipedia.org/wiki/National_language > I do still feel, however, that claiming 'Natural Language' support in R > sets expectations of new users overly high. > Thank you for spending so much time on such a minor nit. continuing the nits and gnats : I think I now understand what you mean. From the little I understand about English intricacies and with my not fully...
2011 Apr 30
0
[LLVMdev] LoopInfo are not able to identify some natural loops?
A natural loop is one whose header dominates all of the nodes in the loop. There is probably some block outside of the loop jumping to a block in the loop body. Cameron On Apr 29, 2011, at 7:43 PM, Bo Wu <bwu at cs.wm.edu> wrote: > Hi, > > I found that some loops can not be identified by L...
2017 Sep 01
1
Natural vs National in R signon banner?
The way it's phrased now makes it seem that English is not a Natural language ("Natural language support *but* running in an English locale"). Why not just state: "running in an English locale" and leave it with that? Better to leave something out than to be unclear (being correct formally does not always mean being clear to all users). -M Op vr...
2009 Mar 31
2
How to generate natural cubic spline in R?
Suppose I have two var x and y,now I want to fits a natural cubic spline in x to y,at the same time create new var containing the smoothed values of y. How can I get it?
2010 Apr 19
0
Natural cubic splines produced by smooth.Pspline and predict function in the package "pspline"
Hello, I am using R and the smooth.Pspline function in the pspline package to smooth some data by using natural cubic splines. After fitting a sufficiently smooth spline using the following call: (ps=smooth.Pspline(x,y,norder=2,spar=0.8,method=1) [the values of x are age in years from 1 to 100] I tried to check that R in fact had fitted a natural cubic spline by checking that the resulting spline was LINE...
2010 Oct 31
2
Natural Selection 2 alpha, Steam
Hi, I have preordered natural selection quite a while ago and it seems like it is getting to a playable state, so I wanted to know if anyone could help me (and many others :)), to get natural selection 2 to work with wine. I would gladly give you a console log, but i don't even know how i start steam-games from console :/....
2011 May 01
2
[LLVMdev] LoopInfo are not able to identify some natural loops?
Thanks for the reply. The LoopInfo pass can actually identify the loop I mentioned. My former question is due to a bug in my pass. What I worried is that LoopInfo can not identify all the natural loops for the benchmarks I use, but now I haven't found any such cases. Bo On Sun, May 1, 2011 at 4:24 PM, John Criswell <criswell at illinois.edu> wrote: > On 4/30/11 8:52 AM, Bo Wu wrote: > > In C code, if a loop is not a natural loop, that means its loop body should > a...
2010 Apr 03
5
[LLVMdev] Idea for Google Summer Code : C Compiler for EFI Byte Code implement in LLVM
On Fri, Apr 2, 2010 at 6:17 PM, Chris Lattner <clattner at apple.com> wrote: > No, please don't.  This is something we specifically do not want to support.  The issue is not the parser, the issue is that struct field offsets are no longer constant in this model. What about declaring that pointers are always 64 bits, for all purposes other than final code generation of actual pointer
2017 Aug 31
0
Natural vs National in R signon banner?
...It does appear, however, that what I call 'National Language' is often referred to as 'Native Language'. And the 'National Language' terminology is said to not be used consistently: https://en.wikipedia.org/wiki/National_language I do still feel, however, that claiming 'Natural Language' support in R sets expectations of new users overly high. Thank you for spending so much time on such a minor nit. Regards On Thu, Aug 31, 2017 at 5:45 PM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote: > On 31/08/2017 6:37 PM, Paul McQuesten wrote: > >> Th...
2008 Nov 25
3
Regression: Dragon Naturally Speaking 7.
I had installed Dragon Naturally Speaking under Wine 1.1.7 and earlier, and it was working fine. But now under Wine 1.1.9, the result seems to be, that the toolbar for this application first goes into a strange state, where the (Linux) cursor disappears whenever the mouse is positioned over the application's toolbar. And us...