similar to: help screens: typos, suggestions (PR#581)

Displaying 20 results from an estimated 10000 matches similar to: "help screens: typos, suggestions (PR#581)"

2000 Jul 10
3
help page typos (PR#599)
A couple of help page typos that I came across: 1. help(sample) Arguments: x: Either a (numeric, complex, character or logical) vector of more than one elements from which to choose, or a positive ^ [element] 2. help(delay) Description: `delay' creates a promise to evaluate the given expression in the
2000 Jul 09
1
minor typos in help pages (PR#598)
Dear R Team, A few monor typos in help pages that I noticed. Thank you very much. Rashid Nassar 1. help(gl) Examples: # First control, then treatment: gl(2,8, label=c("Ctnrl","Treat")) ^^^^ I assume "Cntrl" is meant. ========================================== 2. help(pmatch) Details: The behaviour
1999 Nov 10
2
R.bug.report (PR#315)
Again I would like to express my deepest appreciation to all those working so selflessly on the development of R for us all to use it freely (and it is such a joy to use!) Rashid Nassar == Possible bug: 1. boxplot() This is an old behavior that I had reported before, but as it is still there, it may not ba a bug (although it looks like one to me). "qfcut" is numeric, "st"
2000 Jul 13
0
typos, help package mva (PR#605)
Dear R Team, Some minor typos in help pages for package:mva Thank you. Rashid Nassar 1. help(kmeans) Details: [k-means? not sure about this] v The data given by `x' is clustered by the k-Means algorithm. When this terminates, all cluster centres are at to the mean of their
2000 Mar 13
3
problem with plot(...., xlim=c(5,0)) (PR#480)
plot(1:4,1:4,xlim=c(5,0),ylim=c(5,0)) shows axis labels as: | | | | | | 0 rather than | | | | | | 5 4 3 2 1 0 as I believe it used to do in some earlier version. Thank you for R. Rashid Nassar --please do not edit the information below-- Version: platform = i586-unknown-linux arch = i586
2000 Jun 02
1
problem loading packages (PR#559)
Dear R team, I had a strange problem that appeared suddenly, and which I'd like to to mention in case it is of interest (although I suspect that I may have unwittingly done something dumb: if so please accept my apology) > library(ctest) ## or any package other than "oz" that I tried Error in as.character(table) : Object ".Dyn.libs" not found > traceback() [1]
1999 Dec 26
3
coredump with plot(x,y,pch="+",cex=2.2) (PR#389)
Core dumped when plot() is used with pch="c" & cex > 2, e.g., plot(1,1, pch="+", cex=2.2) Thank you and best wishes for 2000! Rashid Nassar --please do not edit the information below-- Version: platform = i586-unknown-linux arch = i586 os = linux system = i586, linux status = major = 0 minor = 90.1 year = 1999 month = December day = 15 language = R
1999 Nov 20
1
seg.fault: 'print(aggregate(),n)' (digits= omitted) (PR#330)
Dear Sirs, I had the following (reproducible) problem: g1 <- gl(3,4) g2 <- gl(2,2,12) y <- rnorm(12) AA <- aggregate(y,list(g1,g2),mean) print(AA,2) # I should've said 'digits=2' but ... Segmentation fault (core dumped) # print(AA) and print(AA,digits=2) work as expected Many thanks, -Rashid Nassar --please do not edit the information below--
2000 Jun 25
1
dotplot() colors reversed (PR#580)
dotplot() colors are plotted (probably unintentionally?) in reverse order. x <- c(rep(1,3),rep(2,3),rep(3,3)) dotplot(x,groups=factor(x),col=x) # 1 plotted with col=3, etc. Thank you very much. Rashid Nassar --please do not edit the information below-- Version: platform = i586-pc-linux-gnu arch = i586 os = linux-gnu system = i586, linux-gnu status = major = 1 minor = 1.0
2001 Dec 10
1
boxplot labels incorrect when horizontal = TRUE (PR#1207)
#Example: y <- rnorm(10) group <- gl(2,5) plot(y ~ group, horizontal = TRUE) # BUG: default xlab & ylab interchanged plot(y ~ group, horizontal = FALSE) # OK: supplies correct default xlab & ylab # Using boxplot() instead of plot() omits default axis labels altogether # (not sure if this is intentional): boxplot(y ~ group, horizontal = FALSE) # no default axis labels supplied
1999 Dec 01
1
odd result of length() with factor arguments with NA (PR#354)
The following looks odd to me, but it may well be that I'm doing something I shouldn't: x <- c(rep("a",5),NA,rep("b",7)) X <- as.factor(x) length(X) # [1] 13 length(X[X=="a"]) # [1] 6 I expected 5 length(X[X=="b"]) # [1] 8 I expected 7 length(X[is.na(X)]) # [1] 1 yes length(X[X=="d"]) # [1]
1999 Nov 27
1
.Rprofile results in corruption of .RData? (PR#346)
It could be that the following may be due to something wrong that I managed to do (I cannot think what...) but I submit this report in case it is something that you want to know about (I have solved the problem by removing .Rprofile as I describe below). 1. After compiling/installing R 0.90 (an uneventful process), it worked perfectly the first time, and it read .RData written by the previous
2000 Jun 25
1
possible bug, anova.glm(), family="gaussian" (PR#579)
Dear R team, I don't get what I think I should get when using anova.glm() with family="gaussian" -- please ignore this and forgive me if this turns out to be another example of a fundamental misunderstanding on my part (a highly likely event!) For example: S <- as.factor(rep(c(rep("m",2),rep("f",2)),2)) A <-
2000 Aug 27
1
under certain conditions, model.matrix appears to lack one column (PR#646)
Dear R Team, # Summary of the problem: setting contrasts as > contrasts(g) <- contr.treatment or > contrasts(g) <- matrix(c(1,-1,0),ncol=1) (i.e. without quotes around `contr.treatment' or `contr.sum', etc.) and fitting an lm model without an intercept results in a model matrix that lacks one column. (I do ask for forgiveness if this is not a bug but is due to my
2003 Mar 15
3
round() seems inconsistent when rounding 5s
It may be my lack of unerstanding, but round() seems to me to give inconsistent results when rounding 5s as in the following examples? > round(1.45, 1) [1] 1.4 # OK > round(2.45, 1) [1] 2.5 # shouldn't this be 2.4? > round(1.05, 1) [1] 1.1 # 1.0 ? and signif(): > signif(2.445, 3) [1] 2.44 # OK > signif(3.445, 3) [1]
2001 Sep 23
1
plot and lm (2)
Thanks for your reply Nassar. What I really want is to overlay (like add=TRUE) the plots 1 and 2. With plots "at the same screen" I meant overlaid and not one beside the other, i.e., only one plot with all the points (1 to 10) in blue (or any other color), the points 5 to 9 in red and a regression line from points 5 to 9. Best regards, Antonio Olinto ----- Original Message -----
1999 May 21
0
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
1999 Mar 05
1
typos
R version: RW0632 1. gnlm package, nlr() error message: "Last global step failed to locate a point lower than x. Either x is an approximate local minimum of the function, the function is too non-linear for this algorithm, or steptl is too large." last line: steptol (also, should it read "steptol is too small?") 2. help(glm) " Fitting Generalized Linear Models
1999 Dec 07
1
Bug list summary (automatic post)
================================================= This is an automated summary of the status of the R-bugs repository. Note that this may be neither complete nor perfectly correct at any given instance: Not all bugs are reported, and some reported bugs may have been fixed, but the repository not yet updated. Some bug fixes are difficult to verify because they pertain to specific hardware or
2000 Aug 28
0
under certain conditions, model.matrix appears to lack one (PR#648)
On Mon, 28 Aug 2000, Rashid Nassar wrote: > Dear Professor Ripley, > > Thank you very much for your kind explanation. If I may lamely say > something in my defence, even as I apologize for my error: I mistook the > sentence "the (quoted) name of a function" to mean "optionally quoted" > because of the parentheses surrounding "quoted", and was