search for: 4567

Displaying 20 results from an estimated 844 matches for "4567".

Did you mean: 456,7
2009 Jun 01
1
IAX2 trunking with Older Asterisk, version ?
my sip phone registered on 1.6, when i dial 4567 from 1.6 version, it wont go to 1.6 voice mail. it says == Using SIP RTP CoS mark 5 -- Executing [4567 at sip:1] Dial("SIP/312-09f9a720", "IAX2/trunk10 at 147.120.203.98/4567,10,t") in new stack -- Called trunk10 at 147.120.203.98/4567 [Jun 1 11:01:18] WARNING[8178]:...
2018 Feb 13
1
LSmeans and lsmeans
It is in the doBy package. Thanks From: Bert Gunter [mailto:bgunter.4567 at gmail.com] Sent: Tuesday, February 13, 2018 4:32 PM To: Pius Mwansa <pmwansa at shaw.ca> Cc: R-help <r-help at r-project.org> Subject: Re: [R] LSmeans and lsmeans Always cc the list unless there is good reason to keep your reply private. There is no LSmeans() function in the ls...
2008 Feb 22
0
lustre error
...inux-debug.c:98:libcfs_run_upcall()) Skipped 2 previous similar messages Feb 22 03:25:29 node4 kernel: Lustre: 7:0:(linux-debug.c:98:libcfs_run_upcall()) Invoked LNET upcall /usr/lib/lustre/lnet_upcall ROUTER_NOTIFY,192.168.0.11 at t cp,down,1203647123 Feb 22 03:25:33 node4 kernel: LustreError: 4567:0:(acceptor.c:442:lnet_acceptor()) Error -11 reading connection request from 192.168.0.13 Feb 22 03:25:43 node4 kernel: LustreError: 4567:0:(acceptor.c:442:lnet_acceptor()) Error -11 reading connection request from 192.168.0.17 Feb 22 03:25:59 node4 kernel: LustreError: 4567:0:(acceptor.c:442:l...
2018 Feb 13
0
LSmeans and lsmeans
...king things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Tue, Feb 13, 2018 at 3:38 PM, Pius Mwansa <pmwansa at shaw.ca> wrote: > It is in the doBy package. > > > > Thanks > > > > *From:* Bert Gunter [mailto:bgunter.4567 at gmail.com] > *Sent:* Tuesday, February 13, 2018 4:32 PM > > *To:* Pius Mwansa <pmwansa at shaw.ca> > *Cc:* R-help <r-help at r-project.org> > *Subject:* Re: [R] LSmeans and lsmeans > > > > Always cc the list unless there is good reason to keep your reply pr...
2016 Apr 09
3
assign
Hi all I am trying t extract a variable from a column ASk/20005-01-45/90 Alldatk/25-17-4567/990 I want to assign a variable to the numbers coming the first"-" x=01 for the first and x=17 for teh second I tried using gsub but did not work x=gsub("-") any help? [[alternative HTML version deleted]]
2016 Apr 16
2
Mean of hexadecimal numbers
...convert back: ?as.hexmode -- Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Sat, Apr 16, 2016 at 8:20 AM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > ?strtoi > > You'll have to remove the "#" first, e.g. via substring() > > -- Bert > > > Bert Gunter > > "The trouble with having an open mind is that people keep coming along > and sticking things into it." > -- O...
2024 Jul 20
4
Using the pipe, |>, syntax with "names<-"
...foo" can be piped as: z <- z |>(\(x) "names<-"(x,value = "[<-"(names(x),2,'foo')))() > z a foo 1 1 a 2 2 b 3 3 c This is even awfuller than before. So my query still stands. -- Bert On Sat, Jul 20, 2024 at 1:14?PM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > Nope, I still got it wrong: None of my approaches work. :( > > So my query remains: how to do it via piping with |> ? > > Bert > > > On Sat, Jul 20, 2024 at 1:06?PM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > > > Th...
2016 Apr 16
0
Mean of hexadecimal numbers
...blue 0 64 0 > rgb2hsv(col2rgb(myColors)) One Two Three h 0.08104575 0.3891798 0.1666667 s 1.00000000 1.0000000 1.0000000 v 1.00000000 0.7490196 1.0000000 Bill Dunlap TIBCO Software wdunlap tibco.com On Sat, Apr 16, 2016 at 8:27 AM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > ... and if you need to convert back: ?as.hexmode > > > -- Bert > > > Bert Gunter > > "The trouble with having an open mind is that people keep coming along > and sticking things into it." > -- Opus (aka Berkeley Breathed in his...
2016 Apr 09
1
assign
Hi, I couldn't resist these two suggestions: strings <- c("ASk/20005-01-45/90", "Alldatk/25-17-4567/990") x <- as.numeric(gsub("^[^-]*-|-.*$","",strings)) or x <- as.numeric(sub("^[^-]*-([0-9]+)-.*$","\\1",strings)) Best, Georges --------------------- Georges Monette, York University, Toronto On 08/04/2016 10:53 PM, Fox, John wrote: > De...
2016 Apr 09
0
assign
Dear Val, Your question isn't entirely clear (to me), but this is what I think you want to do: ------------------ snip ---------------- > strings <- c("ASk/20005-01-45/90", "Alldatk/25-17-4567/990") > location <- regexpr("-[0-9]*", strings) > x [1] "01" "17" > x <- substring(strings, location + 1, location + attr(location, "match.length") - 1) > as.numeric(x) [1] 1 17 ------------------ snip ---------------- I hope this he...
2024 Jul 20
2
Using the pipe, |>, syntax with "names<-"
It should be written more like this: ```R z <- data.frame(a = 1:3, b = letters[1:3]) z |> names() |> _[2] <- "foo" z ``` Regards, Iris On Sat, Jul 20, 2024 at 4:47?PM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > With further fooling around, I realized that explicitly assigning my > last "solution" 'works'; i.e. > > names(z)[2] <- "foo" > > can be piped as: > > z <- z |>(\(x) "names<-"(x,value = "[...
2018 Feb 13
1
LSmeans and lsmeans
...things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Tue, Feb 13, 2018 at 3:20 PM, Pius Mwansa <pmwansa at shaw.ca> wrote: > They are in the lsmeans package. > > > > Pius > > > > *From:* Bert Gunter [mailto:bgunter.4567 at gmail.com] > *Sent:* Tuesday, February 13, 2018 4:16 PM > *To:* Pius Mwansa <pmwansa at shaw.ca> > *Cc:* R-help <r-help at r-project.org> > *Subject:* Re: [R] LSmeans and lsmeans > > > > In what packages? > > -- Bert > > > Bert Gunter > >...
2003 Jun 14
1
show application DISA
...ay contain blank lines, or comments starting with "#" or ";". In addition, the above arguments may have |new-callerid-string appended to them, to specify a new (different) callerid to be used for this call, for example: numeric-passcode|context|"My Phone" <(234) 123-4567> or full-pathname-of-passcode-file|"My Phone" <(234) 123-4567>. Note that in the case asterisk1*CLI> -- Roy Sigurd Karlsbakk, Datavaktmester ProntoTV AS - http://www.pronto.tv/ Tel: +47 9801 3356 Computers are like air conditioners. They stop working when you open Windows.
2017 Nov 10
0
Calculating frequencies of multiple values in 200 colomns
...ple. The values I have are 0 , 1, 2 . Tabulate () function seem to ignore calculating the frequency of 0 values and this is my exact problem as the frequency of 0 values should also be calculated for the maf to be calculated correctly. ________________________________ From: Bert Gunter <bgunter.4567 at gmail.com> Sent: 09 November 2017 23:51:35 To: Allaisone 1; R-help Subject: Re: [R] Calculating frequencies of multiple values in 200 colomns [[elided Hotmail spam]] "For example, if I have the values : 1 , 2 , 3 in each column, applying Tabulate () would calculate the frequency of 1 a...
2024 Jul 21
1
Using the pipe, |>, syntax with "names<-"
If you object to names(x)[2]<- ... then use replace: z |> list(x = _) |> within(replace(names(x), 2, "foo")) |> _$x On Sun, Jul 21, 2024 at 11:10?AM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > hmmm... > But note that you still used the nested assignment, names()[2] <- > "foo", to circumvent R's pipe limitations, which is exactly what > Iris's solution avoids. So I think I was overawed by your cleverness > ;-) > > Be...
2017 Oct 15
1
Populate one data frame with values from another dataframe for rows that match
...>?s solution was able to achieve that. Nonetheless, we do appreciate your solution. Regards ------------------ Kevin Wamae From: William Dunlap <wdunlap at tibco.com> Date: Saturday, 14 October 2017 at 20:21 To: Kevin Wamae <KWamae at kemri-wellcome.org> Cc: Bert Gunter <bgunter.4567 at gmail.com>, Rui Barradas <ruipbarradas at sapo.pt>, R-help <R-help at r-project.org> Subject: Re: [R] Populate one data frame with values from another dataframe for rows that match Your example used one distinct studyno in DF1 and one distinct pf_mcl in DF2. I think that makes i...
2016 Apr 13
0
Decision Tree and Random Forrest
...rules somehow on the collection of trees and give > a probability. But if that doesnt make sense, then can you just tell me > how to get the decsion rules with one tree and I will work from that. > > Mike > > Mike > > On Wed, Apr 13, 2016 at 4:30 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > >> I think you are missing the point of random forests. But if you just >> want to predict using the forest, there is a predict() method that you >> can use. Other than that, I certainly don't understand what you mean. >> Maybe someone else m...
2017 Nov 09
2
Calculating frequencies of multiple values in 200 colomns
.... I > need a way to calculate the frequencies of all of the 3 values so the > calculation of maf will be correct as it will consider all the 3 > frequencies but not only 2 . > > > Regards > > Allahisone > ------------------------------ > *From:* Bert Gunter <bgunter.4567 at gmail.com> > *Sent:* 09 November 2017 20:56:39 > *To:* Allaisone 1 > *Cc:* r-help at R-project.org > *Subject:* Re: [R] Calculating frequencies of multiple values in 200 > colomns > > This is not a good way to do things! R has many powerful built in > functions to do t...
2024 Jul 21
1
Using the pipe, |>, syntax with "names<-"
...m... But note that you still used the nested assignment, names()[2] <- "foo", to circumvent R's pipe limitations, which is exactly what Iris's solution avoids. So I think I was overawed by your cleverness ;-) Best, Bert On Sun, Jul 21, 2024 at 8:01?AM Bert Gunter <bgunter.4567 at gmail.com> wrote: > > Wow! > Yes, this is very clever -- way too clever for me -- and meets my > criteria for a solution. > > I think it's also another piece of evidence of why piping in base R is > not suited for complex/nested assignments, as discussed in Deepayan...
2017 Nov 10
2
Calculating frequencies of multiple values in 200 colomns
...I have are 0 , 1, 2 . Tabulate () function seem to ignore calculating the frequency of 0 values and this is my exact problem as the frequency of 0 values should also be calculated for the maf to be calculated correctly. > > ________________________________ > From: Bert Gunter <bgunter.4567 at gmail.com> > Sent: 09 November 2017 23:51:35 > To: Allaisone 1; R-help > Subject: Re: [R] Calculating frequencies of multiple values in 200 colomns > > [[elided Hotmail spam]] > > "For example, if I have the values : 1 , 2 , 3 in each column, applying Tabulate () w...