search for: thk

Displaying 20 results from an estimated 52 matches for "thk".

Did you mean: th
2016 May 25
3
Suggestion: mkString(NULL) should be NA
...rfectly fine. The real issue was not the behavior but that it was not documented or consistent. I've lived by the mantra since that you can never trust a pointer in R code. User must always check for NULL. I just wrote my own functions mkXXX_safe that wrap the internals and check the pointer. THK http://www.keittlab.org/ [[alternative HTML version deleted]]
2020 Apr 22
1
R not running under lldb? (osx)
Thanks Simon. I'll probably just switch to rocker when needing to debug in that case. THK On Tue, Apr 21, 2020 at 6:51 PM Simon Urbanek <simon.urbanek at r-project.org> wrote: > Tim, > > as a security precaution Apple has disabled the ability to debug notarized > applications*. It means any software distributed on macOS Catalina (and > they may have retro-actively...
2020 Apr 21
2
R not running under lldb? (osx)
...create "/Library/Frameworks/R.framework/Resources/bin/exec/R" Current executable set to '/Library/Frameworks/R.framework/Resources/bin/exec/R' (x86_64). (lldb) run --vanilla error: process exited with status -1 (Error 1) Never happened before. Is this a known issue? Thanks. THK [[alternative HTML version deleted]]
2017 Mar 30
2
Transferring ownership of R-managed buffer
...That is exactly what I need. I was trying out a little experiment, but I think its not possible right now because the length of an R vector is identical to the buffer length. I can do everything I need except force the length of the returned R vector to be only a portion of the allocated storage. THK http://www.keittlab.org/ [[alternative HTML version deleted]]
2017 Mar 29
3
Transferring ownership of R-managed buffer
...??? Is there a "placement" constructor available? (I have arranged for the corresponding UNPROTECT.) I've looked at and experimented with R_allocator and allocVector3, but can't quite get it right. I know this is odd, but it makes sense for my use case. Thanks for any pointers. THK http://www.keittlab.org/ [[alternative HTML version deleted]]
2017 Mar 29
2
Transferring ownership of R-managed buffer
...XPREC) and point it at the buffer, set the vector length and data type. I was checking to see if there is an API for that (and that wont interfere with Rcpp declarations as it pulls in parts of Rinternals.h, but as far as I can tell, not the parts that I need to work with SEXPRECs at a low-level). THK > H. > > >> Thanks for any pointers. >> >> THK >> >> https://urldefense.proofpoint.com/v2/url?u=http-3A__www.keit >> tlab.org_&d=DwICAg&c=eRAMFD45gAfqt84VtBcfhQ&r=BK7q3XeAvimeWd >> GbWY_wJYbW0WYiZvSXAJJKaaPhzWA&m=Ceu5dLU_mdGwmpIk_...
2007 Apr 12
1
making a counter of consecitive positive cases in time series
...ative experimental funtion. I have x: the time series (0,1) and y: my counter, i have this for step. What is wrong?.. any can help me please! x<-rbinom(15,1,.3) y<-NULL;s<-0 for (i in 1: length (x)) {if (x[i]>0) {s<-s+x[i] s=0} else y<-c(y,s)} y x Thk u all! José Bustos --------------------------------- [[alternative HTML version deleted]]
2008 Apr 21
1
Analysis of Epidemiological Data Using R
...name: Analysis of Epidemiological Data Using R and Epicalc, maked by: Virasakdi Chongsuvivatwong and Edward McNeil. And I can't find the data base that they use in some examples, this are the names: Chapter7.Rdata,Chapter8.Rdata,Chapter9.Rdata Somebody can tell me how can I have this files? Thk! Jos? O__ ---- Jos? Bustos M. c/ /'_ --- Master Apllied Stat Program (*) \(*) -- University of Concepci?n
2014 Mar 12
2
Suppress IMAP Disconnection Messages
In syslog, I frequently see messages such as: "dovecot: imap(user): Disconnected for inactivity" I understand why these happen, but is there anyway to configure logging to suppress these messages?
2007 Jun 07
1
Ubu edgy + latest CRAN R + Rmpi = no go
...fine with the Edgy-native version of R (2.3.x) and installing Edgy's r-cran-rmpi with apt. (But I need some other packages that only work in 2.4+!) Could this be a problem with the latest Ubu debs on CRAN? The Rmpi author says his R 2.5 setup works fine. CC me please as I'm not subscribed. THK -- Timothy H. Keitt, University of Texas at Austin Contact info and schedule at http://www.keittlab.org/tkeitt/ Reprints at http://www.keittlab.org/tkeitt/papers/ ODF attachment? See http://www.openoffice.org/
2015 Oct 07
2
authorship and citation
On 07/10/2015 1:39 PM, Tim Keitt wrote: > On Wed, Oct 7, 2015 at 11:29 AM, Spencer Graves <spencer.graves at prodsyse.com >> wrote: > >> Another example: The "Author" of the Ecdat package is Yves Croissant < >> yves.croissant at let.ish-lyon.cnrs.fr>. I'm the Maintainer. At some >> point, I may add my name to the list of Authors but I
2014 May 22
1
Excluding objects from save.image
...realizing the object is no longer valid. My thought is to designate a class name (perhaps "no.save") and exclude anything that inherits from that. I've hacked a quick implementation below. I did not issue a warning, but it would be a simple fix. Does anyone else see this as useful? THK -- http://www.keittlab.org/ .new.save.image = function (file = ".RData", version = NULL, ascii = FALSE, compress = !ascii, safe = TRUE, omit.no.save = TRUE) # added "omit.no.save" argument { if (!is.character(file) || file == "")...
2008 Apr 08
1
Speex and C5510
Thanks Jim, But i didnt find this project... It's in CCS folder or on TI site ????? Thk's Em 08/04/2008, ?s 15:52, Jim Crichton escreveu: > The TI directory of the Speex source distribution contains a C5509A > project that builds and runs in TI's Code Composer Studio > simulator. This project does file I/O to files specified in the > main source file. Se...
2017 Mar 29
0
Transferring ownership of R-managed buffer
...SEXPRECs are (and must be) contiguous in memory (header plus payload), so I don't think what you're wanting is possible without the ALTREP framework being in place (decoupling header and payload is a major motivating desire for us). I may misunderstand what you want though. Best, ~G > THK > > > > H. > > > > > >> Thanks for any pointers. > >> > >> THK > >> > >> https://urldefense.proofpoint.com/v2/url?u=http-3A__www.keit > >> tlab.org_&d=DwICAg&c=eRAMFD45gAfqt84VtBcfhQ&r=BK7q3XeAvimeWd > >...
2018 Dec 24
2
Freenas configuration Legrand Daker DK1kVA
Hi all, I have an UPS by Legrand, model Daker DK 1 kVA, i have tried to use "nutdrv_qx" driver with usb but have no success. I will send you all the information you need to try to solve or write the correct driver. Hope to be useful. regards Andrea
2019 Mar 13
0
[Bug 109996] New: Bug
....com QA Contact: xorg-team at lists.x.org CC: dejavu-bugs at lists.freedesktop.org, musharib.006 at gmail.com, zohaibshehzad9 at gmail.com Depends on: 109995 +++ This bug was initially created as a clone of Bug #109995 +++ Boaeen Rola ayy raja g thk krop g Referenced Bugs: https://bugs.freedesktop.org/show_bug.cgi?id=109995 [Bug 109995] Bug -- You are receiving this mail because: You are the assignee for the bug. -------------- next part -------------- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/nouve...
2009 Jul 29
1
Relay from http://scfire-dtc-aa04.stream.aol.com:80/stream/1060
...m.aol.com:80/stream/1060</server> <port>80</port> or <server>http://scfire-dtc-aa04.stream.aol.com/stream/1060</server> <port>80</port> I searching on internet with google without a good explanation for relay this type of streaming Thk -- "Afirmo que ambos somos ateos. Yo simplemente creo en un dios menos que t?. Cuando entiendas por qu? descartas a todos los otros posibles dioses, entender?s por qu? yo descarto al tuyo." Stephen Roberts
2016 May 25
0
Suggestion: mkString(NULL) should be NA
...r NULL and signaling an error instead of segfaulting, but good C code calling mkXXX should still typically do its own check and handle the situation in an appropriate way. Best, luke > > I just wrote my own functions mkXXX_safe that wrap the internals and check > the pointer. > > THK > > http://www.keittlab.org/ > > [[alternative HTML version deleted]] > > ______________________________________________ > R-devel at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-devel > -- Luke Tierney Ralph E. Wareham Professor of Mathematical...
2017 Mar 29
0
Transferring ownership of R-managed buffer
...P x = b; is fine and doesn't generate any copy. And if your code only has access to a "naked" pointer to the buffer managed by R (e.g. to RAW(b) is the buffer is actually in an SEXP) then why would you need to wrap it inside an SEXP? H. > > Thanks for any pointers. > > THK > > https://urldefense.proofpoint.com/v2/url?u=http-3A__www.keittlab.org_&d=DwICAg&c=eRAMFD45gAfqt84VtBcfhQ&r=BK7q3XeAvimeWdGbWY_wJYbW0WYiZvSXAJJKaaPhzWA&m=Ceu5dLU_mdGwmpIk_iUqE0dPNjqwy8wiRy6hS_lWF9k&s=h04DJujKDfqzbLz4FmP3_fZ5bYS3t7UEjSwpLrW5mL0&e= > > [[alterna...
2017 Mar 30
0
Transferring ownership of R-managed buffer
...oing away entirely (or at least changing significantly) in R-devel (and thus the R release after this coming one) during the process of merging the ALTREP branch sometime after the upcoming release. That was the last position on the subject I heard from Luke Tierney, anyway. Best, ~G > > THK > > http://www.keittlab.org/ > -- Gabriel Becker, PhD Associate Scientist (Bioinformatics) Genentech Research [[alternative HTML version deleted]]