Re: [R] use AnnBuilderSourceUrls with local path insted of ftp adress

2007-08-16 Thread John Zhang
I want to build my own GO package using the function GOPkgBuilder of AnnBuilder. It uses AnnBuilderSourceUrls to collect data from different ftp sites. These data are not complete for my organism, so I would like to change the ftp adresses to a local one. The changing itself is working but

Re: [R] tcltk programming guide

2005-08-11 Thread John Zhang
Go to http://bioinf.wehi.edu.au/~wettenhall/RTclTkExamples/. There are good examples. X-Original-To: [EMAIL PROTECTED] Delivered-To: [EMAIL PROTECTED] X-Virus-Scanned: by amavisd-new at stat.math.ethz.ch Mime-Version: 1.0 (Apple Message framework v733) To: R-help@stat.math.ethz.ch From: Simone

[R] Re: datalist

2004-09-14 Thread John Zhang
Hi, The following is a cut/paste from http://developer.r-project.org/200update.txt: ... 3) When a package is installed, all the data sets are loaded to see what they produce. If this is undesirable (because they are enormous, or depend on other packages that need to be installed

Re: [R] Regexpr with .

2003-08-14 Thread John Zhang
Try regexpr(\\., Female.Alabama) and gsub(\\., ,, Female.Alabama) X-Sybari-Trust: 9293cd92 d90ef28b 235e1558 093d From: Thompson, Trevor [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Wed, 13 Aug 2003 10:46:45 -0400 MIME-Version: 1.0 X-Virus-Scanned: by amavisd-milter (http://amavis.org/)

Re: [R] rbind question

2003-07-08 Thread John Zhang
How about foo - c(1,2,3) bar - matrix(rep(foo, 5), ncol = length(foo), byrow = TRUE) Date: 8 Jul 2003 15:58:25 +0200 From: David Andel [EMAIL PROTECTED] To: [EMAIL PROTECTED] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-milter (http://amavis.org/)

Re: [R] tkexit

2003-03-06 Thread John Zhang
Would tkdestroy() work for you? Date: Thu, 6 Mar 2003 11:33:05 -0300 (ART) From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Virus-Scanned: by amavisd-milter (http://amavis.org/)

[R] Re: A tcltk question

2003-02-25 Thread John Zhang
Hi, I am trying to create a light-weight window with no border and title bar. The following code does not work for me. base - tktoplevel() tkwm.overrideredirect(base, TRUE) (or FALSE) Could someone help me out? Thanks. Jianhua Zhang Department of Biostatistics Dana-Farber Cancer Institute

Re: [R] Tcl/Tk support is not available on this system.

2003-02-11 Thread John Zhang
You probably do not have the tcl/tk libraries on which R tcltk package relies. tcl/tk can be downloaded from the web. From: Forbeck, Doug (NIH/NCI) [EMAIL PROTECTED] To: '[EMAIL PROTECTED]' [EMAIL PROTECTED] MIME-Version: 1.0 X-Virus-Scanned: by amavisd-milter (http://amavis.org/)

Re: [R] Built-in R GUI type features

2003-01-16 Thread John Zhang
Tow packages (widgetTools and tkWidgets) in www.bioconductor.org web site may be of interest to you. widgetTools allows users to build widgets using R (without having to know any tcl/tk or R tcltk command). tkWidgets contains widgets for data import, file/object selection All: The

Re: [R] installing the XML package

2003-01-16 Thread John Zhang
You need to install libxml. Read the doc for XML package for more information. From: Susan J. Miller [EMAIL PROTECTED] X-Accept-Language: en MIME-Version: 1.0 To: [EMAIL PROTECTED] Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Virus-Scanned: by

[R] Re: Embedding windows in a text widget

2003-01-03 Thread John Zhang
Could someone tell me how to embed windows in a text box using tkcreate command of R tcltk package? I tried the following and was not successful; base - tktoplevel() text - tktext(base, width = 30, height = 10) tkpack(text) button - tkbutton(text, text = try) tkcreate(text, window, end, window =