search for: ciup

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

Did you mean: cip
2013 Feb 08
6
Add text A, B, C and D on multiple ordered plot
Dear list, Is there a elegant way to name multiple ordered plot as A, B, C and D? Just put A, B, C and D on the top left corner of each plot. Usually I do it in Illustrator, but I think in R should there is a way. Could you please provide a example? Thank you very much in advance.
2011 Jan 21
1
Help for lattice. par(new=TRUE)
Hi list, I want to plot two plot in the same figure. I set par(new=TRUE). But it does not work. library(lattice) myPanel <- function(x,...) { panel.histogram(x,alpha=0.4,...) ltext(0.4,1.5,paste("Mean=","0.05",digit=2)),cex=0.8) ltext(0.8,1.5,paste("s.d.=","0.06",digit=2)),cex=0.8) } histogram(sh2,
2013 Jan 27
3
Package: VennDiagram. Error in draw.pairwise.venn Impossible: cross section area too large
Dear list, When I use VennDiagram package, I got a error as follow: venn.plot <- draw.pairwise.venn( area1 = 3186, area2 = 325, cross.area = 5880); Error in draw.pairwise.venn(area1 = 3186, area2 = 325, cross.area = 588) : Impossible: cross section area too large. Does anyone have suggestion? Thank you.
2011 Apr 06
3
Calculated mean value based on another column bin from dataframe.
Dear list, I have a dataframe with two column as fellow. > head(dat) V1 V2 0.15624 0.94567 0.26039 0.66442 0.16629 0.97822 0.23474 0.72079 0.11037 0.83760 0.14969 0.91312 I want to get the column V2 mean value based on the bin of column of V1. I write the code as fellow. It works, but I think this is not the elegant way. Any suggestions?
2011 Jan 22
0
how to call BayesX in R to see the graph
.../ Phone: +47 55 58 25 05 | Cellphone: +47 906 972 36 | Bjerknes Centre for Climate Research | Geophysical Institute | University of Bergen | Allegaten 55 | NO-5007 Bergen | Norway | ------------------------------ Message: 29 Date: Fri, 21 Jan 2011 15:52:56 +0100 From: Fabrice Tourre <fabrice.ciup@gmail.com> To: r-help@r-project.org Subject: [R] Help for lattice. par(new=TRUE) Message-ID: <AANLkTinvE5La7uTpRa_YMZaBFwnbY8FVdHvnH8iCWqG9@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Hi list, I want to plot two plot in the same figure. I set par(new=TRUE). But it...
2011 Jan 17
2
Help for R plot
Hi all, How to plot as the coordinate as in my attachment? I want to trim the coordinate and one of plot as the figure in attachment. Does any one have such example? Thanks. -------------- next part -------------- A non-text attachment was scrubbed... Name: Screen shot 2011-01-17 at 11.22.20 AM.png Type: image/png Size: 23908 bytes Desc: not available URL:
2012 Oct 02
2
Basic question about: <<- and method start with dot.
Dear list, When I read some source code, I find lot of place used symbol <<- , e.g. lastTime <<- newTime; What is the meaning here? Also, I find some method with the name start with dot, e.g. .RowStandardizeCentered = function(x) { div = sqrt( rowSums(x^2) ); div[ div == 0 ] = 1; return( x/div ); } What is the special meaning for the method name start with a dot? Thank you
2011 Sep 27
3
How can I check a package is installed or not?
Dear list, How can I detect a package is installed or not? If not, then install it. For example, in a script, I want to check the package DESeq is installed or not. If not, then I will using this script to install it. source("http://www.bioconductor.org/biocLite.R") biocLite("DESeq") The pseudo script would be like this: try: library("DESeq") catch:
2012 May 30
2
Simple example for High performance computing with R?
Dear list, I want to run two independent calculation (A, B) and then combined their results to do a plot in R. Before I just run calculation A first, then calculation B. It will take some times. I just have one server with multiple core. I noticed that there are some nice package in R for parallel calculation, such as parallel, multicore and snow. Also there is a book, O?Reilly ? ?Parallel R,