Displaying 20 results from an estimated 33 matches for "bungl".
Did you mean:
bung
2005 Oct 26
2
horizontal violin plots?
I am trying to make horizontal violin plots. I have tried both vioplot
and simple.violinplot, but both of them seem to not be willing to take
the horizontal option. Is this correct, or am I just bungling it
somehow?
For instance, for vioplot (from the example shown, with the horizontal
modification):
> vioplot(bimodal,uniform,normal, horizontal=TRUE)
Error in median(data) : need numeric data
>
Karin
--
Karin Lagesen, PhD student
karin.lagesen at medisin.uio.no
http://www.cmbn.no/rogn...
2010 Apr 29
0
Bungled update
I was running 3.0 on a freebsd-7.2 box as a PDC, I needed to add some
windows 7 computers to the mix. So I jumped from 3.0 to samba34-3.4.5_1. I
was able to get the windows 7 into the mix. But in the jump I lost some
features on the other computers. I have a mix of Windows 2000 pro, Windows
XP pro and Windows 7 pro and the one PDC.
The windows computers are unable to share printers. Not able to
2011 Sep 05
1
savePlot with % in character string
This occurred after I installed R x64 2.13.1 on Windows:
savePlot("95%.winners.wmf")
saves the file as:
"951nners.wmf"
Is this the correct behavior, or have I bungled something?
John Welsh, Ph.D.
Associate Professor
Molecular and Cancer Biology
Vaccine Research Institute of San Diego
10835 Road to the Cure
San Diego, CA 92121
Phone: (858) 581-3960 ex.248
Email: jwelsh at sdibr.org
--
View this message in context: http://r.789695.n4.nabble.com/savePlot-with-...
2010 Dec 27
1
another superscript problem
...hing like this (very naive so you get the idea):
expression(text, obv, ss)
paste(text, obv) # works ...but of course I either lose the value of obv or
the superscript in the translation using expression, and bquote doesn't seem
to accept the asterisk before the first element.
I am a little bungled by the varying syntax used for bquote and all the
rest; sometimes R seems more complicated than it needs to be for a
relatively simple problem (and for me this is one of those cases!)...
Tyler
--
View this message in context: http://r.789695.n4.nabble.com/another-superscript-problem-tp3165591p3...
2005 Sep 21
2
Macro exists if an application returned -1
Hi all,
I use asterisk cvs-head from last week and was wondering why my macros are
not working like I expected.
A macro will be aborted if one application returns error (-1), but some
applications (like ChanIsAvail() in my case) do return -1.
So when I want to use ChanIsAvail() in a macro, it does not work if the
channel is not available, because the macro is not executed on n+101.
The macro
2010 Nov 16
1
S110M not working
...n channel 8: Invalid argument (22)
Selected signaling not supported
Possible causes:
FXO signaling is being used on a FXO interface (use a FXS
signaling variant)
RBS signaling is being used on a E1 CCS span
Signaling is being assigned to channel 16 of an E1 CAS span
Have I bungled the power connection and/or the config, or am I just
extremely unlucky and have two bad s110s?
Thanks,
Noah
2010 Jun 07
3
rpm building and hyphens in Version tags
...2.2/specfile.html a
Version: tag can contain a hyphen, as the tarball for the source
I am compiling is named 2.3-pre4 etc.
When I try to build it I get an error about the illegal char?
Anyone know about the discrepancy between the docs and RHEL's
rpmbuild? Without recreating a new tarball and bungling the name
how does one gracefully handle this?
Thanks!
jlc
2016 Dec 16
3
Call for testing: OpenSSH 7.4
...symbols exist in libcrypto
> so configure's tests for them pass, but they're not declared in any header
> files. I'm not sure where exactly these are "supposed" to be declared, so I
> don't know if this is a problem with OpenSSH or LibreSSL or some packaging
> bungle on Void's part.
Don't know about this one. Might install a VM to look at this if I
get a chance.
> On Debian testing: discovered a small-but-significant problem in auth.c's
> allowed_user() function. Commit 010359b3 expanded the body of the loop that
> checks DenyUsers ent...
2013 Apr 02
1
Iterative regression through a series
...to save the TIME coefficients and standard errors it generates to two vectors, say TIME.coef and TIME.SE.
I'm not sure if lapply() can be bent to my will, or if a for loop would be too inefficient, or what. I'm not new to R, but I'm fairly new to this kind of programming.
This is a bungled mess of a narrative, and I apologize. Please feel free to use TIME=1:100 and PRICE=rnorm(100,8,2).
Here's an attempt, which has failed for reasons I can only imagine. Any help getting this to work would be greatly appreciated. Any help doing this without loops would be even better.
&g...
2013 May 10
0
[LLVMdev] [cfe-dev] "load groups" IR feature to improve C++ devirtualization
...new Cls;
> > p->virtual_method1();
> > p->method_changing_vptr(); // uses placement new to legally change the vptr
> > p->virtual_method2(); // invalid!
> > Cls *q = p;
> > q->virtual_method2(); // this must get a new vptr lookup.
>
> I bungled my example, and I want to fix that first. I was thinking:
>
> Derived *p = new Derived;
> p->virtual_method1();
> p->method_changing_vptr(); // uses placement new to legally change the vptr to Base
> p->virtual_method2(); // invalid!
> Base *q = p;
> q...
2024 Sep 06
1
BUG: atan(1i) / 5 = NaN+Infi ?
...tting that *right* in floating-point is
fiendishly difficult (there are
lots of algorithms out there and the majority of them have serious
flaws) and woefully costly.
It's not unfair to characterise implementing complex/real by
conversion to complex and
doing complex/complex as a beginner's bungle.
There are good reasons why "double", "_Imaginary double", and "_Complex double"
are distinct types in standard C (as they are in Ada), and the
definition of multiplication
in G.5.1 para 2 is *direct* (not via complex*complex).
Now R has its own way of doing things,...
2013 May 10
4
[LLVMdev] [cfe-dev] "load groups" IR feature to improve C++ devirtualization
...new Cls;
> > p->virtual_method1();
> > p->method_changing_vptr(); // uses placement new to legally change
> the vptr
> > p->virtual_method2(); // invalid!
> > Cls *q = p;
> > q->virtual_method2(); // this must get a new vptr lookup.
>
I bungled my example, and I want to fix that first. I was thinking:
Derived *p = new Derived;
p->virtual_method1();
p->method_changing_vptr(); // uses placement new to legally change the
vptr to Base
p->virtual_method2(); // invalid!
Base *q = p;
q->virtual_method2(); // this mu...
2005 Mar 07
1
Socket Error?
Hi list!!
I have some problems with ices, cant connect to
server...
The Error Log :
[2005-03-07 19:00:08] INFO
playlist-builtin/playlist_read Currently playing
"/Music/mr bungle - a dub.ogg"
[2005-03-07 19:00:08] EROR
stream/ices_instance_stream Failed initial connect to
172.16.0.13:8022 (Socket error: Success)
[2005-03-07 19:00:08] DBUG reencode/reencode_clear
Clearing reencoder
[2005-03-07 19:00:08] DBUG input/input_loop An
instance died, removing it
[2005-03-07...
2008 Aug 08
2
Good reference for dkms?
...from rpmforge (1.0.9755, IIRC),
although I'm not sure I really need anything other than the rpmforge
version.
Should I
1) revert to the rpmforge version and re-add it back into the dkms
tree? IIRC, this wasn't that hard to do, 'cuz it was meant to be done
in the first place.
2) try to bungle my way through with the newest one from nvidia?
Or is there a really good primer on dkms that tells what to put where
and how to create a proper dkms.conf file (and where)?
Thanks.
mhr
1999 May 11
0
Couple of Samba questions.
...e got it working with Windows 2000? If so what is the edit
for the registry?
2) Why, when you create a 'valid user' list does the ability to browse
the shares via NetHood.
3) Is there away to seperate the directory shares from the printer shares
so that they don't end up all bungled together? Would this require
running two samba servers on the unix box. One for directories and
one for the printers? or is there an easier/better way?
thanks!
-- Steve
"We confuse you, or your money back!"
1999 May 13
0
SAMBA digest 2089
...share,
> but only those designated will have write access.
Actually, I mean that no one can view the shares. Even the people in the
in the valid user list.
>
> > 3) Is there away to seperate the directory shares from the printer shares
> > so that they don't end up all bungled together? Would this require
> > running two samba servers on the unix box. One for directories and one
> > for the printers? or is there an easier/better way?
>
> The only way I can think of is to use a naming convention that puts
> the printer shares at the end (s...
2004 Dec 28
0
Getting krb5 authentication working
...for a password. Obviously
this wasn't the desired effect. At least samba is actually running and
responding, just not the way I had hoped.
Couple of questions I guess.
Do I need to set up anything special in my samba server's krb5.keytab? It
currently just has a host/FQDN entry.
Did I bungle the pam.d/samba file?
Is there something else I need to do to make samba use PAM (specifically,
the krb5 module)? I'm not using LDAP or ADS, just Kerberos.
Thanks a bunch.
2024 Sep 06
1
BUG: atan(1i) / 5 = NaN+Infi ?
...shly difficult (there are
> lots of algorithms out there and the majority of them have serious flaws)
> and woefully costly.
> It's not unfair to characterise implementing complex/real
> by conversion to complex and doing complex/complex as a
> beginner's bungle.
ouch! ... but still I tend to acknowledge your point, incl the "not unfair" ..
> There are good reasons why "double", "_Imaginary double", and "_Complex double"
> are distinct types in standard C (as they are in Ada),
interesting. OTOH,...
2003 Nov 05
1
A real-life production scenario
...und calls were
sent over to the PBX. Outbound calls from the PBX were switched like our
VoIP calls. Following this, we ordered porting of that block of numbers
over to the inbound PRI.
The telco did it about 5pm on a Wednesday afternoon with no
notification. Unfortunately, I had slightly bungled the exten => entry
for calls coming in via that route. Fortunately, it was easy enough to
fix, and was fixed before I got about the fourth swear word out of my
mouth. The CDR file captured the caller ID on the confrangled calls, and
our support department called them back promptly, and e...
2005 Aug 05
1
Survey: SYSLINUX: 2.13 works, 3.0x don't (H. Peter Anvin)
> From: "H. Peter Anvin" <hpa at zytor.com>
> To: SYSLINUX at zytor.com
> Date: Fri, 05 Aug 2005 10:12:18 -0700
> Subject: [syslinux] Survey: SYSLINUX: 2.13 works, 3.0x don't
> Okay, this applies particularly to SYSLINUX, not ISO/PXE/EXTLINUX.
>
> If you have a system on which 2.13 boots and 3.0x don't, I would like to
> get as much information as