similar to: Selecting from a character vector with logical operators

Displaying 20 results from an estimated 100 matches similar to: "Selecting from a character vector with logical operators"

2004 May 13
0
MGCP channel problem
Hello I have a problem with my MGCP voice gateway. I use D-Link DG104S Boot PROM Version 3.0B38-D Firmware Version 3.0T86-D I tried asterisk v 0.7.2 and I am using latest CVS version now. When I dial a number very fast, or when I use a redial function, my asterisk receives coupled digits. My co-worker called number 245005111, these are a few lines of my debug. The identifier of first digit
2009 Aug 16
0
Win clients connection drops while copying large files, errors in logs
I have a problem with samba (3.2.3) not working properly with windows clients. I run a FC11 samba storage server, that has windows and mac client machines connecting to it. So far mac clients work. However windows client, whenever I try to install some application that is stored on the samba server, or even copy a very large file (few gbs) I get this in /var/log/messages and the file
2003 Feb 11
1
2.2.7a panic with VFS Audit when writing file (reading is ok)
Running SAMBA 2.2.7a compiled with Audit support, enabled on a share: [global] workgroup = HCAT server string = Samba Server for HCAT hosts allow = xxx.xxx. yyy.yyy.yyy. load printers = no log file = /var/log/log.%m max log size = 50 security = user encrypt passwords =
2005 Feb 23
1
Re: [R-SIG-Mac] Bug running pbinom() in R-GUI?
The real problem is that pbeta can take forever. That's bug #7153 and a fix is within reach. Morten
2005 Feb 01
2
IAX native transfers
I am having problems getting any form of call transfer working. I have reconfigured blind transfers to be #1 and assisted transfers to be *2 but these are not working. Looking at the wiki (http://www.voip-info.org/wiki-Asterisk+cmd+Transfer) it it does not mention IAX so I assume I have to use the native IAX transfer supported by Diax? I have tried using Diax but am getting a problem that after
2005 Mar 22
4
Feedback on CBMySql, MeetMe2 and web interface
I've had 50+ people download the web components, and other than reports of compile issues, I have not heard if this collection has worked for anyone. I do plan to keep updating the * applications and the web pages, but I have almost meet all of our internal requirements and wonder if anyone else is finding it usefull. My focus has been and will likely stay on the user interface, since I have
2005 Jun 28
2
permissions change from windows doesn't work
Hi, After three days of googling, searching in this list, reading parts of the pdf, and testing, I surrender: please help ! Summary: I'm running 3.0.10a (binary from www.sunfreeware.com) on Solaris 2.6 in standalone mode (security=user). I use ACLs on files. I cannot, from windows (w2k, wxp pro), add a user to the permissions of a file. Details: - The binary was compiled
2007 Dec 31
2
"and" without boolean operators
Salve, Thank you very much for your kind answer. Spelling correction works very well now. I have just one more question. I am using Xapian::QueryParser() to create the Query. The flags are: FLAG_PHRASE | FLAG_LOVEHATE | FLAG_WILDCARD If I search, lets say for "king queen" (without quotes), I get all documents with either "king" or "queen". Is there a chance to
2004 Feb 24
1
Backup Operators
Hi I've just upgraded to 3.0.2 from 2.2.8 and was hoping to use the Backup Operators group in Windows XP for backup of windows data directories. I set up a Linux 'backup' group and a 'backup' user who is a member of it and then mapped the backup group to 'Backup Operators' with type=d. The data directory on the wiindows machine (C:\Documents and Settings) is shared
2010 Aug 06
1
New bie question: Why use assert_equal when there are comparison operators in Rspec?
hi guys, I''m reading up on Rspec, Mocha and some related material to put BDD in my new rails app. I have also checked out Ryan Bates'' railscasts on rspec (that''s how I got to know about Mocha). Reading up on the Rspec''s main site, the main example in http://rspec.rubyforge.org/rspec/1.3.0/ does not show any use of assert_equals. Rather it just uses the
2008 Mar 31
1
operators %/% bug?
Dear all, I have come across a strange behavior of the %/% operator, and I wasn't sure if this was intended. i.e. a <- 1.2 b <- 1.0 (a-b) %/% 0.1 results in 1? Whereas 0.2 %/% 0.1 results in 2. Am I missing something obvious here? It seems to be consistent up to R 2.6.0 running in WinXP (haven't upgraded yet). Best, Ken This email message may contain
2016 Apr 29
0
[Patch] Add MS Visual Studio 2015 solution, add spaces around some operators
Hi Opus-ers! Could someone with a Windows machine and Microsoft Visual Studio 2015 check the attached patch for me? You can get the free Community Edition (license says we're allowed to use it because we're working on open-source stuff). Let me know if problems/questions :-) Orestes -------------- next part -------------- A non-text attachment was scrubbed... Name:
2007 Mar 08
2
Queue Announcements for Operators
Hi All I would like to be able to have an announcement played to an operator advising them of the queue the call came from before the call is pasted over to them, so they know how to greet the customer. Does anyone have any ideas or can point me to some resource which details this? Many Thanks in Advance. SP
2014 Aug 02
0
Samba 4.1 DC Account Operators permissions problem
There appears to be a bug in the samba 4.1 DC builtin group Account Operators permisssions. By definition, members of the Account Operators group can add, edit, and delete normal user accounts in the domain, except those for domain user accounts who are members of domain Account Operators, Administrators, Backup Operators, Print Operators Server Operators, and Domain Admins. This account is very
2005 Jun 14
1
operators as S4 methods
Dear all, I need to re-define some mathematical operators (+, *, /, etc) for an S4 class based on array. All references I have found (S Programming, Green Book) show how to define S3 methods for this (like in page 89 of S Programming for "-.polynomial"). What is the preferred S4 way for doing this? I hope I haven't missed some obvious piece of documentation. Many thanks, Iago
2011 Apr 10
1
deparse operators in expressions
Hi, I observed a slight problem in deparse(): it will add spaces around most operators except /. I wonder if this is easy to fix. I know this is quite trivial, but I will appreciate if / is not treated as an exception. Examples: > deparse(expression(1/1)) [1] "expression(1/1)" > deparse(expression(1+1)) [1] "expression(1 + 1)" > deparse(expression(1%in%1)) [1]
2013 Feb 07
1
It's a BUG or a Feature? Generating seq break comparing operators
Hello everybody: I get a strange behavior with seq, take a look at this: > msd <- seq(0.05,0.3, 0.01) > msd[13] [1] 0.17 > class(msd) [1] "numeric" > class(msd[13]) [1] "numeric" > typeof(msd[13]) [1] "double" now the problem: > msd[13] == 0.17 [1] FALSE It is strange only to me? Consider that: > 0.17 == 0.17 [1] TRUE and also > a
2003 Mar 13
1
apply() and unary operators
Hi everyone. What's going on here? > a <- matrix(1:4,2,2) > a [,1] [,2] [1,] 1 3 [2,] 2 4 > apply(a,2,sum) [1] 3 7 > apply(a,2,"+") [,1] [,2] [1,] 1 3 [2,] 2 4 > apply(a,1,"+") [,1] [,2] [1,] 1 2 [2,] 3 4 > help(apply) says that "+" should be quoted but is otherwise silent on unary
2005 Aug 24
0
(Fwd) Re: priority of operators in the FOR ( ) statement
Hi On 23 Aug 2005 at 12:03, Ravi.Vishnu at outokumpu.com wrote: > Dear All, > I spent an entire evening in debugging a small, fairly simple program > in R - without success. It was my Guru in Bayesian Analysis, Thomas > Fridtjof, who was able to diagonose the problem. He said that it took > a long time for him also to locate the problem. This program > illustrates in
2008 Mar 25
2
Combining logical operators to extract columns from a dataframe
Hi R-helpers, I have a dataframe (called data) with 100 columns, the columns of which are named with integers ranging from 1900 to 1999. I wish to extract those columns which names are >=1950 and <=1970. I tried: data2<-subset(data,select=(names(data)>=1950 & names(data)<=1970)) but that doesn't work. Any ideas? Thanks! Mark [[alternative HTML version deleted]]