search for: pierrick

Displaying 20 results from an estimated 26 matches for "pierrick".

2014 Dec 18
2
segfault when trying to allocate a large vector
...n in http://r.789695.n4.nabble.com/allocMatrix-limits-td864864.html, following what I have seen in ?"Memory-limits" I checked that ulimit -v returns "unlimited". I guess I must miss something, like contiguity issues, or other. Does anyone have a clue for me? Thanks by advance, Pierrick
2014 Dec 11
2
Fwd: No source view when using gdb
...ttain the expected purpose (step by step progression), but source code lines are replaced by, e.g. : 72 in varbayes.c There should be some way of "installing" the source code files, but I did not find R-specific info there. Does someone have a clue for my problem? Thanks by advance, Pierrick
2013 Mar 08
2
Unexpected behaviour of apply()
...] <- mat[3,1] <- FALSE apply(mat, 1, indexes) ---- I would expect a 10-cell list with integer(0) in each cell - instead I get integer(0), which wrecks my further process. Is there a simple way to get the result I expect (and the only consistent one, IMHO) ? Thanks by advance for your help, Pierrick Bruneau http://www.bruneau44.com [[alternative HTML version deleted]]
2014 Dec 20
2
Unexplained difference between results of dppsv and dpotri LAPACK routines
...return(R_NilValue); } I expected both printed values to be identical, or almost so. But issuing .Call("test") prints: 0.426571 0.415648 Difference is thus many degrees of magnitude above numerical precision. What am I missing that explains it? Thanks by advance for the kind answers, Pierrick
2003 Feb 11
3
Samba getting user info from NT PDC
...os level = 0 preferred master = False local master = no domain master = False wins support = no wins server = 10.41.0.16 hosts allow = 10.41.0. dns proxy = no [www] comment = www root directory path = /usr/local/www/data/ browseable = yes writable = yes -- Pierrick Brossin IT Swiss - QUARK Media House 6a Puits Godet, 2000 Neuchatel, Switzerland Mail Prof: pbrossin@quark.ch Mail Priv: admin@swissgeeks.com
2014 Dec 18
0
segfault when trying to allocate a large vector
Hi Pierrick, You're storing largevec on the stack, which is probably causing a stack overflow. Allocate largvec on the heap with malloc or one of the R memory allocation routines instead and it should work fine. Karl On Thu, Dec 18, 2014 at 12:00 AM, Pierrick Bruneau <pbruneau at gmail.com> wrote...
2013 Jan 31
1
Using eigen() for extracting only few major eigenpairs
...eigen decomposition when only few eigenpairs are needed : did somebody already care about this problem (through a contributed package for example) ? Or do I have to directly try to mess around with the LAPACK library (and contribute the package myself afterwards) ? Thanks by advance for your help, Pierrick Bruneau CRP Gabriel Lippmann [[alternative HTML version deleted]]
2012 Sep 27
1
Problem with grid.rect
...ot;center", "center")), vp=vp1) (I know I could do this in a simpler way, but let's suppose I want to go through the pushviewport / viewport def / grid.rect with vp argument sequence) I must be missing something obvious ! What am I doing wrong ? Thanks by advance for your help. Pierrick Bruneau CRP Gabriel Lippmann [[alternative HTML version deleted]]
2012 Nov 04
1
Rd2pdf freeze
...ment = FALSE, : VBmix_0.2.9.tar.gz:30932: unexpected '}' Warning in parse_Rd("VBmix_0.2.9.tar.gz", encoding = "unknown", fragment = FALSE, : Rd files are encoded as regular ASCII text, I cannot get what is going wrong... Any idea ? Thanks by advance for your help. Pierrick Bruneau Research Associate CRP Gabriel Lippmann (Luxemburg) [[alternative HTML version deleted]]
2014 Dec 11
0
Fwd: No source view when using gdb
On Thu, 2014-12-11 at 14:00 +0100, Pierrick Bruneau wrote: > Dear R contributors, > > Say I want to debug some C code invoked through .Call() - say > "varbayes" in the VBmix package. following the instructions in > "Writing R Extensions", I perform the following actions : > > R -d gdb > run >...
2014 Dec 20
0
Unexplained difference between results of dppsv and dpotri LAPACK routines
This isn't the help list for LAPACK, but as far as I can tell, dppsv expects a symmetric matrix input compacted as triangular, not a Choleski decomposed one. So try assigning lmat before the call to dpotrf. -pd > On 20 Dec 2014, at 22:06 , Pierrick Bruneau <pbruneau at gmail.com> wrote: > > Dear R contributors, > > Considering the following sample C code, that illustrates two possible > uses of a Cholesky decomp for inverting a matrix, equally valid at > least in theory: > > SEXP test() { > > int d = 2;...
2012 Oct 10
1
Filling points in a trellis object
With the following code : I would like to plot 4 points, and have the circle and diamond shapes filled with grey. What am I missing ? Thanks by advance for your help, Pierrick Bruneau Research Fellow CRP Gabriel Lippmann -- View this message in context: http://r.789695.n4.nabble.com/Filling-points-in-a-trellis-object-tp4645679.html Sent from the R help mailing list archive at Nabble.com.
2003 Feb 13
6
!!ATTENTION NEWBIES!!
I've been reading this list for a few weeks now and I've given advice on questions that look challenging but I've deleted MANY questions like these: "How do I (easy question found in the documents)?" Though I don't count myself an expert, I've known enough experts to see that they _HATE_ it when you don't invest some time before asking a question. I too have
2011 Jun 30
1
Analysing insecticide biossays using lmer
...Levels: -3.397940009 -2.397940009 -1.397940009 -0.397940009 0.602059991 As you can see, the model does not work because it does not consider all the logdose values... Could someone help me in finding what is wrong or in suggesting maybe another path to follow for my statistical analysis? Cheers Pierrick -- View this message in context: http://r.789695.n4.nabble.com/Analysing-insecticide-biossays-using-lmer-tp3635724p3635724.html Sent from the R help mailing list archive at Nabble.com.
2012 Oct 10
1
impossible to fill point glyphs in a lattice plot
...l.1.1", gp=gpar(lwd=c(2,2,2,2), cex=c(2,3,3,2), col=1, fill=c("transparent", "grey", "grey", "transparent"))) I would like to plot 4 points, and have the circle and diamond shapes filledwith grey. What am I missing ? Thanks by advance for your help, Pierrick Bruneau Research Fellow CRP Gabriel Lippmann [[alternative HTML version deleted]]
2013 Mar 20
1
help on extracting values from a matrix
Dear All,   any thoughts on how I can do the following:   let us say we have:   a <-c(2,4,16,28,48) b <-c(10,4,2,0.4,0.03) d <-cbind(a,b)   what I would like to do is to extract values of column b in the matrix based on the corresponding values of column a. For example: I would like to extract all b values that have a corresponding a value that is less than 24 into a numeric vector, so
2013 Mar 20
2
problem subsetting data.frame in R version 2.15.2 for Windows
Good day. I create a data frame like this: > data <- data.frame(a=1:10,b=11:20,c=21:30) I can subset this data.frame by saying: > data[data$a>7,] and I get this result a b c 8 8 18 28 9 9 19 29 10 10 20 30 I understand I should get the same result by saying
2008 May 14
2
Dovecot dying when deliver is called
...postfix group: postfix master: path: /var/run/dovecot/auth-master mode: 384 user: vmail I am not able to get a coredump. You can find a copy of the error mail attached. I didn't get any message from log files. If someone have any clue, I will helping. Regards, Pierrick Caillon -------------- next part -------------- An embedded message was scrubbed... From: "Mail Delivery System" <MAILER-DAEMON at megami.fr> Subject: Undelivered Mail Returned to Sender Date: Wed, 14 May 2008 20:26:06 +0200 Size: 4661 URL: <http://dovecot.org/pipermail/dovecot/a...
2013 Mar 20
3
highlight overlapping region of two densities
Hi all. I would like to highlight overlapping regions of two densities and I could not find a way to do it. Here is the sample code: myd <- c(2,4,5, 4,3,2,2,3,3,3,2,3,3,4,2,4,3,3,3,2,2.5, 2, 3,3, 2.3, 3, 3, 2, 3) myd1 <- myd-2 plot(range(density(myd)$x, density(myd1)$x), range(density(myd)$y, density(myd1)$y), type = "n") lines(density(myd), col=1, lwd=4)
2013 Apr 10
0
[linux-linus test] 17612: regressions - FAIL
...lt;pierre@spotify.com> Pierre Sauter <pierre.sauter@gmail.com> Pierre Tardy <pierre.tardy@intel.com> Pierre-Eric Pelloux-Prayer <pelloux@gmail.com> Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Pierre-Loup A. Griffais <pgriffais@nvidia.com> Pierrick Hascoet <pierrick.hascoet@abilis.com> Ping Cheng <pingc@wacom.com> Ping Cheng <pinglinux@gmail.com> PingYang Zhang <pingzhan@qca.qualcomm.com> Piotr Haber <phaber@broadcom.com> Pontus Fuchs <pontus.fuchs@gmail.com> Poonam Aggrwal <poonam.aggrwal@fr...