search for: digts

Displaying 8 results from an estimated 8 matches for "digts".

Did you mean: digits
2008 Apr 25
2
Differentiate alphanumeric vs numeric strings
...t not the ones that have alphanumeric names such as "everyone". Using RODBC I am easily able to create a character vector of the names of the tables. Is there a function that can differentiate values consisting only of digits (numerics) as opposed to ones that contain letters (and perhaps digts as well)? I am sure there is. What is it and where should I have found it? -- Farrel Buchinsky GrandCentral Tel: (412) 567-7870 [[alternative HTML version deleted]]
2018 Mar 12
1
Equivalent of gtools::mixedsort in R base
x <- c( "a1", "a10", "a2" ) y <- c( "b10", "b2", "a12", "ca1" ) DF <- expand.grid( x = x, y = y ) # randomize set.seed( 42 ) DF <- DF[ sample( nrow( DF ) ), ] # missing from gtools mixedrank <- function( x ) { seq.int( length( x ) )[ gtools::mixedorder(x) ] } o <- do.call( order, lapply( DF, mixedrank ) )
2009 Nov 23
3
Please some enlightment on ENUM !!
Hello all you Gurus out there! Please could you explain something to me: Currently I try to get ENUMLOOKUP() working. Naturally I do all the testing with my own number. I registered my number at e164.org I paid for registration of my number at a registration agent for e164.arpa (I know, I don't need both. I just did the .arpa registration first and later discoverd the free .org service....)
2018 Mar 12
0
Equivalent of gtools::mixedsort in R base
??? > y <- sort( c("a1","a2","a10","a12","a100")) > y [1] "a1" "a10" "a100" "a12" "a2" > mixedsort(y) [1] "a1" "a2" "a10" "a12" "a100" **Please read the docs!** They say that mixedsort() and mixedorder() both take a **single
2009 Nov 12
1
no valid partitiontables anymore
Hi, recently I had to shut down an iscsi-raid an the connected servers. After the reinstallation and changing the ip config to match our new lan design, I can login to the iscsi device, the volumes are there and I can establish an iscsi link to some volumes. But, some other volumes on the iscsi device are reported with an invalid partition table or that they can't be mounted. e.g.: fdisk
2014 Mar 24
0
ADS data crippled after joining Samba into active MS domain
Hi together, after joining Samba 4.1.6 into our domain with 2 MS Win2008 R2 DCs on last Friday, we had got 2 accidents: 1. one of our users couldn't access his Exchange account any more (the relation to the correct mailbox database was empty) 2. Exchange 2010 Outlook Web Access (OWA) fails today on Monday with following error message: [PS] C:\Windows\system32>Get-OwaVirtualDirectory
2006 May 01
2
Pasting data into scan()
The file TENSILE.DAT from the Hand et al "Handbook of Small Data Sets" looks like this: 0.023 0.032 0.054 0.069 0.081 0.094 0.105 0.127 0.148 0.169 0.188 0.216 0.255 0.277 0.311 0.361 0.376 0.395 0.432 0.463 0.481 0.519 0.529 0.567 0.642 0.674 0.752 0.823 0.887 0.926 except that my mail client has replaced the tab separators by blanks. If I paste this data into R 2.2.1 what I get is
2018 Mar 12
7
Equivalent of gtools::mixedsort in R base
Hi, Searching for functions that would order strings that mix characters and numbers in a "natural" way (ie, "a1 a2 a10" instead of "a1 a10 a2"), I found the mixedsort and mixedorder from the gtools package. Problems: 1- mixedorder does not work in a "do.call(mixedorder, mydataframe)" call like the order function does 2- gtools has not been updated in 2.5