search for: 4567

Displaying 20 results from an estimated 873 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...
2025 Mar 30
1
[External] Creating model formulas programmatically
...the assignment was to avoid 'parse' specifically. we start with a character vector, so avoiding characters is not possible. i was dealing with the fortune "if parse is the answer, you have the wrong question" Sent from my iPhone On Mar 29, 2025, at 15:39, Bert Gunter <bgunter.4567 at gmail.com> wrote: ? Thanks, Rich. I thought of that, too, but it violates the spirit of my restraints (to avoid character strings), which I unfortunately did not clearly articulate. So my apologies for that failure. My concern is that with more complex model formula, using as.formula, etc....
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...
2025 Mar 30
1
[External] Creating model formulas programmatically
...o way of processing that within the current modeling system without generating a formula (a string) that gets parsed. -----Original Message----- From: R-help <r-help-bounces at r-project.org> On Behalf Of Richard M. Heiberger Sent: Saturday, March 29, 2025 8:47 PM To: Bert Gunter <bgunter.4567 at gmail.com> Cc: R-help <R-help at r-project.org> Subject: Re: [R] [External] Creating model formulas programmatically [External Email] my take of the assignment was to avoid 'parse' specifically. we start with a character vector, so avoiding characters is not possible. i was de...
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...
2025 Mar 30
1
[External] Creating model formulas programmatically
...e current modeling system without generating a > formula (a string) that gets parsed. > > -----Original Message----- > From: R-help <r-help-bounces at r-project.org> On Behalf Of Richard M. > Heiberger > Sent: Saturday, March 29, 2025 8:47 PM > To: Bert Gunter <bgunter.4567 at gmail.com> > Cc: R-help <R-help at r-project.org> > Subject: Re: [R] [External] Creating model formulas programmatically > > [External Email] > > my take of the assignment was to avoid 'parse' specifically. > we start with a character vector, so avoiding cha...
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.
2025 Mar 29
2
[External] Creating model formulas programmatically
...ames <- c("Heigh", "Ho", "Silver", "Away") > > as.formula(paste("~(",paste(somenames, collapse="+"),")^2")) > ~(Heigh + Ho + Silver + Away)^2 > > > > > On Mar 29, 2025, at 14:30, Bert Gunter <bgunter.4567 at gmail.com> wrote: > > > > somenames <- c("Heigh", "Ho", "Silver", "Away") > > > [[alternative HTML version deleted]]
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...