Displaying 20 results from an estimated 501 matches for "queen".
2012 Mar 04
2
How do I create a scatterplot with two explanatory variables?
...to make a scatterplot of removed versus duration for each type of bee. No matter what I try, I can't seem to get my code to work.
Any help would be appreciated. Thanks!
My r-code:
dat$BEE <- with(dat, factor(BEE, c(1,2)))
plot(REMOVED~DURATION,pch=BEE, col=BEE) REMOVED DURATION BEE
1 0.07 2 QUEEN
2 0.10 5 QUEEN
3 0.11 7 QUEEN
4 0.12 11 QUEEN
5 0.15 12 QUEEN
6 0.19 11 QUEEN
7 0.28 9 QUEEN
8 0.31 9 QUEEN
9 0.30 16 QUEEN
10 0.34 17 QUEEN
11 0.35 12 QUEEN
12 0.39 14 QUEEN
13 0.38 23 QUEEN
14 0.40 35 QUEEN
15 0.42 21 QUEEN
16 0.40 10 QUEEN
17 0.41 9 QUEEN
18 0.42 7 QUEEN
19 0.48 11 QUEEN
20 0.48...
2004 Aug 06
0
error when reencoding
...mentation fault.
in other try, i have used `ices -F etc/playlist.txt -R -H 32 -P teste`
and i got these errors:
----
Logfile opened
Error setting LAME parameters. Check bitrate, channels, and sample rate.
Connected to server 127.0.0.1...
Streaming 12672896 bytes from file /home/staff/alfredo/mp3/queen/Queen - Who
Wants to Live Forever (Highlander)(1).mp3
bitstream problem: resyncing...
Warning: Encountered error while transfering
/home/staff/alfredo/mp3/queen/Queen - Who Wants to Live Forever
(Highlander)(1).mp3. [Libshout reported send error: Unknown libshout error.]
Streaming 7899428 bytes...
2007 Aug 21
9
Seattle Meetup?
Hi all,
It looks like I''ll be in Seattle on Sunday, September 16th through
Tuesday the 18th, and I''d like to have Puppet Meetup either Sunday or
Monday night.
On Adam''s recommendation, I''ll be staying at the Queen Anne Inn, so
something near there would be best. Hopefully Adam or Blake can do
the actual organization. :)
Any takers?
--
What is the sound of Perl? Is it not the sound of a wall that
people have stopped banging their heads against?
--Larry Wall in <1992Aug26.184221.2962...
2000 Mar 29
2
regularly lattice & neighbors
Dear R-users,
Is there a procedure to identify neighbors in a regular lattice using either a
"rook" or a "queen" criterium? To be more specific, suppose:
My lattice:
1 2 3
4 5 6
7 8 9
"Rook" Neighbors
1 has neighbors 2,4
2 has neighbors 1,3,5
...
5 has neighbors 2,4,6,8
"Queen Neighbors"
1 has neighbors 2,4,5
2 has neighbors 1,3,4,5,6
For each case, the final output would be a...
2007 Dec 31
2
"and" without boolean operators
Salve,
Thank you very much for your kind answer. Spelling correction works very
well now. I have just one more question.
I am using Xapian::QueryParser() to create the Query. The flags are:
FLAG_PHRASE | FLAG_LOVEHATE | FLAG_WILDCARD
If I search, lets say for "king queen" (without quotes), I get all documents
with either "king" or "queen". Is there a chance to find only documents with
"king" and "queen" without boolean operators (like Google)?
Thank you very much
Markus
2012 May 11
0
Additional info: help with SMATR: help with pairwise comparisons using MA regression?
Also, this works (taking out multcomp=TRUE, multcompmethod="adjusted"):
com.test=ma(Head.W1~Leg.3.1+Site, type="elevation", data=queens)
print(com.test)
....so for some reason it will do an MA regression on all my data
point together, but shows an error when I try to do pairwise
comparisons between groups.
Thank you,
Ioulia
--------
On Fri, May 11, 2012 at 2:09 AM, Ioulia Bespalova
<bespa20i at mtholyoke.edu> wrote:
>...
2013 Aug 20
1
obtener matriz de contactos
Hola Freddy.
Yo parto de un shape en que tengo los típicos archivos .shp, .sbx, .sbn,
.shx y .dbf.
En la tabla tengo el área de los poligonos en m2, el perímetro, el estado y
el código ISO del estado dispuesto por el SGM.
¿Me puedes orientar un poco más?
Gracias,
Sebastían.
El 14 de agosto de 2013 16:19, Freddy Omar López Quintero <
freddy.vate01@gmail.com> escribió:
> Hola
2015 Sep 27
2
v2.2.19 release candidate released
Timo,
I have to test something on one of the BSD, namely related to src/lib/net.c .
--
Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca
God,Queen and country!Never Satan President Republic!Beware AntiChrist rising!
http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism
Time for Stephen to move on on Oct 19 2015!!
2006 Dec 11
2
FW: R
...ake[1]:
*** [R] Error 1 make[1]: Leaving directory `/contrib/R-2.4.0/src' make: ***
[R] Error 1
Do not hold out much hope from mailing list, as they did not answer my last
email, but have included it anyway.
Cheers
Derek
================================
Derek McPhee
Information Services
Queen's University Belfast
e-mail da.mcphee at qub.ac.uk
Tel 028 90973840
Fax 028 90975066
2010 Aug 24
3
generate random numbers from a multivariate distribution with specified correlation matrix
...ion matrix instead of covariance matrix for the
multivariate
normal distribution.
Does anybody know how to generate the random numbers from a multivariate
normal distribution with specified correlation matrix? What about
other non-normal
distribution?
Thanks a lot.
--
-----------------
Jane Chang
Queen's
[[alternative HTML version deleted]]
2019 Nov 20
2
[Clang] memory allocation
...int i, j;
char p, q;
printf("jjjjjjjjj: %d, %p\n", n,&j);
for (i = 0; i < n; i++) {
p = a[i];
for (j = i + 1; j < n; j++) {
q = a[j];
if (q == p || q == p - (j - i) || q == p + (j - i))
return 0;
}
}
return 1;
}
void nqueens (int n, int j, char *a, int *solutions)
{
int i,res;
sharedVar = sharedVar * j - n;
if (n == j) {
/* good solution, count it */
*solutions = 1;
return;
}
printf("solutions: %d, %p\n", j, &solutions);
*solutions = 0;
/* try each possible position for queen <j>...
2010 Jul 10
3
a very particular plot
...splays histogram data,
so that the y values which have more density in the subframe are darker, and
the ones with less density are lighter.
I know this is fairly particular, and may not be possible, but it would be
really great for me!
If anyone can help - thanks!
--
Ian Bentley
M.Sc. Candidate
Queen's University
Kingston, Ontario
[[alternative HTML version deleted]]
2009 Nov 03
1
CentOS Social, London, UK : 10 Nov 2009
Hi Guys,
Some of us are yet-again going to be getting together for a CentOS Beer
evening on the 10th Nov 2009 at the Kings and Queens. The Pub is mostly
quiet during the week, has a fair selection of drinks and is central
enough to most people in the city.
The full address is :
King & Queens,
1 Foley St,
London,
W1W 6DL?
Here is a Google Street view of the place http://bit.ly/1PchSO
We should be there from about 6:30pm...
2010 Oct 10
9
Dovecot 2.0.5 and BSDI 4.3 again
...format = %08Xu%08Xv
}
plugin {
home=/usr/dovecot2
}
service postlogin {
executable = /usr/dovecot2/libexec/dovecot/script-login /usr/dovecot2/libexec/dovecot/rawlog
unix_listener postlogin {
}
}
--
Member - Liberal International This is doctor at nl2k.ab.ca Ici doctor at nl2k.ab.ca
God, Queen and country! Never Satan President Republic! Beware AntiChrist rising!
http://twitter.com/rootnl2k http://www.facebook.com/dyadallee
Are you a real human: http://www.cuttingedge.org/news/n1334.cfm
2009 Dec 20
3
insert a dot to the numbers
Hi,
Anybody can give me some hints on the following problem?
s<-c(1101111,112321)
I want to insert a dot "." after the third number and get the following
results.
110.1111
112.321
Thanks a lot.
--
-----------------
Jane Chang
Queen's
[[alternative HTML version deleted]]
2007 May 13
2
extracting text contained in brackets ("[ ... ]") from a character string?
...data[3]" "testdata[-4]", "testdata[-4g]",
I wish to "extract" the string enclosed in brackets?
What is a good way to do this?
e.g.
fun(testdata[3]) = '3'
fun(testdata[-4g]) = '-4g'
---------------------------------
Moody friends. Drama queens. Your life? Nope! - their life, your story.
[[alternative HTML version deleted]]
2011 Feb 16
1
read.table - reading text variables as text
...rted as a factor. I notice there are other
read.table options related to this issue, but the help files don't appear to
contain much detail on these.
Any help would be greatly appreciated.
Best wishes
Nick Riches
--
Lecturer in Speech and Language Pathology
Room 1.9
King George VI Building
Queen Victoria Road
University of Newcastle-upon Tyne
NE1 7RU
0191 222 8720
[[alternative HTML version deleted]]
2011 Dec 24
2
readLines errors
...geo?q=+%E5%89%8D%E6%B0%B4%E5%86%B2>
,+¹ó³Ø+°²»Õ,+Öйú&output=csv&key=ABQIAAAAq8Fnd_oUka-7RdS6BrD7GBTqeABoQuNTXS36G_rkiwQnKRW6GBTkns8JpKz6y6dScgB8827dlddUlg&language=zh-CN"),
n=1, warn=FALSE,encoding="UTF-8")
[1] "400,0,0,0"
--
-----------------
Jane Chang
Queen's
[[alternative HTML version deleted]]
2016 Nov 04
2
Repeat e-mail syndrome shows up in 2.2.26+
...Dovecot was adding the UID by 1 for some odd reason.
Can you track down why this is occuring?
And even IMAP folder cannot update.
I right have to revert to 2.2.25 for now until these issues
are addressed.
--
Member - Liberal International This is doctor@@nl2k.ab.ca Ici doctor@@nl2k.ab.ca
God,Queen and country!Never Satan President Republic!Beware AntiChrist rising!
http://www.fullyfollow.me/rootnl2k Look at Psalms 14 and 53 on Atheism
Time for the USA to hold a referendum on its republic and vote to dissolve!!
2016 Nov 08
3
Repeat e-mail syndrome shows up in 2.2.26+
On 11/8/2016 2:24 AM, A.L.E.C wrote:
> On 08.11.2016 08:04, The Doctor wrote:
>
>> In another account, I see lots of white items in RoundCude as if these items are
>> hidden from Thunderbird hance blocking the IMAP Client from deleting e-mails.
>
> I guess these "white items" are messages marked as deleted but not
> expunged. It is normal with Thunderbird, it