Displaying 4 results from an estimated 4 matches for "roc2".
Did you mean:
  rc2
  
2015 Feb 09
2
R CMD check: Uses the superseded package: ‘doSNOW’
...et the
following note:
> Uses the superseded package: ?doSNOW?
The fact that it uses the doSNOW package is correct as I have the
following example in an .Rd file:
> #ifdef windows
> if (require(doSNOW)) {
>     registerDoSNOW(cl <- makeCluster(2, type = "SOCK"))
>     ci(roc2, method="bootstrap", parallel=TRUE)
>     \dontrun{ci(roc2, method="bootstrap", parallel=TRUE)}
>     \dontshow{ci(roc2, method="bootstrap", parallel=TRUE, boot.n=20)}
>     stopCluster(cl)
> }
> #endif
> #ifdef unix
> if (require(doMC)) {
>...
2015 Feb 10
1
R CMD check: Uses the superseded package: ‘doSNOW’
...ckage: ?doSNOW?
>> The fact that it uses the doSNOW package is correct as I have the
>> following example in an .Rd file:
>>> #ifdef windows
>>> if (require(doSNOW)) {
>>>     registerDoSNOW(cl <- makeCluster(2, type = "SOCK"))
>>>     ci(roc2, method="bootstrap", parallel=TRUE)
>>>     \dontrun{ci(roc2, method="bootstrap", parallel=TRUE)}
>>>     \dontshow{ci(roc2, method="bootstrap", parallel=TRUE, boot.n=20)}
>>>     stopCluster(cl)
>>> }
>>> #endif
>>>...
2015 Feb 10
0
R CMD check: Uses the superseded package: ‘doSNOW’
...es the superseded package: ?doSNOW?
> The fact that it uses the doSNOW package is correct as I have the
> following example in an .Rd file:
> > #ifdef windows
> > if (require(doSNOW)) {
> >     registerDoSNOW(cl <- makeCluster(2, type = "SOCK"))
> >     ci(roc2, method="bootstrap", parallel=TRUE)
> >     \dontrun{ci(roc2, method="bootstrap", parallel=TRUE)}
> >     \dontshow{ci(roc2, method="bootstrap", parallel=TRUE, boot.n=20)}
> >     stopCluster(cl)
> > }
> > #endif
> > #ifdef unix
>...
2008 Sep 22
1
R-help Digest, Vol 67, Issue 23
...>
> Michael Dewey
> http://www.aghmed.fsnet.co.uk
>
>
------------------------------
Message: 23
Date: Sun, 21 Sep 2008 18:03:52 -0400
From: "DS" <ds5j@excite.com>
Subject: [R] r format questions
To: r-help@R-project.org
Message-ID: <20080921180352.6760@web005.roc2.bluetie.com>
Content-Type: text/plain
Hi,
1)   I have noticed that when I use the aggregate function it outputs numbers in the results. for example:
aggregate by product
    group.1       Aggregate
1    ProductA   1000400.00
2    ProductB   23232323.00
3    Missing      232323.00
is there a...