search for: statda

Displaying 4 results from an estimated 4 matches for "statda".

Did you mean: stata
2013 Jun 23
0
statda package issue
I all, I'm new on this list, so sorry if I do something wrong. Anyway, I have a problem with the installation of the package StatDA. Typing install.package("StatDA") I receive the error: ERROR: configuration failed for package ?MBA? * removing ?/home/matteo/R/i686-pc-linux-gnu-library/3.0/MBA? Warning in install.packages : installation of package ?MBA? had non-zero exit status ERROR: dependency ?MBA? is not availabl...
2012 Jul 19
1
3-d kernel smooth by the "kde" function
Dear R community, I'm having hard time to understand the kde function in "ks" package. Let me use a 3-dimensional kernel smooth example to explain my question using the elevation data in geoR. ### here is what I did ### library(ks) require(geoR) data(elevation) elev.df <- data.frame(x = elevation$coords[,"x"], y = elevation$coords[,"y"], z = elevation$data)
2010 Feb 16
3
Triangular filled contour plot
Hi all, I am working on a filled contour plot which shows a triangular matrix data set (as shown below). Is there a possibilty to draw a triangular filled contour in a equilateral triangle (like a ternary plot)? Thanks in advance Johannes http://n4.nabble.com/file/n1557386/Bild3.png -- View this message in context: http://n4.nabble.com/Triangular-filled-contour-plot-tp1557386p1557386.html
2010 Aug 25
1
Documenting S4 Methods
I'm in the process of converting some S3 methods to S4 methods. I have this function : setGeneric("enrichmentCalc", function(rs, organism, seqLen, ...){standardGeneric("enrichmentCalc")}) setMethod("enrichmentCalc", c("GenomeDataList", "BSgenome"), function(rs, organism, seqLen, ...) { ... ... ... })