search for: 456

Displaying 20 results from an estimated 818 matches for "456".

Did you mean: 256
2010 Nov 09
0
Preservar el nombre de un nodo en una lista después de unir dos listas diferentes
Pregunta básica sobre listas, tengo dos listas: anoml (compuesta por 67 dataframes)  y datos (67 vectores) > str(anoml) List of 67 $ Anom_e1751: num [1:456] -0.874 -0.874 -0.874 -0.874 -0.66 ... $ Anom_e1756: num [1:456] -0.984 -0.984 -0.984 -0.874 -0.464 ... $ Anom_e1773: num [1:456] -0.875 -0.95 -0.95 -0.838 -0.727 ... ... str(datos) List of 67 $ e1751.PtoLaCruz.cr.txt          :'data.frame': 456 obs. of  4 variables:  ..$ A  : int [1:456] 1...
2011 Aug 09
2
Log entrys after upgrade 3.6.0
Hi ! I upgraded to 3.6.0 on my Ubuntu 8.04 64 bit and since change to max protocol=SMB2 and nmbd/smbd restarts I get many of those "NT_STATUS_END_OF_FILE" messages /------------------------------------- [2011/08/09 15:55:11.130751, 1] smbd/process.c:456(receive_smb_talloc) read_smb_length_return_keepalive failed for client 192.168.1.109 read error = NT_STATUS_END_OF_FILE. [2011/08/09 15:56:09.694632, 1] smbd/process.c:456(receive_smb_talloc) read_smb_length_return_keepalive failed for client 192.168.1.109 read error = NT_STATUS_END_OF_FIL...
2009 Mar 26
2
Data manipulation - multiplicate cases
...riable... 2-Then I want to identify with a dicotomic variable by the number according my variable Z from X... I can do the first part by... z<-rep(x,y) But I don't know how to set a dicotomic variable according to Z... Exemple... I have... X Y Z 123 3 1 234 3 1 345 4 2 456 3 2 I want to get... X Y Z 123 3 1 123 3 0 123 3 0 234 3 1 234 3 0 234 3 0 345 4 1 345 4 1 345 4 0 345 4 0 456 3 1 456 3 1 456 3 0 Thanks in advance... -- View this message in context: http://www.nabble.com/Data-manipul...
2009 Dec 14
3
Asterisk throws error using the alsa, module
...> i'm running pulseaudio on top of alsa. through setting /etc/asound.conf as > above any calls to alsa should be redirected to pulseaudio (at least that's > what i thought). > Asterisk Ready. > *CLI> console dial s > *CLI> [Dec 14 02:12:36] ERROR[24945]: chan_alsa.c:456 alsa_read: Read > error: Input/output error > [Dec 14 02:12:36] ERROR[24945]: chan_alsa.c:456 alsa_read: Read error: > Input/output error > [Dec 14 02:12:36] ERROR[24945]: chan_alsa.c:456 alsa_read: Read error: > Input/output error > [Dec 14 02:12:36] ERROR[24945]: chan_alsa.c:456...
2012 Jun 15
2
strings concatenation and organization (fast)
...quot;4","5","6","1","2","3","-","-","-") rep_vec = rep(vec,times=20) nms = c("A","B","C","D") I need to get this: A B C D "123" "---" "456" "123" "---" "123" "---" "456" "123" "---" "123" "---" "456" "123" "---" "123" "---" "456" "123" "---" Note: a matrix of 4...
2008 Jun 14
2
strsplit, keeping delimiters
Hi all, Does anyone have a version of strsplit that keeps the string that is split by. e.g. from x <- "A: 123 B: 456 C: 678" I'd like to get c("A:", "123 ", "B: ", "456 ", "C: ", 678) but strsplit(x, "[A-Z]+:") gives me c("", " 123 ", " 456 ", " 678") Any ideas? Thanks, Hadley -- http://had.co.nz/
2009 Jun 04
0
ROracle: cannot insert several columns
Hi all, I've been playing with ROracle (0.5-9) for a few days and I can't wrap my mind around this one. Here's a sample of my R (2.4.0) session. my.df<-data.frame(prd_id=c(123,456),vol_factor=c(.123,.456)) > my.df prd_id vol_factor 1 123 0.123 2 456 0.456 > library(ROracle) Loading required package: DBI > conn<-dbConnect("Oracle","***/***@***") > dbGetQuery(conn,"create table mytable (prd_id number, vol_factor number)&q...
2005 Jun 23
1
Help with Dial multiple channels simultanously
Hi, the following from extension.conf does not work correctly: exten => 301, 1, Dial(SIP/455&SIP/456, 15) That is the console output: -- Executing Dial("mISDN/1/105", "SIP/455&SIP/456&SIP/456| 10") in new stack -- Called 455 -- Called 456 -- SIP/455-46a8 is ringing == Spawn extension (incoming, 301, 1) exited non-zero on 'mISDN/1/105' As yo...
2009 Feb 23
1
Inbound call to IVR drops after 21 seconds?
Does anyone know why? ThePBX*CLI> -- Executing [310-456-7890 at from-trunk:1] Set("SIP/202.101.202.101-b763ce60", "__FROM_DID=310-456-7890") in new stack -- Executing [310-456-7890 at from-trunk:2] ExecIf("SIP/202.101.202.101-b763ce60", "1 |Set|CALLERID(name)=310-456-0987") in new stack -- Executing [310-456-78...
2008 Nov 25
2
dataframe
hi there I have a dataframe abc 123 345 abc 345 456 lmn 567 345 hkl 568 535 lmn 096 456 lmn 768 094 i want the uniques of column 1 and there corresponsing column 2 and 3 output abc 123 345 lmn 567 345 hkl 568 535 cbind(DF1[,1],DF1[which(unique(DF1[,1]),c(2,3)]) but didnt work kindly let me know how to go abt it ramya -- View this message in...
2006 Jun 14
7
CR issue
Hi, I am using RedCloth (3.0.4). First using online text2html (http://www.textism.com/tools/textile/) , "123 456" returns <p>123<br />456</p> But by code: <code> require ''RedCloth'' puts RedCloth.new("123\n456").to_html </code> I got: <p>123 456</p> CR is not taken in consideration. Is there any parameter I am missing? Thank you fo...
2010 Nov 13
1
truncate integers
Is there any really easy way to truncate integers with several consecutive digits without rounding and without converting from numeric to character (using strsplit, etc.)?? Something along these lines: e.g. = 456 truncfun(e.g., location=1) = 4 truncfun(e.g., location=1:2) = 45 truncfun(e.g., location=2:3) = 56 truncfun(e.g., location=3) = 6 It's one thing using floor(x/100) to get 4 or floor(x/10) to get 45, but I'd like to return only 5 or only 6, for example, in cases where I don't know w...
2012 Jan 08
2
splitting strings effriciently
Folks, I have a data frame with 4861469 rows that contains an ip address xxx.xxx.xxx.xxx as one of the columns. I want to assign a site to each row based on IP ranges. To do this I have a function to split the ip address as character into class A,B,C and D components. It works but is horribly inefficient in terms of speed. I can't quite see how one of the l/s/m/t/apply functions could be
2012 Apr 24
2
searchina a pattern in a string
I have a long string. i want to sepearate a 10 digit phone no from it. eg "my no is 9876543210 is personal no and my official no is 123-456-8907. you can use any of these" i want to seperate the 9876543210 and 123-456-8907 from this. therev may be many phone nos in the string. how to do it ----- Thanks in Advance Arun -- View this message in context: http://r.789695.n4.nabble.com/searchina-a-pattern-in-a-string-tp458374...
2007 Aug 24
3
Merging two files together in R
...y (250K, Nsp array)…However, in order for me to do any analysis on this data set, I need to add append the annotation file to it. Basically I want to do something that looks like this: Snpfile(tab delimited): SNPID Genotype X Y 123 AA 13.4 1.2 456 AB 10.1 12.2 789 BB 2.7 14.4 Annotation file (csv file): rs#, SNPID, Chromosome rs23525, 456, 12 rs78423, 123, 4 rs82342, 789, 9 What I am trying to get is an output file that looks like this...
2014 Oct 02
2
Voice Mail Questions
We are trying to add voice mail to our hotel rooms. Our current phone instruction cards say 'to reach voice mail dial ext 456". Replacing those instructions is not feasible at the moment. We have Feature Code *97 that takes them directly to their voice mail box. Question - What is an easy way to have exten 456 dial *97. We are using AsteriskNow distro, version11. Phil Ledon -------------- next part --------------...
2015 May 29
2
Debugging dialplan
...all an extension right now... I'd like to have a command to ask >> Asterisk how it will handle a call... You can use the 'dialplan' command to get a clue. For example, I have this context in a dialplan: ; meetme-star-menu ; 1 say private meeting number ; 3 enter private room ; 456 go to the admin menu [meetme-star-menu](h,s) exten = i,1, verbose(1,[${EXTEN}@${CONTEXT}!${ANI}]) exten = i,n, goto(enter-room,s,1) exten = t,1, verbose(1,[${EXTEN}@${CONTEXT}!${ANI}]) exten = t,n,...
2002 Dec 13
1
[Bug 456] Krb5 ticket forwarding is tryied even if krb5 authentication failed
http://bugzilla.mindrot.org/show_bug.cgi?id=456 ------- Additional Comments From kouril at ics.muni.cz 2002-12-13 20:34 ------- Created an attachment (id=185) --> (http://bugzilla.mindrot.org/attachment.cgi?id=185&action=view) Don't delegate/accept delegated ticket if krb5 authentication hasn't been done ------- You are...
2006 Apr 01
0
CEEA-2005:456 CentOS 3 ia64 cscope - new package adds source code browsing tool
CentOS Errata and Security Advisory CEEA-2005:456 https://rhn.redhat.com/errata/RHEA-2005-456.html The following updated files have been uploaded and are currently syncing to the mirrors: files: updates/ia64/RPMS/cscope-15.5-9.RHEL3.ia64.rpm -- Pasi Pirhonen - upi@iki.fi - http://iki.fi/upi/ -------------- next part --------------...
2006 Apr 01
0
CEEA-2005:456 CentOS 3 s390(x) cscope - new package adds source code browsing tool
CentOS Errata and Security Advisory CEEA-2005:456 https://rhn.redhat.com/errata/RHEA-2005-456.html The following updated files have been uploaded and are currently syncing to the mirrors: s390: updates/s390/RPMS/cscope-15.5-9.RHEL3.s390.rpm s390x: updates/s390x/RPMS/cscope-15.5-9.RHEL3.s390x.rpm -- Pasi Pirhonen - upi@iki.fi - http://iki.fi/...