Re: [R] typo in read.table and count.fields?

2003-01-31 Thread Peter Dalgaard BSA
Claudio Agostinelli [EMAIL PROTECTED] writes: It seems that in read.table and count.fields there is a typo in the quote parameter. read.table(file, header = FALSE, sep = , quote = \', dec = ., row.names, col.names, as.is = FALSE, na.strings = NA, colClasses = NA,

[R] Varying texts in expression(paste())

2003-01-31 Thread Morten Sickel
Hi, I am using R a lot to make plots relating to radioactivity, I am often using expression() to label the plots with nuclide names written with superscripts, e.g. expression(paste(Releases of , { }^{99},Tc, (TBq/year)))-ywtext But, is there any simple way to change the number and name

RE: [R] Varying texts in expression(paste())

2003-01-31 Thread Winfried Theis
Hi, I had a similar problem last year and Thomas Lumley helped me a lot on this. I needed to replace some variables by their values in a quite complicated text expression. Here is what Thomas suggested: quote Thomas Lumley on In your example you wanted b and c to be elements of a vector. They

[R] RODBC Sys.sleep

2003-01-31 Thread Christian Schulz
Hi, for a real-time tracking i fetch the data with Sys.sleep in a loop, but with the newest version of RODBC the TDX MySQL Driver connect pop every time intervall up. Is it possible to disable this, until now i have no success find anything ? MySQL 3.23.44 , RODBC 1-0-1,R.1.6.2,W2K many

[R] Library for GUI?

2003-01-31 Thread Francisco do Nascimento Junior
Are there some library for to make graphic interface with buttons, fields, menus??? Tks, Francisco. ^^ Francisco Júnior, Computer Science - UFPE-Brazil One life has more value that the world whole ^^

Re: [R] Decreasing my personal entropy ...

2003-01-31 Thread John Fox
Dear Bert, At 08:45 AM 1/31/2003 -0500, Gunter, Bert wrote: R-Listers: A very minor -- and maybe silly -- question just for personal enlightenment. In S (either R or S-Plus, AFAIK) when one types or pastes a trellis graphics command into the commands/console window, the graph is automatically

Re: [R] Library for GUI?

2003-01-31 Thread Christian Schulz
library(tcltk) library(RGtk) christian - Original Message - From: Francisco do Nascimento Junior [EMAIL PROTECTED] To: R-help [EMAIL PROTECTED] Sent: Friday, January 31, 2003 3:02 PM Subject: [R] Library for GUI? Are there some library for to make graphic interface with buttons,

Re: [R] Decreasing my personal entropy ...

2003-01-31 Thread Douglas Bates
Gunter, Bert [EMAIL PROTECTED] writes: R-Listers: A very minor -- and maybe silly -- question just for personal enlightenment. In S (either R or S-Plus, AFAIK) when one types or pastes a trellis graphics command into the commands/console window, the graph is automatically produced:

[R] svm regression in R

2003-01-31 Thread Christoph Helma
Hallo, I have a question concerning SVM regression in R. I intend to use SVMs for feature selection (and knowledge discovery). For this purpose I will need to extract the weights that are associated with my features. I understand from a previous thread on SVM classification, that predictive

[R] TukeyHSD

2003-01-31 Thread C-G Pettersson
Hello everybody! I´m working with a dataset from eleven field trails on barley fertilization. I use R 1.6.2 (Windows) It is quite easy to fit aov() objects to the dataset. The call: (l1t4y.aov - aov(Yield ~ Trial + Treatment, data=led1t4b)) Results in an object with this anova table:

Re: [R] TukeyHSD

2003-01-31 Thread ripley
You implicitly (probably) used na.omit on your dataset, and it added an na.action attribute to the data frame. Try not doing that (e.g. bu using na.action = na.fail and search the archives for the same question about model.tables). Are there any missing values in your dataset? If so, you should

RE: [R] Decreasing my personal entropy ...

2003-01-31 Thread Warnes, Gregory R
Lattice plots and trellice plots are actually displayed by thier 'print' methods. So, to get ta plot to be displayed in a non-interactive context, such as a script, explicitly call print on the results of the plot command. -Greg -Original Message- From: Gunter, Bert To: R-Help (E-mail)

[R] Multiple xyplot on a page

2003-01-31 Thread Yang, Richard
Dear all; I have a set of 5 xyplots each with 8 panels and wish to place 2 on a letter-sized page. I tried using pdf() to specify paper size and plot size: pdf(file = fig1b.pdf, paper = letter, onefile = FALSE, width = 5, height = 5, family=Helvetica) par(mfrow=c(1,2)) but it did not

[R] Fonts in expression(paste)

2003-01-31 Thread Suzanne E. Blatt
Hello. I'm trying to change the fonts of my text. If I have 'expression(paste)' included (to get scientific symbols), the font= doesn't take effect. Is there a way around this? Thanks, Suzanne __ The NEW Netscape 7.0 browser is

[R] Problems with boot package (empinf returns NA)

2003-01-31 Thread Ernesto Jardim
Hi I'm using boot package for some analysis on linear regression coeficients. My problem is that I can not compute bca intervals, I get an error message bca.ci(blm8901,index=1) Error in if (!all(rk 1 rk R)) warning(Extreme Order Statistics used as Endpoints) : missing value where

Re: [R] Fonts in expression(paste)

2003-01-31 Thread Uwe Ligges
Suzanne E. Blatt wrote: Hello. I'm trying to change the fonts of my text. If I have 'expression(paste)' included (to get scientific symbols), the font= doesn't take effect. Is there a way around this? Thanks, Suzanne ?plotmath helps: plain(x) draw x in normal font bold(x) draw x in bold

RE: [R] Multiple xyplot on a page

2003-01-31 Thread Liaw, Andy
The help page for print.trellis should give you some hints. Andy -Original Message- From: Yang, Richard [mailto:[EMAIL PROTECTED]] Sent: Friday, January 31, 2003 12:50 PM To: R-Help (E-mail) Subject: [R] Multiple xyplot on a page Dear all; I have a set of 5 xyplots

Re: [R] (no subject)

2003-01-31 Thread kjetil brinchmann halvorsen
On 30 Jan 2003 at 18:17, pavel koulikov wrote: You should use a subject line. To put to lines on the same plot: plot(x~y, type=l) lines(z ~ v) Kjetil Halvorsen Hi I have 4 vectors x,y,z,v I need 2 graphs (x~y,z~v) on the same plot. I mean two lines on the same plot - blue and red. I

Re: [R] Multiple xyplot on a page

2003-01-31 Thread Deepayan Sarkar
See ?print.trellis On Friday 31 January 2003 11:50 am, Yang, Richard wrote: Dear all; I have a set of 5 xyplots each with 8 panels and wish to place 2 on a letter-sized page. I tried using pdf() to specify paper size and plot size: pdf(file = fig1b.pdf, paper = letter, onefile =

[R] floating point question

2003-01-31 Thread Bob Gray
Does anyone know precisely what is different about the arithmetic and/or storage of double precision floating point to produce the following differences between the Sun and Windows versions (Splus 6 on the same Windows 2000 machine gives the same results as Solaris)? R 1.6.1, Sun Solaris, gcc +

Re: [R] floating point question

2003-01-31 Thread Deepayan Sarkar
Might have something to do with .Machine$double.eps on the respective machines. From help(.Machine), double.eps: the smallest positive floating-point number `x' such that `1 + x != 1'. It equals `base^ulp.digits' if either `base' is 2 or `rounding' is 0; otherwise, it is

Re: [R] floating point question

2003-01-31 Thread Prof Brian D Ripley
It's a difference in the `libc'. Asking for more precision than the arithmetic has is asking for fairly random results. The differences are as likely to be in the *printing* as in the computations. On Fri, 31 Jan 2003, Bob Gray wrote: Does anyone know precisely what is different about the

[R] png()/jpeg()

2003-01-31 Thread Wilkinson, Mark
When I execute the following code, it works just like I want it to: three pages of nine (or fewer) plots. However, when I execute the code with the first and last lines uncommented, I get three pages (files), but the 2nd 3rd pages have overlapping plots. It's like a new page wasn't created.

Re: [R] png()/jpeg()

2003-01-31 Thread ripley
It really would help to know the platform here: Windows and Unix have separate implementations. On Windows with R 1.6.2 there is no overlap that I can see. Also the version of R, please. On Fri, 31 Jan 2003, Wilkinson, Mark wrote: When I execute the following code, it works just like I want

RE: [R] png()/jpeg()

2003-01-31 Thread Wilkinson, Mark
Sorry: _ platform i686-pc-linux-gnu arch i686 os linux-gnu system i686, linux-gnu status major1 minor6.1 year 2002 month11 day 01 language R Mark Wilkinson Informatics Analyst St. Jude Children's Research Hospital Department of Pharmaceutical Sciences

[R] Version 0.8.0 of the gregmisc package is now available

2003-01-31 Thread Warnes, Gregory R
Version 0.8.0 of the gregmisc package is now (or will shortly be) available on CRAN. New in this release: - Enhanced and bug-fixed 'CrossTable' function (contributed by Marc Schwartz) - Augmented the 'barplot2' function with an 'add' argument to allow for the addition of a barplot to an

[R] Testing ``= in R

2003-01-31 Thread Maria N Kocherginsky
Hello, I've encountered the following: n_500 tau_.95 (n*(1-tau)) [1] 25 (n*(1-tau))=25 [1] FALSE (n*(1-tau))==25 [1] FALSE I'm using UNIX R Version 1.4.0, and also tested in out in Windows 1.6.0. Is this a bug? Masha __ [EMAIL PROTECTED]

Re: [R] Testing ``= in R

2003-01-31 Thread Thomas Lumley
On Fri, 31 Jan 2003, Maria N Kocherginsky wrote: Hello, I've encountered the following: n_500 tau_.95 (n*(1-tau)) [1] 25 (n*(1-tau))=25 [1] FALSE (n*(1-tau))==25 [1] FALSE I'm using UNIX R Version 1.4.0, and also tested in out in Windows 1.6.0. Is this a bug? No. You can't

[R] Do not understand: log10(-0.04)

2003-01-31 Thread Thomas Hoffmann
I ran into some mysterious crashes of R and when stepping through the code it appeared to me that a call to GScale(0.0,1.0,1,dd) (as e.g. in do_plot_new(), plot.c:458 ) possibly with min=-0.04 runs into (graphics.c:1911) Rf_gpptr(dd)-logusr[0] = Rf_dpptr(dd)-logusr[0] = log10(min); which

[R] find max of implicit function OR inversion of 2D mappings.

2003-01-31 Thread Vadim Ogranovich
Dear R-Users, I am looking for a help to deal with the following computational problem: I have a mapping f(x, y) - (u, v) of [0,1]*[0,1] - R^2. The mapping is given by tabulating f(x,y) on a uniform 2D grid and is assumed to be interpolatable in between the grid points (the number of points on

[R] Trouble with optim

2003-01-31 Thread Damon Wischik
I am having trouble with optim. It claims to have converged to a minimum, yet it has in the course of the optimization visited many points which are closer to optimal. I would be grateful for any explanation of this behaviour. I'm trying to estimate the parameters in the model X ~

[R] r-bugs web site temporarily down

2003-01-31 Thread Peter Dalgaard BSA
The machine that serves r-bugs.biostat.ku.dk has been taken off the net. A new machine is planned to replace it, but we need to reconfigure the DNS, which is not going to happen until Monday. The mail interface should still work. -- O__ Peter Dalgaard Blegdamsvej 3 c/

[R] Read.table problem

2003-01-31 Thread ptremb17
Hi ! I am new to R, and using the MAC version onto Mac OS 9.1. My question concerns the problem I encounter when I try to read some data I have using the read.table function. I always get an error of type : Error in scan(file = file, what = what, sep = sep, quote = quote, dec = dec, :