search for: desideratum

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

2010 Sep 01
2
diamond/triangle "plot"
Hi, does anyone have any idea how I might make a plot in R similar to this: http://assets.sbnation.com/assets/272612/BATTER-1B-PENA.png Specifically looking to plot 3 numbers in a triangle like that. [[alternative HTML version deleted]]
2019 Jul 10
2
Looking for an out-of-source "Hello, world" LLVM/Clang pass example
...install TARGETS given no LIBRARY DESTINATION for module target "Hello". Call Stack (most recent call first): Hello/CMakeLists.txt:3 (add_llvm_library) (Perhaps this is fixable with additional CMake macro calls, but that's what I list "Complete" as a desideratum.) * https://llvm.org/devmtg/2015-10/slides/GueltonGuinet-BuildingTestingDebuggingASimpleOutOfTreePass.pdf, but this uses add_llvm_loadable_module in CMake, which I read in some thread is likely to go away, and the legacy pass manager, while is also likely to go away, to make the pass...
2008 Jan 31
2
Pb with lapply()
Hi, If needed, lapply() tries to convert its first argument into a list before it starts doing something with it: > lapply function (X, FUN, ...) { FUN <- match.fun(FUN) if (!is.vector(X) || is.object(X)) X <- as.list(X) .Internal(lapply(X, FUN)) } But in practice, things don't always seem to "work" as suggested by this code (at least to the
2016 Aug 12
2
ifelse() woes ... can we agree on a ifelse2() ?
...rly stricter than ifelse() and e.g., also does no recycling (but of length() 1). I'm dropping the remaining issue of efficiency as I replied to that (on Aug. 8) in the other branch of this thread. Hadley's if_else() is really nice in its clean approach and does fulfill the main important desideratum, and hence e.g., works for "Date" etc. My goal however would still be considerably closer to base::ifelse(), namely an alternative would - *coerce* types/classes as much as sensible, - (by default at least) recycle (test, yes, no) to common length Unfortunately I've been too busy t...
2004 Jul 05
9
iax or sip
i am looking at iax to see if it is applicable to my needs. i would appreciate any corrections of what i think i have understood but probably have not. iax uses udp and traverses nats. neither of these seems useful to me. i loathe nats, and udp is not well-behaved in the sense of congestion avoidance. trunking will save some bytes in flight iff one has four or more streams moving between two
2016 Aug 06
4
ifelse() woes ... can we agree on a ifelse2() ?
Dear R-devel readers, ( = people interested in the improvement and development of R). This is not the first time that this topic is raised. and I am in now state to promise that anything will result from this thread ... Still, I think the majority among us has agreed that 1) you should never use ifelse(test, yes, no) if you know that length(test) == 1, in which case if(test) yes