search for: roy

Displaying 20 results from an estimated 1674 matches for "roy".

Did you mean: rom
2003 May 16
1
kphone fails to register with asterisk (sip)
...g kphone, it tries to register with asterisk but fails after a while. The SIP entry in * for this user is below. This is identical to the other SIP entries. The other SIP clients are MSN messenger plus one snom. these work fine. See SIP debug output attached as 'screen-exchange' thanks roy [roy] type=friend ;insecure=yes username=roy ;secret=password host=dynamic callerid=22545070 maxexpire=10 accountcode=roy -- 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 Oct 17
2
ggridges help
...e now, or am I missing something. There is this in the manual: > position > Position adjustment, either as a string, or the result of a call to a position adjustment function. I assume this refers to the ggplot2 position adjustments. Would one of those calls have that effect? Thanks, -Roy > On Oct 17, 2017, at 1:09 PM, William Dunlap <wdunlap at tibco.com> wrote: > > Does the following work for you? > > ggplot2::ggplot(plotFrame, aes(x = time, y = depth, height = cycle, group = depth)) + ggridges::geom_ridgeline(fill="red", min_height=-0.25)...
2017 Oct 17
0
ggridges help
The min_height = -0.25 is there to make it show cycle values down to -1/4. You may want to change it to -1 so it shows more of the cycle values. Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Oct 17, 2017 at 1:26 PM, Roy Mendelssohn - NOAA Federal < roy.mendelssohn at noaa.gov> wrote: > yes, thanks, and I was getting close to that. One thing I found is the > manual says the height is the distance above the y-line, which should be, > but doesn't have to be positive. In fact, the time series...
2017 Jun 01
3
Reversing one dimension of an array, in a generalized case
> On 1 Jun 2017, at 22:42, Roy Mendelssohn - NOAA Federal <roy.mendelssohn at noaa.gov> wrote: > > Thanks to all for responses/. There was a question of exactly what was wanted. It is the generalization of the obvious example I gave, > >>>> junk1 <- junk[, rev(seq_len(10), ] > > > s...
2018 Jan 02
4
httr::content without message
....noaa.gov/erddap/griddap/erdMH1sstdmday.csvp?time[0:1:last]' r1 <- httr::GET(myURL) junk <- httr::content(r1) when the last command is run, you get: Parsed with column specification: cols( `time (UTC)` = col_datetime(format = "") ) I want to suppress that output. Thanks, -Roy ********************** "The contents of this message do not reflect any position of the U.S. Government or NOAA." ********************** Roy Mendelssohn Supervisory Operations Research Analyst NOAA/NMFS Environmental Research Division Southwest Fisheries Science Center ***Note new street...
2017 Aug 29
3
RMarkdown question
...ting the appropriate anchor name at the appropriate header. But can the same be done for code chunks, if the code chunk is named? What I want to do is say that such and such code chunk is an example of how to do something, and have that link to the appropriate code chunk. Thanks for any help. -Roy ********************** "The contents of this message do not reflect any position of the U.S. Government or NOAA." ********************** Roy Mendelssohn Supervisory Operations Research Analyst NOAA/NMFS Environmental Research Division Southwest Fisheries Science Center ***Note new st...
2017 Jun 01
1
Reversing one dimension of an array, in a generalized case
Thanks again. I am going to try the different versions. But I probably won't be able to get to it till next week. This is probably at the point where anything further should be sent to me privately. -Roy > On Jun 1, 2017, at 1:56 PM, David L Carlson <dcarlson at tamu.edu> wrote: > > On the off chance that anyone is still interested, here is the corrected function using aperm(): > > z <- array(1:120,dim=2:5) > f2 <- function(a, wh) { > idx <- seq_len(lengt...
2017 Oct 17
2
ggridges help
...up = depth)) + geom_ridgeline() ggplot(plotFrame, aes(x = time, y = depth, group = depth)) + geom_density_ridges() none are producing a plot that was a ridgeline for each depth showing the time series at that depth. The plot should be like the geom_line plot, but as a ridgeline for each depth. -Roy > On Oct 17, 2017, at 12:39 PM, Bert Gunter <bgunter.4567 at gmail.com> wrote: > > ...and your question is...? > ... and the code you tried that didn't work was? > > Bert > > > On Oct 17, 2017 12:22 PM, "Roy Mendelssohn - NOAA Federal" <roy.men...
2017 Jun 01
5
Reversing one dimension of an array, in a generalized case
...the function can not assume the number of dimensions of the array nor which dimension to reverse. For example, if i try: junk1 <- apply(junk, 2, rev) junk1 comes out as two-dimensional, not three-dimensional. It is probably something obvious but I am not getting it. Thanks for any help. -Roy ********************** "The contents of this message do not reflect any position of the U.S. Government or NOAA." ********************** Roy Mendelssohn Supervisory Operations Research Analyst NOAA/NMFS Environmental Research Division Southwest Fisheries Science Center ***Note new stree...
2017 Jun 01
0
Reversing one dimension of an array, in a generalized case
...perm(apply(a, dims, rev), idx) } all.equal(f(z, 1), f2(z, 1)) # [1] TRUE all.equal(f(z, 2), f2(z, 2)) # [1] TRUE all.equal(f(z, 3), f2(z, 3)) # [1] TRUE all.equal(f(z, 4), f2(z, 4)) # [1] TRUE David C From: Ismail SEZEN [mailto:sezenismail at gmail.com] Sent: Thursday, June 1, 2017 3:35 PM To: Roy Mendelssohn - NOAA Federal <roy.mendelssohn at noaa.gov> Cc: David L Carlson <dcarlson at tamu.edu>; R-help <r-help at r-project.org> Subject: Re: [R] Reversing one dimension of an array, in a generalized case On 1 Jun 2017, at 22:42, Roy Mendelssohn - NOAA Federal <roy.mende...
2017 Oct 17
0
ggridges help
Does the following work for you? ggplot2::ggplot(plotFrame, aes(x = time, y = depth, height = cycle, group = depth)) + ggridges::geom_ridgeline(fill="red", min_height=-0.25) Bill Dunlap TIBCO Software wdunlap tibco.com On Tue, Oct 17, 2017 at 12:43 PM, Roy Mendelssohn - NOAA Federal < roy.mendelssohn at noaa.gov> wrote: > I have tried: > > ggplot(plotFrame, aes(x = time, y = cycle, height = cycle, group = depth)) > + geom_ridgeline() > ggplot(plotFrame, aes(x = time, y = depth, height = cycle, group = depth)) > + geom_ridgeli...
2018 Jul 21
2
Failed to establish your Kerberos Ticket cache due time differences with the domain controller
...> Sat 21 Jul 16:47:46 BST 2018 > > Rowland > Interesting... On the pi-dc (the one with the error) I get the following: As root: root at pi-dc:~# samba-tool time Sat Jul 21 16:55:20 2018 BST root at pi-dc:~# date Sat 21 Jul 16:55:22 BST 2018 root at pi-dc:~# OK, that's good. As roy: (AD user) MICROLYNX\roy at pi-dc:~ $ samba-tool time ldb: Unable to open tdb '/usr/local/samba/private/secrets.ldb': Permission denied ldb: Failed to connect to '/usr/local/samba/private/secrets.ldb' with backend 'tdb': Unable to open tdb '/usr/local/samba/private/secre...
2018 Jul 21
4
Failed to establish your Kerberos Ticket cache due time differences with the domain controller
On Sat, 21 Jul 2018 18:59:08 +0100 Rowland Penny via samba <samba at lists.samba.org> wrote: > On Sat, 21 Jul 2018 18:30:48 +0100 > Roy Eastwood via samba <samba at lists.samba.org> wrote: > > > Thanks Rowland. > > > > > -----Original Message----- > > > From: samba [mailto:samba-bounces at lists.samba.org] On Behalf Of > > > Rowland Penny via samba > > > Sent: 21 July 2018...
2018 Jul 24
0
Failed to establish your Kerberos Ticket cache due time differences with the domain controller
...> krb5_ccache_type=FILE cached_login debug debug_state > > > Run : pam-auth-update > And login again. > > Lets see what you get of that debug output. > OK, after making the changes to /usr/share/pam-configs/winbind and running pam-auth-update and logging in as AD user roy, auth.log has this: Jul 24 10:13:18 pi-dc sshd[865]: pam_unix(sshd:auth): authentication failure; logname= uid=0 euid=0 tty=ssh ruser= rhost=192.168.2.240 user=roy Jul 24 10:13:18 pi-dc sshd[865]: pam_winbind(sshd:auth): [pamh: 0x1022c38] ENTER: pam_sm_authenticate (flags: 0x0001) Jul 24 10:13:18...
2017 Jun 01
2
Reversing one dimension of an array, in a generalized case
...Component ?dim?: Mean relative difference: 0.5714286 >" [2] "Mean relative difference: 0.5855162" David C -----Original Message----- From: Bert Gunter [mailto:bgunter.4567 at gmail.com] Sent: Thursday, June 1, 2017 2:00 PM To: David L Carlson <dcarlson at tamu.edu> Cc: Roy Mendelssohn - NOAA Federal <roy.mendelssohn at noaa.gov>; R-help <r-help at r-project.org> Subject: Re: [R] Reversing one dimension of an array, in a generalized case ?? > z <- array(1:24,dim=2:4) > all.equal(f(z,3),f2(z,3)) [1] "Attributes: < Component ?dim?: Mean r...
2006 Apr 18
12
Update on SWIG
...lly close now, though. I think I know how this is supposed to work and will be able to have some things working soon. The lack of unit tests is beginning to bug me. I think I''ll see if I can begin hooking in unit tests so we can start validating the new things we''re doing. Roy
2011 May 24
2
[LLVMdev] predicates and conditional execution
2011/5/24 Justin Holewinski <justin.holewinski at gmail.com>: > On Tue, May 24, 2011 at 3:02 AM, roy rosen <roy.1rosen at gmail.com> wrote: >> >> Hi, >> >> I was wondering if LLVM supports predicates and conditional execution. >> Something like we have in IA64. >> There is a register class of predicates and then every instruction may >> be predicated...
2018 Jan 02
1
httr::content without message
...rmine mime type and parse yourself and Ben's suggestion also works if I do: junk <- readr::read_csv(r1$content, col_types = cols()) Perfect. Using httr rather than putting the url in any of the read.csv or read_csv type code allows me greater control if the request fails. Thanks again, -Roy > On Jan 2, 2018, at 9:44 AM, Ben Tupper <btupper at bigelow.org> wrote: > > Ahoy! > > That's a message generated by the readr::read_table() function (or it's friends). You can suppress it a number of ways, but this should work as httr::content() will pass through a...
2007 Oct 15
11
What web GUI are people happy with?
Just wondering what web GUI people like for asterisk. I installed asterisk from source and I was looking at possibly installing web GUI for system management. So far freepbx.org looks promising anybody else have any suggestions. Thanks Roy Anciso Director of Technology Manistee Intermediate School District 1710 Merkey Road Manistee, MI 49660 Ph: 231-723-4264 Fx: 231-723-1690 roy at manistee.org -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/...
2017 Jun 01
0
Reversing one dimension of an array, in a generalized case
...m=2:5) ## I omit the printouts f(z,2) f(z,3) Cheers, 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 Thu, Jun 1, 2017 at 9:51 AM, Roy Mendelssohn - NOAA Federal <roy.mendelssohn at noaa.gov> wrote: > Hi All: > > I have been looking for an elegant way to do the following, but haven't found it, I have never had a good understanding of any of the "apply" functions. > > A simplified idea is I have...