search for: lippmann

Displaying 9 results from an estimated 9 matches for "lippmann".

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.
2013 Jan 31
1
Using eigen() for extracting only few major eigenpairs
...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
...")), 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
...xpected '}' 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]]
2003 Oct 20
0
MRPP
...Science Publisher. I know PC-Ord can do it, but I'd rather a R function which allows very long data list computations. Thanks ____________________________________________________ Martial FERREOL Cellules de Recherche en Environnement et BiotechnologieS Centre de Recherche Public - Gabriel Lippmann 162a Avenue de la Faïencerie L-1511 Luxembourg Tel : +352 470 261 441 Fax : +352 470 261 389 http://www.crpgl.lu ____________________________________________________ [[alternative HTML version deleted]]
2012 Oct 10
1
impossible to fill point glyphs in a lattice plot
...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
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)