search for: laan

Displaying 20 results from an estimated 68 matches for "laan".

Did you mean: alan
2015 May 13
3
Alternative for wildcard gnu extension in Makevars
Dirk Eddelbuettel <edd at debian.org> schreef: > On 13 May 2015 at 17:27, Jan van der Laan wrote: > | > | I have some cpp-files from another library (boost) in a subdirectory > | in my src directory (src/boost_src). I include these using the > | following two lines in my Makevars: > | > | SOURCES = $(wildcard *.cpp boost_src/*.cpp) > | OBJECTS = $(SOURCES:.cpp=.o) &g...
2007 Nov 11
1
nv50 microcode/shader format
...t in finding the shader instructions in valgrind-mmt-extend of mmiotrace dumps that'd be a great help. I haven't had much luck yet with that. Is there a way to "pretty print" the output of those programs, I mean, fill in the registers already known? Greetings, Wladimir J. van der Laan -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.freedesktop.org/archives/nouveau/attachments/20071111/37157d07/attachment.html
2007 Jan 11
1
pdbedit problems
...on-line resources (including the Samba How To), it says to run the following command (this should effect the individual user). /pdbedit --pwd-must-change-time="2007-01-01" --time-format="%y-%m-%d" test / It however only returns: / / /test:501:Victor Aluicious Laan. / If I enter /pdbedit -Lv/ test, I see the following: /[root@ASTER ~]# pdbedit -Lv test/ /Unix username: test/ /NT username:/ /Account Flags: [U ]/ /User SID: S-1-5-21-3030426004-1519544323-488087672-2002/ /Primary Group SID: S-1-...
2018 Aug 07
1
Run garbage collector when too many open files
...t used for large amounts of time that could be temporarily closed , but it will be a bit difficult for the package to detect which objects that will be. I would have to write my own 'garbage collector'. Best, Uwe > > Best, > > luke > > On Tue, 7 Aug 2018, Jan van der Laan wrote: > >> Dear Uwe, >> >> (When replying to your message, I sent the reply to r-devel and not >> r-package-devel, as Martin Meachler suggested that this thread would >> be a better fit for r-devel.) >> >> Thanks. In the example below I used rm() expl...
2018 Aug 07
2
[R-pkg-devel] Run garbage collector when too many open files
...little information that is better kept in memory. But that is only a partial solution. On 07-08-18 15:24, Uwe Ligges wrote: > Why not add functionality that allows to delete object + runs cleanup code? > > Best, > Uwe Ligges > > > > On 07.08.2018 14:26, Jan van der Laan wrote: >> >> >> In my package I open handles to temporary files from c++, handles to >> them are returned to R through vptr objects. The files are deleted >> then the corresponding R-object is deleted and the garbage collector >> runs: >> >> a <...
2005 Aug 04
2
p-values
...619688 > pchisq(5.1, df= 6, lower.tail=F) [1] 0.5310529 Is there a way to calculate the equivalent Monte Carlo p-values? The values were 0.02 and 0.138 respectively. The use of the approximate chi-square probabilities for Durbin's test are considered not good enough according to Van der Laan (The American Statistician 1988,42,165-166). Peter -------------------------------- ESTG-IPVC
2017 Oct 09
1
Using response variable in interaction as explanatory variable in glm crashes R
>>>>> Jan van der Laan <rhelp at eoos.dds.nl> >>>>> on Fri, 6 Oct 2017 12:13:39 +0200 writes: > It is actually model.matrix that crashes, not glm. Same > crash occurs with e.g. lm. > model.matrix(dob_mon ~ dob_day*dob_mon, data = tab) > also crashes R. Yes, segment...
2017 Oct 06
2
Using response variable in interaction as explanatory variable in glm crashes R
The following code crashes R (I know I shouldn't try to estimate such a model; this was a bug in some code of mine). I also tried with R-devel; same result. tab <- structure(list(dob_day = c(FALSE, FALSE, FALSE, FALSE, TRUE, TRUE, TRUE, TRUE), dob_mon = c(FALSE, FALSE, TRUE, TRUE, FALSE, FALSE, TRUE, TRUE), dob_year = c(FALSE, TRUE, FALSE, TRUE, FALSE, TRUE, FALSE, TRUE), n =
2015 May 13
4
Alternative for wildcard gnu extension in Makevars
...#39;R/makevars.R'); makevars()" And that 'makevars()' function could generate portable 'Makevars(.win)' files for your package. Kevin On Wed, May 13, 2015 at 9:08 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: > On Wed, May 13, 2015 at 12:05 PM, Jan van der Laan <rhelp at eoos.dds.nl> > wrote: > [...] > >> Too bad. Since it is only a handful of files, I will probably move them >> directly into the src directory and prefix them. It would have been nice to >> have been able to keep them separate. >> > > If it is a...
2015 May 13
2
Alternative for wildcard gnu extension in Makevars
I have some cpp-files from another library (boost) in a subdirectory in my src directory (src/boost_src). I include these using the following two lines in my Makevars: SOURCES = $(wildcard *.cpp boost_src/*.cpp) OBJECTS = $(SOURCES:.cpp=.o) However, R CMD check complains about my use of 'wildcard'. How do I handle this without any gnu extensions? Thanks. Jan
2000 Jan 14
1
Possible bug: 'all new dirptrs in use?'
...ferent directories. The fact that they are the only ones with the problem and that it occurs near the end of the day seems consistent with my observation. Modifying the code is too involved for me, however. Could anyone with more knowledge of this code look into the problem? Regards, Mauk van der Laan
2017 Nov 28
1
Thiel's Uncertainty Coefficient
...Thank you in advance, I hope to hear from you. Kind regards, Jos? Snoep Stagiair Universitair | MC ES - SOFY +31 6 13060740 Snoep.Jose at kpmg.nl<mailto:Snoep.Jose at kpmg.nl> | MyLinkedIn <https://www.linkedin.com/in/josesnoep/> | www.kpmg.nl<http://www.kpmg.com/nl> KPMG | Laan van Langerhuize 1, 1186 DS Amstelveen KPMG Advisory N.V., handelsregisternummer 33263682 ********************************************************************** ------------------------------------------------------------------------ The information in this e-mail (and any attachments) is int...
2010 Dec 09
4
Sequence generation in a table
Dear R helpers I have following input f = c(257, 520, 110). I need to generate a decreasing sequence (decreasing by 100) which will give me an input (in a tabular form) like 257, 157, 57 520, 420, 320, 220, 120, 20 110, 10 I tried the following R code f = c(257, 520, 110) yy = matrix(data = NA, nrow = 3, ncol = 6) for (i in 1:3)      {      value = NULL      for (j in 1 : 6)           {
2010 Jul 21
1
Plot window does not update in embedded code
...can't figure out what exactly happens in this routine. How do I ensure that the windows keep being updated? Presently I am working under Linux. However, I also want to be able to run my code under windows, so I hope there is a cross-platform solution. Thanks in advance. Regards, Jan van der Laan ===== The example code ===== #include <iostream> #include <iomanip> #include <string> static void R_WriteConsoleEx (const char *buf, int buflen, int otype) { std::string output(buf, buflen); std::cout << output; } static void R_WriteConsole (const char *buf, int bufl...
2012 Nov 01
3
Start R from bash/bat file and end in interactive mode
I have a r-script (rook.R) that starts a Rook server. To present users from having to start R and type in source("rook.R"), I want to create a bash script and bat file that starts R and sources the script. However, to keep the Rook server running R should not close after running the script and stay in interactive mode. This proves more difficult than expected. I tried various
2001 Jul 19
2
win32: Encoder using vorbisenc.dll - AV?
Hello, When I compile either oggenc or encoder_example with static libraries, they work fine, but when I try them with the dynamic libraries, I get an access violation in vorbisenc.dll with both oggenc and encoder_example. Can anyone on win32 confirm this? It's strange because vorbisfile.dll *does* work with vorbisfile_example, and the configuration for vorbisfile.dll is exactly the same
2002 Jan 17
2
ANN: ReplayGain Winamp2 plugin for MP3, FLAC, MOD, etc.
This new ReplayGain feature is cool, but made all my .mp3 and .mod files sound so loud, so I wrote a Winamp DSP plugin that: - If a file is playing that is not known, a ReplayGain value will be calculated while playing. - If a file is known, the ReplayGain value is applied. What that means is that my .mp3 files now sound as loud as my .oggs. I hacked this thing together very quick, so
1999 Aug 30
3
some shares in browselist not showing up in spite of browseable = yes
...#39;s no limit to the number of shares in a browselist (or at least not a silly limit of 90 =) ?) version used is 1.9.18-HEAD. (Not wanting to spam the list, I did not include the used conf file(s) yet in this message). I'd be happy to send it on request though. Michel. -- Michel van der Laan - michel@nijenrode.nl http://www.nijenrode.nl/~michel
2018 Aug 07
0
[R-pkg-devel] Run garbage collector when too many open files
...our approach to avoid hanging onto open file connections as these are a scarce resource. You can keep around your temporary files without having them open and only open/close them on access, with the close run in an on.exit or a tryCatch/finally clause. Best, luke On Tue, 7 Aug 2018, Jan van der Laan wrote: > Dear Uwe, > > (When replying to your message, I sent the reply to r-devel and not > r-package-devel, as Martin Meachler suggested that this thread would be a > better fit for r-devel.) > > Thanks. In the example below I used rm() explicitly, but in general users &g...
2015 May 15
1
Alternative for wildcard gnu extension in Makevars
...39;makevars()' function could generate portable >> 'Makevars(.win)' files for your package. >> >> Kevin >> >> On Wed, May 13, 2015 at 9:08 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: >>> On Wed, May 13, 2015 at 12:05 PM, Jan van der Laan <rhelp at eoos.dds.nl> >>> wrote: >>> [...] >>> >>>> Too bad. Since it is only a handful of files, I will probably move them >>>> directly into the src directory and prefix them. It would have been nice to >>>> have been able to...