Re: [R] Precision of values > 53 bits

2017-07-24 Thread Jeff Newmiller
What an impressively zombified thread. Though wondering how 53 bits were supposed to fit into 32 might just warrant revivification. -- Sent from my phone. Please excuse my brevity. On July 20, 2017 5:33:34 AM PDT, peter dalgaard wrote: > >> On 10 Jan 2013, at 15:56 , S Ellison wrote: >> >> >

Re: [R] Loading Rcmdr

2017-07-24 Thread Jeff Newmiller
I don't know anything about Rcmdr, but perhaps you are forgetting or never knew that each x.y minor version starts a new package library, so any packages you had installed in the preceding minor version have to be reinstalled. -- Sent from my phone. Please excuse my brevity. On July 24, 2017 4

Re: [R] Loading Rcmdr

2017-07-24 Thread Mark Sharp
Jack, I do not use Rcmdr, but I installed the binary package version 2.3-2. It came right up when I then ran the following at the prompt (console output is appended without edits): > sessionInfo();library("Rcmdr");sessionInfo() R version 3.4.1 (2017-06-30) Platform: x86_64-apple-darwin15.6.0 (64

[R] Loading Rcmdr

2017-07-24 Thread Jack Talley
With the lastest version of R 3.4.1 I have not been able to loard Rcmdr. Advice please. Thank you, Jack Talley, PhD [[alternative HTML version deleted]] __ R-help@r-project.org mailing list -- To UNSUBSCRIBE and more, see https://stat.ethz.ch/

Re: [R] R: How to multiplying y-axis ticks value by 100?

2017-07-24 Thread Ted via R-help
Many thanks, Jim!!! >Jim Lemon < drjimle...@gmail.com >: >Have a look at axis.mult in the plotrix package. >Jim >>iPad via R-help < r-help@r-project.org > wrote: >> How to multiplying y-axis ticks value by 100 (without put the % symbol next >> to the number) here: >> plot (CI.overall,

Re: [R] I have been unable to run R from within QGIS on my Mac

2017-07-24 Thread Marco Silva
Excerpts from Sagar Dhiman's message of 2017-07-23 18:19:01 +0530: > I have tried to run R from within QGIS, But it show error "Missing > dependency.This algorithm cannot be run :-( > > This algorithm requires R to be run.Unfortunately, it seems that R is > not installedin your system, or it is no

[R] Compare output of Violin plot from ggplot2 and vioplot . Need Explanation

2017-07-24 Thread Mohammad Tanvir Ahamed via R-help
Hi,  I have made violin plot with both ggplot2 and vioplot package with same data.  The results and code are as follows.  ###  Loading data  data.melt <- dget("https://gubox.box.com/shared/static/rirth0eym114afwyjxwe128sjzipzdym.txt";) ###  Violin plot by library

Re: [R] cannot use package RcmdrPlugin.plotByGroup

2017-07-24 Thread Lu Wei
On 2017-7-24 20:29, Fox, John wrote: > ... As I already said, qqPlot() in the next version of the car > package will be able to plot by groups; the graphs will be in > separate panels, will have a common y-axis by default, and will show > a confidence envelope. They will not look like the graphs th

Re: [R] Ifelse statements and combining columns

2017-07-24 Thread Koustav Pal
That ifelse statement is a mess, it is missing brackets, comma separators between arguments and & or | between conditions. The bracket error points towards the invalid bracket you had in the second ifelse since it expects and yes and a no argument alongside conditions. ifelse(test = (dat$cond == "

Re: [R] cannot use package RcmdrPlugin.plotByGroup

2017-07-24 Thread Lu Wei
On 2017-7-24 3:11, Bert Gunter wrote: > > !!! > See here (or search on your own) for basic R tutorials to help you begin: > > https://www.rstudio.com/online-learning/#R > Very informative page, thank you. -- Regards, Lu Wei PGP key ID: 0x A12F EF75 92CC E1EA __

Re: [R] Ifelse statements and combining columns

2017-07-24 Thread Duncan Murdoch
On 24/07/2017 8:57 AM, Jeff Newmiller wrote: Not a reproducible example, so a bit of guessing here, but a) don't try to assign results to variables inside the ifelse. That is, remove all the single-equals signs and "test" variables. If you really need to conditionally assign variables then us

Re: [R] Ifelse statements and combining columns

2017-07-24 Thread Jeff Newmiller
Not a reproducible example, so a bit of guessing here, but a) don't try to assign results to variables inside the ifelse. That is, remove all the single-equals signs and "test" variables. If you really need to conditionally assign variables then use "if"... but chances are good you don't need

Re: [R] Ifelse statements and combining columns

2017-07-24 Thread Rui Barradas
Hello, Your ifelse statement is a mess. I cannot make sense of it. Let me try to explain where I've lost it. dat$cond <- ifelse(test = dat$cond == "cond1" This is already very bad, do you mean dat$cond == "cond1" ? Maybe you mean that condition OR the others below, but then there's one '|' mi

Re: [R] cannot use package RcmdrPlugin.plotByGroup

2017-07-24 Thread Fox, John
Dear Lu Wei, > -Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Lu Wei > Sent: Sunday, July 23, 2017 11:28 AM > To: r-h...@stat.math.ethz.ch > Subject: Re: [R] cannot use package RcmdrPlugin.plotByGroup > > On 2017-7-23 20:41, Fox, John wrote:> ... > >

[R] Ifelse statements and combining columns

2017-07-24 Thread Kirsten Morehouse
Hi everyone, I'm having some trouble with my ifelse statements. I'm trying to put 12 conditions within 3 groups. Here is the code I have so far: dat$cond <- ifelse(test = dat$cond == "cond1" | dat$cond == "cond2" | dat$cond == "cond3" dat$cond == "cond4" yes = "Uniform"

Re: [R] axis() after image.plot() does not work except if points() is inserted between

2017-07-24 Thread Marc Girondot via R-help
Thanks for the proposition. As you see bellow, par("usr") is the same before and after the points() (the full code is bellow): > par("usr") [1] -0.250 1.250 -0.167 1.167 > # if you remove this points() function, axis will show nothing. > > points(1.5, 1.5, type="p") > p2 <-