Displaying 4 results from an estimated 4 matches for "ggmisc".
Did you mean:
gmisc
2006 Apr 29
3
Making R talk to Win/OpenBUGS in Linux (again)
I'm back!
I've just learned that, on a fully updated Fedora Core Linux5 sytem,
the working solution to access Winbugs under wine via the R package
"rbugs" no longer works. Here was my last post on this topic (with
the formerly working solution) from January.
http://finzi.psych.upenn.edu/R/Rhelp02a/archive/68497.html
Currently, what happens is that WinBUGS starts up, but just
2008 Nov 18
1
Wishlist - better object.size() function
Some time ago I came across the function object.size() to estimate the
size of an R object. I don't know if the behavior of the function is
intended to be quite "user unfriendly" as it is right now or if just
nobody was thinking/caring about it.
I have two suggestions to improve it:
- Why is it named object.size() and not just size()? The latter would be
far more intuitive and
2006 Mar 17
3
Collapsing levels of a factor
> x <- factor(1:3, labels = c("b" , "f", "minus"))
> x
[1] b f minus
Levels: b f minus
I want to change all "minus" to "b". I know that the simplest way to do this is
> levels(x) <- c("b", "f", "b")
and also that
> x[x == "minus"] <- "b"
> x <- factor(x)
2006 Mar 17
3
Collapsing levels of a factor
> x <- factor(1:3, labels = c("b" , "f", "minus"))
> x
[1] b f minus
Levels: b f minus
I want to change all "minus" to "b". I know that the simplest way to do this is
> levels(x) <- c("b", "f", "b")
and also that
> x[x == "minus"] <- "b"
> x <- factor(x)