Displaying 20 results from an estimated 217 matches for "bow".
Did you mean:
bof
2008 Apr 22
1
subset and boxplots
...along the x axis, there are weeks a, b, c along with h and nh.
Thank you ahead of time. keith
rm(list=ls())
cond.exp1<-read.csv("condition/test.csv",header=TRUE)
sub<-subset(cond.exp1, Species=="brook_dis")
attach(sub)
plot(week, R)
detach(sub)
Id Species week 7
bow a 10 bow a 12 bow a 19 bow a 23 bow a 24 bow a 25 bow
a 26 bow a 27 bow a 28 bow a 32 bow a 39 bow a 7 bow b
10 bow b 12 bow b 19 bow b 23 bow b 24 bow b 25 bow b 26
bow b 27 bow b 28 bow b 32 bow b 39 bow b 7 bow c 10 bow
c...
2017 Sep 26
0
bowed linear approximations
...master.ca/jfox
>
>
>
>
> > -----Original Message-----
> > From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of Evans,
> > Richard K. (GRC-H000)
> > Sent: Monday, September 25, 2017 3:28 PM
> > To: r-help at r-project.org
> > Subject: [R] bowed linear approximations
> >
> > Hello,
> >
> > Please run the following code snippet and note the resulting plot:
> >
> > x <- c(10, 50)
> > y <- c(0.9444483, 0.7680123)
> > plot(x,y,type="b",log="x")
> > for(i in 1:50)...
2017 Sep 25
5
bowed linear approximations
...sity
Hamilton, Ontario, Canada
Web: socserv.mcmaster.ca/jfox
> -----Original Message-----
> From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of Evans,
> Richard K. (GRC-H000)
> Sent: Monday, September 25, 2017 3:28 PM
> To: r-help at r-project.org
> Subject: [R] bowed linear approximations
>
> Hello,
>
> Please run the following code snippet and note the resulting plot:
>
> x <- c(10, 50)
> y <- c(0.9444483, 0.7680123)
> plot(x,y,type="b",log="x")
> for(i in 1:50){
> xx <- exp(runif(1,log(min(x)),l...
2017 Sep 25
0
bowed linear approximations
...c(10, 50)
y <- c(0.9444483, 0.7680123)
plot(x,y,type="b",log="x")
for(i in 1:50){
xx <- exp(runif(1,log(min(x)),log(max(x)) ))
yy <- approx(x,y,xout=xx, method = "linear")
points(xx,yy$y)
}
notice the "log=x" plot parameter and the resulting "bow" in the linear approximation.
This makes sense when I realized that the plot command is first making the plot and then drawing straight lines between points on a log plot AFTER the plot is generated and that that's why the line is straight. I get that.
.. and it also makes sense that the...
2017 Sep 26
0
bowed linear approximations
...t; From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of Evans,
> Richard K. (GRC-H000)
> Sent: Tuesday, September 26, 2017 10:01 AM
> To: Eric Berger <ericjberger at gmail.com>; Fox, John <jfox at mcmaster.ca>
> Cc: r-help at r-project.org
> Subject: Re: [R] bowed linear approximations
>
> My apologies for the typos in the code.
> Here is a corrected version you can copy/paste in R to see the issue.
>
> freq <- c(2, 3, 5, 10, 50, 100, 200, 300, 500, 750, 1000, 1300, 1800, 2450, 2900,
> 3000, 4000, 5000, 6000, 7000, 8200, 9300, 10000,...
2019 Sep 17
3
Improving partial lookup results
Hi,
I'm exploring using Xapian to to replace a database-backed people lookup.
It's working well but I'd like to know if there's anything more I can do to
increase accuracy.
It handles partial phrases well, so long as the first part is complete
(e.g. "Peter Bow" expands well). If instead I type "P Bow" it fails to
work, as the expansion is done at the end. Is there a good way to handle
this? I tried to add a wildcard in the string and skip the query parser,
but ended up with zero results.
Also sometimes (though not always) substring matche...
2011 Apr 14
0
[Bug 172] Add multiple AuthorizedKeyFiles options
https://bugzilla.mindrot.org/show_bug.cgi?id=172
Robin Bowes <robin.bowes at yo61.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |robin.bowes at yo61.com
--- Comment #11 from Robin Bowes <robin.bowes...
2019 Sep 18
0
Improving partial lookup results
On Tue, Sep 17, 2019 at 01:27:08PM +0100, Peter Bowyer wrote:
> It handles partial phrases well, so long as the first part is complete
> (e.g. "Peter Bow" expands well). If instead I type "P Bow" it fails to
> work, as the expansion is done at the end.
The QueryParser::FLAG_PARTIAL feature aims to support a "search...
2003 Aug 25
2
Data calls through *
I have a Pitney Bowes (USPS Postage) machine that connects
via a USB modem to fill it.
It connects but soon disconnects. It works fine through a standard
analog phone line not connected to asterisk. I also
have the 'd' option on the Dial command.
exten => _1NXXNXXXXXX,1,Dial,Zap/47/BYEXTENSION||d
Any i...
2013 Jul 30
3
SMB throughput inquiry, Jeremy, and James' bow tie
I went to the site to subscribe again and ended up watching some of
Jeremy's Google interviews. I particularly enjoyed the interview with
James and the bow tie lesson at the end. :)
So anyway, I recently upgraded my home network to end-to-end GbE. My
clients are Windows XP SP3 w/hot fixes, and my Samba server is 3.5.6
atop vanilla kernel.org Linux 3.2.6 and Debian 6.0.6.
With FDX fast ethernet steady SMB throughput was ~8.5MB/s. FTP and HTTP
throu...
2007 Aug 03
2
Problem with making dll under Windows
...R-2.5.1/bin/SHLIB line 24.
BEGIN failed--compilation aborted at C:\Programme\R\R-2.5.1/bin/SHLIB line 24.
The file DynaLoader.pm is in the same directory as, e.g. XSLoader.pm
The c-file itself is very simple:
#include <Rinternals.h>
#include <math.h>
SEXP mypow(SEXP lifeFund, SEXP bow)
{
int i;
double n;
n = length(lifeFund);
for (i=0; i<n; i++)
REAL(lifeFund)[i] = pow((i+1)/n,REAL(bow)[0]);
return(lifeFund);
}
Could anybody help, please?
With many thanks and best regards,
Stefan
____________________________________
Dr. Stefan Albrecht, CFA
Allianz Private Equit...
2008 Apr 17
4
[Bug 15564] New: New account request
...ount request
Product: swfdec
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: plugin
AssignedTo: swfdec at lists.freedesktop.org
ReportedBy: jbowes at dangerouslyinc.com
QAContact: swfdec at lists.freedesktop.org
Hi, I'd like to request a new freedesktop.org account for commit access to
swfdec.
Real Name: James Bowes
Email: jbowes at dangerouslyinc.com
Preferred Account Name: jbowes
--
Configure bugmail: http://bugs.freede...
2002 Nov 08
3
Route Vlans
Hello,
Is it possible with a linux Bow to route différents VLANs, like a router
cisco can does ?
Thank for your answers
Laurent Foucher
_______________________________________________
LARTC mailing list / LARTC@mailman.ds9a.nl
http://mailman.ds9a.nl/mailman/listinfo/lartc HOWTO: http://lartc.org/
2014 Nov 27
2
icecast2.xml or darkice.cfg?
...figuring the little raspberry pi, hate to
start all over. eesh..
Thanks any way
Alan
-----Original Message-----
From: "Thomas B. R?cker"
Sent: Thursday, November 27, 2014 10:12 PM
To: icecast at xiph.org
Subject: Re: [Icecast] icecast2.xml or darkice.cfg?
On 11/27/2014 09:49 PM, Alan Bowness wrote:
> Hi there,
>
> I?m a bit stuck, not sure if I should be configuring the icecast.xml,
> or if I?m doing something wrong in the darkice.cfg.
>
> Works perfect streaming from its self, but as soon as I add a
> shoutcast stream, it breaks ? commenting out the icecast se...
2007 Sep 18
1
The use for an XML based metadata format
...ian. Doesn't seem satisfactory?
> Go to 2. This would take us well beyond music alone and I
> think that generality is a good thing, rather than specifying a
> slightly pat and contrived list; 'guitar', 'vocals', 'drums',
> 'theremin', 'bowed guitar'
> 2. Refined. Where available pick from a given list of possibilities.
> This is where you'd put type of musical instrument for example.
> Options such as 'other instrument' or omitting altogether would
> be perfectly valid.
> 3. Free form refineme...
2007 Sep 11
2
The use for an XML based metadata format
On 11/09/2007, Daniel Aleksandersen <aleksandersen+xiphlists@runbox.com> wrote:
> On Tuesday 11. September 2007 01:34:35 Ian Malone wrote:
> > Daniel Aleksandersen wrote:
> > > By the way, I have bee discussing Dublin Core ('DC') with the
> > > developers of the Atom 1.0 specification. It seams the reason they
> > > created atom:rights instead of
2019 Sep 02
2
Repo for Debian-Buster
Hi,
is there already a release date for Debian Buster packages?
kind regards
Christian
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://dovecot.org/pipermail/dovecot/attachments/20190902/ac0d599a/attachment.html>
2023 Feb 23
1
WERR_INTERNAL_ERROR on samba-tool domain join
On Thu, 2023-02-23 at 21:50 +0000, Rowland Penny via samba wrote:
> I would normally bow to your expertise, but that error appears to be
> coming from the clean up after the join failed. It deletes three
> DN's
> and then throws an error.
>
>
> Or am I missing something
While the print()ed messages after "Join failed" are cleanup, the
exception is...
2003 Sep 07
1
Sound error during launch
...on sound
device: Resource temporarily unavailable
I'm running mandrake 9.1 with the ALSA sound driver.
In the control center | Hardware | HardDrake | soundcard | help
it suggest this is preferred.
Is that warning important ?
How do I correct it ?
Regards...Martin
--
It is better to be bow-legged than no-legged.
2002 Jul 19
0
FW: rsync - Version ( rsync-2.1.0-SCO3.2v4.2BIN.tar.gz )
Can you please help me with the problem i am having below.
Thank you
Salim
-----Original Message-----
From: Salim Soormally [mailto:salimwng@bow.intnet.mu]
Sent: Friday, July 19, 2002 3:18 PM
To: 'mbp@samba.org'
Subject: rsync - Version ( rsync-2.1.0-SCO3.2v4.2BIN.tar.gz )
Hi,
My name is Salim Soormally. I have downloaded rsync from your web site (
rsync-2.1.0-SCO3.2v4.2BIN.tar.gz ). We are using SCO Unix Sys V - Release
3.2.4....