similar to: bug en funcion 'agrep'

Displaying 20 results from an estimated 140 matches similar to: "bug en funcion 'agrep'"

2010 Dec 13
3
check for item in vector
Dear R users, Suppose I have an vector like this: animal <- c("Tiger","Panda") I would like to know is there any function that check for the existence of certain item in a vector. e.g. > func("Tiger",animal) # check for the existence of "Tiger" TRUE > func("Acacia",animal) #Acacia is not an item of the animal vector FALSE I know
2010 Sep 21
2
plot xyz data in 2D
Hello, I want to make an 2D plot of .xyz data. So plot on x-axis and y-axis and use a color scale for the z. For every x-location along a cross section of the soil at several depths a resistivity must be displayed. This must result in a picture/graph which shows the resistivity for that cross section. The depths differ for each x-location. How can I do that? In fact it is an cross
2013 Dec 11
2
Allow insecure wide links = yes, wide links =yes; but I still can't "see" files from links to NFS mounts using 3.6.15, after upgrading from 2.2.8a
Hi friends, I updated our old sparc Solaris 9 server running samba 2.2.8a to 3.6.15 so that Mac 10.7+ users could access this file server. However now we can't see files in folders that are links to NFS mounts from other servers. I can access folders/files that are links outside the share but local to the samba server, but for links to folders that are mounted to the server via NFS from
2008 Oct 31
0
help with contrasts for a binomial 3-way GLM
Hi I am a new user the R and I am very grateful for all your help but....... I have a problem and I can't resolve yet. I am trying to get the contrasts for a binomial 3-way GLM (T= 4 temperature, t= 2 time and c= 2 substrate levels, plus treatment control) in total they are 17 treatments. I have tried with the glht but this function only work for 1-way GLM, acacia<-cbind(g,N-g)
2008 Mar 08
5
Fonts are too small in menu bar
Hi. Is there any chance I can increase the size of my fonts for the applications opened with wine? My resolution is 1600 x 1050 and the size seems to be from 5 to 6 pixels (or dpi) and it really hurts my eyes. All my linux apps are just ok at 10 pixels (or dpi) Thanks in advance Luis
2002 May 29
1
compile release 20020509 of Wine, failed! What's wrong? Please help...
compile release 20020509 of Wine, failed! What's wrong? Please help... ============================================================== make[1]: Leaving directory `/0/acacia2/tlbach/temp/wine-20020509/server' make[1]: Entering directory `/0/acacia2/tlbach/temp/wine-20020509/dlls' make[2]: Entering directory `/0/acacia2/tlbach/temp/wine-20020509/dlls/ntdll'
2000 Jul 15
3
Samba Passwords
I have a RH 6.0 server setup with accounts for about 1500 users (school), I use encrypted passwords. I would like users to be able to change their samba ('Windows networking') passwords and at the same time change their unix passwords (used for E-mail). I have the following in my smb.conf file as per the given example: unix password sync = Yes passwd program = /usr/bin/passwd %u passwd
2000 Jul 05
0
Sync Unix and Samba Passwords
I have a RH 6.0 server setup with accounts for about 1500 users (school), I use encrypted passwords. I would like users to be able to change their samba ('Windows networking') passwords and at the same time change their unix passwords (used for E-mail). I have the following in my smb.conf file as per the given example: unix password sync = Yes passwd program = /usr/bin/passwd %u passwd
2010 May 12
3
Calling a list element
Hello, i have the following list strsplit(as.character(Elecciones$Municipios),"\\.") [[1]] [1] "ANTIOQUIA" "ABEJORRAL" [[2]] [1] "META" "ACACIAS" [[3]] [1] "CASANARE" "AGUAZUL" [[4]] and I would like to make a vector of the first element of each of the list items, in this case ANTIOQUIA, META, CASANARE, etc . Do you know how
2005 May 10
2
E1 (Digium E100P) problem : B-channel succesfully restarted.
Hi! I have an Asterisk Box with one E1. This is connected with PSTN. My problem is that periodically the Asterisk console shows the following message. -- B-channel 0/1 succesfully restarted on span 1 -- B-channel 0/2 succesfully restarted on span 1 -- B-channel 0/3 succesfully restarted on span 1 -- B-channel 0/4 succesfully restarted on span 1 -- B-channel 0/5 succesfully restarted on span 1 --
2013 Dec 15
1
l can't "see" files on NFS mounts using 3.6.15, after upgrading from 2.2.8a
Hi Steve, thanks for jumping in, I've answered your questions below. ---------- Forwarded message ---------- From: steve <steve at steve-ss.com> To: samba at lists.samba.org Cc: Date: Thu, 12 Dec 2013 10:46:15 +0100 Subject: Re: [Samba] [Sambal can't "see" files on NFS mounts using 3.6.15, after upgrading from 2.2.8a On Thu, 2013-12-12 at 01:24 -0800, Linda W wrote:
2010 Nov 16
1
Bug in agrep computing edit distance?
The documentation for agrep says it uses the Levenshtein edit distance, but it seems to get this wrong in certain cases when there is a combination of deletions and substitutions. For example: > agrep("abcd", "abcxyz", max.distance=1) [1] 1 That should've been a no-match. The edit distance between those strings is 3 (1 substitution, 2 deletions), but agrep matches
2006 Jan 05
1
Pb with agrep()
Happy new year everybody, I'm getting the following while trying to use the agrep() function: > pattern <- "XXX" > subject <- c("oooooo", "oooXooo", "oooXXooo", "oooXXXooo") > max <- list(ins=0, del=0, sub=0) # I want exact matches only > agrep(pattern, subject, max=max) [1] 4 OK > max$sub <- 1 # One allowed
2004 Feb 13
1
RES: AGREP
"Marcos Sanches" <marcos.sanches at ipsos-opinion.com.br> wrote: Ls1<-length(s1) Ls2<-length(s2) for ( p in 1:ls1){ for (q in 1:ls2){ t1<-levenshteinFast(s1[p],s2[q]) ... Ls1=42000 Ls2=70000 I think I will wait for months untill this program ends. Do you have any sugestion to increase the speed? The first suggestion has to be "search HARD in the
2012 Dec 11
1
How do you use agrep inside a loop
Hi all. This is my first message at R-help...so I'm hoping I have some beginner's luck and get some good help for my problem! FYI I have just started using R recently so my knowledge of R is pretty preliminary. Okay here is what I need help with - I need to know how to use agrep in a for loop. I need to compare elements of a vector of names with other elements of the same vector.
2009 Jun 30
1
possible agrep bug; R 2.9.1, Mac OS X 10.5 (PR#13789)
Same behavior was noted on R 2.9.0 OS X and WIndows. > t(sapply(seq(0.01, .99, length=20), function(x) c(x, length(agrep("Staatssekretar im Bundeskanzleramt","Bundeskanzler",max.distance=x))))) [1,] 0.01000000 0 [2,] 0.06157895 0 [3,] 0.11315789 0 [4,] 0.16473684 0 [5,] 0.21631579 0 [6,] 0.26789474 0 [7,] 0.31947368 0 [8,] 0.37105263 0 [9,]
2010 Nov 09
1
agrep pmatch recursive???
Hello R Helpers, Business - 64 bit windows 7, R 2.11.1 I am trying to match the character contents of one list, called 'exclude', to those of a second list, called 'dataset' dataset is a list of file names with folder locations, and looks like this when called: > dataset [1] "A/10-10-29a-13.cdf" "A/10-10-29a-14.cdf" "A/10-10-29a-15.cdf"
2010 Nov 17
2
Bug in agrep computing edit distance?
I posted this yesterday to r-help and Ben Bolker suggested reposting it here... Dickison, Daniel <ddickison <at> carnegielearning.com> writes: > > The documentation for agrep says it uses the Levenshtein edit distance, > but it seems to get this wrong in certain cases when there is a > combination of deletions and substitutions. For example: > > >
2004 Feb 11
6
AGREP
Hi all, I have two questions 1 - I have the version 1.4.1 of R, and it doesn't have the 'agrep' function in the base library. Is there a way to make this funcion avaliable in R 1.4.1? I mean, how to 'copy' it from R 1.8.1 and 'paste' it in R 1.4.1? 2 - The AGREP function doesn't give me the Levenshtein distance (edit distance). Is there a function in R that does
2009 Mar 20
3
OpenSIPS on CentOS
Hello, I've been looking into OpenSIPS to see if it's a worthwhile addition to our setup. We're currently running a cluster, using Heartbeat, between two servers. It works well but I'm interested in seeing if we can improve it. My manager heavily uses RPM's for installations rather than source, particularly using yum to update. I'm trying to actually install OpenSips via