Displaying 20 results from an estimated 2000 matches similar to: "Major Platform Discrepancies"
2015 Jan 23
1
:: and ::: as .Primitives?
Hi,
On 01/23/2015 07:01 AM, luke-tierney at uiowa.edu wrote:
> On Thu, 22 Jan 2015, Michael Lawrence wrote:
>
>> On Thu, Jan 22, 2015 at 11:44 AM, <luke-tierney at uiowa.edu> wrote:
>>>
>>> For default methods there ought to be a way to create those so the
>>> default method is computed at creation or load time and stored in an
>>>
2009 Mar 30
1
duplicated fails to rise correct errors (PR#13632)
Full_Name: Wacek Kusnierczyk
Version: 2.8.0 and 2.10.0 r48242
OS: Ubuntu 8.04 Linux 32 bit
Submission from: (NULL) (129.241.110.161)
In the following code:
duplicated(data.frame(), incomparables=NA)
# Error in if (!is.logical(incomparables) || incomparables)
.NotYetUsed("incomparables != FALSE") :
# missing value where TRUE/FALSE needed
the raised error is clearly not the
2015 Jan 22
5
:: and ::: as .Primitives?
On Thu, Jan 22, 2015 at 11:44 AM, <luke-tierney at uiowa.edu> wrote:
>
> For default methods there ought to be a way to create those so the
> default method is computed at creation or load time and stored in an
> environment.
We had considered that, but we thought the definition of the function
would be easier to interpret if it explicitly specified the namespace,
instead of
2008 Sep 12
1
match and incomparables
Hello,
I was playing around with the newly implemented 'incomparables' argument
in 'match' and realized the argument does not behave anything like I
expected. Can someone explain what is going on here? Sorry if I'm
misreading the documentation.
> match(1:3, 1:3, incomparables=1)
[1] NA 2 3 # This seems right, the 1 in 'x' is 'incomparable'
>
2016 May 09
2
Regression in match() in R 3.3.0 when matching strings with different character encodings
Hi
I think the following behavior is a regression from R 3.2.5:
> match(iconv( c("\u00f8", "A"), from = "UTF8", to = "latin1" ),
"\u00f8")
[1] 1 NA
> match(iconv( c("\u00f8"), from = "UTF8", to = "latin1" ), "\u00f8")
[1] NA
> match(iconv( c("\u00f8"), from = "UTF8",
2001 Nov 20
2
is match slow?
I'm doing
m <- match(matriz, origen, 0)
where matriz is a 270x900 matrix and
origen a 11675 elements vector, and is taking
a very long time.
Is match a function
implemented in C? If not, would a C
code be faster?
Thanks
Agus
Dr. Agustin Lobo
Instituto de Ciencias de la Tierra (CSIC)
Lluis Sole Sabaris s/n
08028 Barcelona SPAIN
tel 34 93409 5410
fax 34 93411 0012
alobo at ija.csic.es
2004 Apr 12
1
question on isoMDS
Hello everyone,
I have a question on isoMDS.
My data set (of vegetation) with 210 samples is in this way:
Rotfoehrenau Lavendelweidenau Silberweidenau ....
067_Breg.7 0 2 0 ....
071_Dona.4 0 2 6 ....
...
I want to do an isoMDS-analysis with the dissimilarity index
2010 Jun 29
2
POSIXlt matching bug
I came across the below mis-feature/bug using match with POSIXlt objects
(from strptime) in R 2.11.1 (though this appears to be an old issue).
> x <- as.POSIXlt(Sys.Date())
> table <- as.POSIXlt(Sys.Date()+0:5)
> length(x)
[1] 1
> x %in% table # I expect TRUE
[1] FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE FALSE
> match(x, table) # I expect 1
[1] NA NA NA NA NA NA NA NA
2015 Aug 01
2
OT - parted guidance
On Sat, Aug 1, 2015 at 3:34 PM, Robert Nichols
<rnicholsNOSPAM at comcast.net> wrote:
> On 08/01/2015 12:05 PM, Chris Murphy wrote:
>>
>> parted fs resize is deprecated.
>> http://savannah.gnu.org/forum/forum.php?forum_id=6837
>> parted fs move can only move a partition into free space
>> https://www.gnu.org/software/parted/manual/html_node/move.html
>>
2017 Apr 07
2
[Eaton 5S 1500] overvoltage shut down?
Dear all,
maybe not strictly a NUT question but I can't imagine a better place to
ask, hope that's ok.
last night we had what looked like a power spike and 3 machines plugged
into 2 Eaton UPS went down instantly. I heard the click the UPS makes when
it shuts the load on the ports and then shuts itself down (ie same thing if
I simulate with upsmon -fsd). The machines instantly came back,
2008 May 08
1
[PATCH] Typo in 'unique' help page (PR#11401)
---
src/library/base/man/unique.Rd | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/library/base/man/unique.Rd b/src/library/base/man/unique.Rd
index a8397c7..4664a34 100644
--- a/src/library/base/man/unique.Rd
+++ b/src/library/base/man/unique.Rd
@@ -29,7 +29,7 @@ unique(x, incomparables = FALSE, \dots)
\item{x}{a vector or a data frame or an array or
2010 Mar 24
1
Deleting duplicate rows in a matrix at random
Hello,
I am relatively new to R, and I've run into a problem formatting my data for
input into the package RankAggreg.
I have a matrix of gene titles and P-values (weights) in two columns:
KCTD12 4.06904E-22
UNC93A 9.91852E-22
CDKN3 1.24695E-21
CLEC2B 4.71759E-21
DAB2 1.12062E-20
HSPB1 1.23125E-20
...
The data contains many, many duplicate gene titles, and I need to remove all
but one of
2003 Dec 26
1
re| Dr Ward on List protocol
"Andrew C. Ward" <acward at uqconnect.net.au> :
>With respect to 'tone' and 'friendliness', perhaps all that
>is meant or needed is that people be polite and respectful.
>I shake my head as often at rude answers
Oh, by gosh, by golly.
I don't think an occasional dose of 'real life', via a jab from the
Professor, will cause any lasting harm
2012 Sep 27
3
Keep rows in a dataset if one value in a column is duplicated
Hi,
I have a data set of observations by either one person or a pair of people.
I want to only keep the pair observations, and was using the code below
until it gave me the error " $ operator is invalid for atomic vectors". I am
just beginning to learn R, so I apologize if the code is really rough.
Basically I want to keep all the rows in the data set for which the value of
2011 Oct 05
1
unique possible bug
Hi,
I am trying to read in a rather large list of transactions using the
arules library. It seems in the coerce method into the dgCmatrix, it
somewhere calls unique. Unique.c throws an error when n > 536870912;
however, when 4*n was modified to 2*n in 2004, the overflow protection
should have changed from 2^29 to 2^30, right? If so, how would I
change it in my copy? Do I have to recompile
2012 Dec 08
1
namespace S3 and S4 generic imports cannot both be satisfied:
PkgA wishes to write a method for 'unique' on S4 class 'A'. ?Methods indicates
that one should
setGeneric("unique")
setClass("A")
unique.A <- function(x, incomparables=FALSE, ...) {}
setMethod(unique, "A", unique.A)
Both S3 and S4 methods need to be exported in the NAMESPACE
import(methods)
S3method(unique, A)
2016 Dec 05
5
[Release-testers] [Openmp-dev] [4.0 Release] Schedule and call for testers
On Mon, Dec 5, 2016 at 12:02 PM, Renato Golin <renato.golin at linaro.org> wrote:
> On 5 December 2016 at 19:56, Hans Wennborg <hans at chromium.org> wrote:
>> I'd like to avoid 4.1 because of the potential for confusion about
>> whether it's a major release (as it would have been under the old
>> scheme) or a patch release.
>
> But if the versioning
2005 Mar 14
1
OT: Recommendation for Dynamic DNS on Meshbox?
I'm going to do a deployment of LocustWorld MeshBoxes in some of our remote
locations. Build 90 comes with Asterisk 1.0, and our plan is to use the
MeshBoxes as a WAP for non-Asterisk uses but also to add a 2nd NIC to deploy
Snom's in the remote location. This works fine (was suprisingly easy to do),
and I have the Meshbox running Asterisk and IAX'ing to our primary no
problem. They
2015 Jun 03
2
iMAC does not shutdown
Hi everybody!
It has been a journey but I almost manage to make my UPS properly
communicate.
This is the config:
UPS Mecer/Mustek 2000 VA connected via USB with blazer_usb driver.
MASTER Raspberry PI-1
SLAVE Raspberry PI-2
SLAVE iMac OSX 10.10.3
I can get access to the UPS from any of the three devices successfully.
Problems:
1. When I launch /usr/local/ups/sbin/upsmon -c fed for testing I see
2016 Jun 08
1
Trivial patch for merge.Rd
Hi all,
After replying to r-help earlier today on the merge() related thread, I noted a trivial grammatical error in the description for the 'suffixes' argument in it's help file.
A patch against the current SVN trunk version of merge.Rd in ..library/base/man is attached and pasted here:
--- merge1.Rd 2016-06-08 13:34:35.000000000 -0500
+++ merge2.Rd 2016-06-08 14:03:34.000000000