Displaying 20 results from an estimated 41 matches for "p22".
Did you mean:
22
2012 May 13
2
Discrete choice model maximum likelihood estimation
...tion(b2,b,t) {
P <- exp(b2+b*(t==1))/(1-exp(b2+b*(t==1)))
return(P)
}
P1 <- function(b1,b,t) {
P <- exp(b1+b*(t==1))/(1-exp(b1+b*(t==1)))
return(P)
}
# Likelihood functions for discrete choices for a=3, a=2 and a=1
respectively
L3 <- function(b1,b2,b3,b,t) {
P11 <- P1(b1,b,t)
P22 <- P2(b2,b,t)
P33 <- P3(b3,b,t)
L3l <- (P11=1)*(P22=1)*(P33=1)
return(L3l)
}
L2 <- function(b1,b2,b3,b,t) {
P11 <- P1(b1,b,t)
P22 <- P2(b2,b,t)
P33 <- P3(b3,b,t)
L2l <- (P11=1)*(P22=1)*(P33=0)
return(L2l)
}
L1 <- function(b1,b2,b,t) {
P11 <- P1(b1,b,t)
P22 <- P2...
2005 Jul 13
2
Proportion test in three-chices experiment
...ong three choices (this was a
forced-choice design). The experiment runs under two different
conditions and the data is like the following:
N1 : count of trials in condition 1
p11, p12, p13: proportions of choices 1, 2, and 3 in condition 1
N2 : count of trials in condition 2
p21, p22, p23: proportions of choices 1, 2, and 3 in condition 2
How can I test whether the triple (p11,p12,p13) is different from the
triple (p21,p22,p23)? Clearly, prop.test does not help me here, because
it relates to two-choices tests.
I apologize if the answer is trivial, but I am relatively new...
2009 Apr 04
1
Problem with sample()
...0271368777644200000
p14 = B * 0.0044419396829380100000
p15 = B * 0.0039419891495863900000
p16 = B * 0.0035116072275277300000
p17 = B * 0.0031386664156453200000
p18 = B * 0.0028136371529372800000
p19 = B * 0.0025289275577435600000
p20 = B * 0.0022784155915110200000
p21 = B * 0.0020571110286774600000
p22 = B * 0.0018609069242876300000
p23 = B * 0.0016863940046095700000
p24 = B * 0.0015307200810669000000
p25 = B * 0.0013914821958686000000
p26 = B * 0.0012666429097088400000
p27 = B * 0.0011544646324891600000
p28 = B * 0.0010534576028534100000
p29 = B * 0.0009623383079593670000
p30 = B * 0.00087999597...
2005 Jul 08
1
small lan - novice - 2
...west:~ # smbclient -L WEST -Uroot%
Connection to WEST failed
west:~ # smbclient -L WEST -Uroot
Connection to WEST failed
west:~ # smbclient -L WEST -U
Connection to WEST failed
west:~ # smbclient -L WEST -U%
Connection to WEST failed
west:~ #
I tried variations on the example [S3be-p22] but none worked.
I presume I am doing something wrong - the question is what?
Can you help?
Thanks
--
Cheers,
Serge [Naggar Consulting]
2007 Apr 11
1
Programming Problem (for loop, random # control, 3 dimentional graph)
...f K -.5,0,.5,1,2,3,4,5
# in the function g()
p1=g(-5,-.5)
p2=g(-5,0)
p3=g(-5,0.5)
p4=g(-5,1)
p5=g(-5,2)
p6=g(-5,3)
p7=g(-5,4)
p8=g(-5,5)
p9=g(-4,-.5)
p10=g(-4,0)
p11=g(-4,0.5)
p12=g(-4,1)
p13=g(-4,2)
p14=g(-4,3)
p15=g(-4,4)
p16=g(-4,5)
p17=g(-3,-.5)
p18=g(-3,0)
p19=g(-3,.5)
p20=g(-3,1)
p21=g(-3,2)
p22=g(-3,3)
p23=g(-3,4)
p24=g(-3,5)
p25=g(-2,-.5)
p26=g(-2,0)
p27=g(-2,.5)
p28=g(-2,1)
p29=g(-2,2)
p30=g(-2,3)
p31=g(-2,4)
p32=g(-2,5)
p33=g(-1,-.5)
p34=g(-1,0)
p35=g(-1,.5)
p36=g(-1,1)
p37=g(-1,2)
p38=g(-1,3)
p39=g(-1,4)
p40=g(-1,5)
p41=g(-0.5,-0.5)
p42=g(-0.5,0)
p43=g(-0.5,0.5)
p44=g(-0.5,1)
p45=g(-0...
2009 Jan 11
4
How to get solution of following polynomial?
Hi, I want find all roots for the following polynomial :
a <- c(-0.07, 0.17); b <- c(1, -4); cc <- matrix(c(0.24, 0.00, -0.08,
-0.31), 2); d <- matrix(c(0, 0, -0.13, -0.37), 2); e <- matrix(c(0.2, 0,
-0.06, -0.34), 2)
A1 <- diag(2) + a %*% t(b) + cc; A2 <- -cc + d; A3 <- -d + e; A4 <- -e
fn <- function(z)
{
y <- diag(2) - A1*z - A2*z^2 - A3*z^3 - A4*z^4
2009 Nov 02
2
a prolem with constrOptim
...n = data[(1+4*(i-1)):(4*i)]
p = theta[(1+3*(i-1)):(3*i)]
P = 1-sum(p)
S[(1+3*(i-1)):(3*i)] = n[1:3]/p-n[4]/P
}
S
}
#where theta=(p11,p12,p13,p21,p22,p23,...,pK1,pK2,pK3).
#The function Rmat calculates the restriction matrix needed for constrained estimation
Rmat = function(k)
{
R = matrix(1,4,3)
R[1,2] = R[1,3] = R[2,3] = R[3,2] = 0
RR = cbind(-R,R)
RRR = matrix(0,4*(k-1),3*k)...
2007 Jun 13
1
Apache proxy error with uploads only
Is there a *searchable* archive for this mailing list?
If not, I''m using Apache 2.2.3 and Mongrel 1.0.1 on FreeBSD 5.4-
RELEASE-p22 #11. Google gave me the following solutions for uploads
that result in a proxy error:
SetEnv force-proxy-request-1.0 1
SetEnv proxy-nokeepalive 1
or
KeepAlive Off
in Apache''s VirtualHost directive.
Regrettably none of these work. Have any more suggestions been made
on thi...
2006 Mar 22
1
FreeBSD Security Advisory FreeBSD-SA-06:11.ipsec
...LENG_5_4, 5.4-RELEASE-p13)
2006-03-22 16:02:35 UTC (RELENG_5_3, 5.3-RELEASE-p28)
2006-03-22 16:02:49 UTC (RELENG_4, 4.11-STABLE)
2006-03-22 16:03:05 UTC (RELENG_4_11, 4.11-RELEASE-p16)
2006-03-22 16:03:25 UTC (RELENG_4_10, 4.10-RELEASE-p22)
CVE Name: CVE-2006-0905
For general information regarding FreeBSD Security Advisories,
including descriptions of the fields above, security branches, and the
following sections, please visit
<URL:http://www.freebsd.org/security/>.
I. Background
IPsec is a set of protocols, includi...
2006 Mar 22
1
FreeBSD Security Advisory FreeBSD-SA-06:11.ipsec
...LENG_5_4, 5.4-RELEASE-p13)
2006-03-22 16:02:35 UTC (RELENG_5_3, 5.3-RELEASE-p28)
2006-03-22 16:02:49 UTC (RELENG_4, 4.11-STABLE)
2006-03-22 16:03:05 UTC (RELENG_4_11, 4.11-RELEASE-p16)
2006-03-22 16:03:25 UTC (RELENG_4_10, 4.10-RELEASE-p22)
CVE Name: CVE-2006-0905
For general information regarding FreeBSD Security Advisories,
including descriptions of the fields above, security branches, and the
following sections, please visit
<URL:http://www.freebsd.org/security/>.
I. Background
IPsec is a set of protocols, includi...
2008 Nov 04
1
Behaviour of /./ in from file on version 3.0.4
...don't want the data to be
kept in the backups as part of H (the drive letter could change), I used the
/./ to drop the exposure of the H drive. It worked great under version
2.6.8.
Here?s the rsync call
rsync -rltgoD --delete --partial-dir=./rsync_partial --chmod=Du+w,u+r,u+x
-e "ssh ?p22 -i \"/cygdrive/c/Documents and
Settings/Administrator/.ssh/id_dsa\"" --stats --files-from=<x>
the from file <x> contains (samples)
/cygdrive/H/./c_projects/
/cygdrive/H/./documents/
/cygdrive/H/./Installs/
/cygdrive/H/./MyDocuments/
rsync 3.0.4 gives the followi...
2004 May 26
0
FreeBSD Security Advisory FreeBSD-SA-04:11.msync
...TC (RELENG_4, 4.10-STABLE)
2004-05-25 23:07:55 UTC (RELENG_5_2, 5.2.1-RELEASE-p8)
2004-05-22 23:09:19 UTC (RELENG_4_10, 4.10-RELEASE)
2004-05-25 23:01:21 UTC (RELENG_4_9, 4.9-RELEASE-p9)
2004-05-25 23:01:19 UTC (RELENG_4_8, 4.8-RELEASE-p22)
CVE Name: CAN-2004-0435
FreeBSD only: YES
For general information regarding FreeBSD Security Advisories,
including descriptions of the fields above, security branches, and the
following sections, please visit
<URL:http://www.freebsd.org/security/>.
I. Background
The msync(2) sys...
2004 May 26
0
FreeBSD Security Advisory FreeBSD-SA-04:11.msync
...TC (RELENG_4, 4.10-STABLE)
2004-05-25 23:07:55 UTC (RELENG_5_2, 5.2.1-RELEASE-p8)
2004-05-22 23:09:19 UTC (RELENG_4_10, 4.10-RELEASE)
2004-05-25 23:01:21 UTC (RELENG_4_9, 4.9-RELEASE-p9)
2004-05-25 23:01:19 UTC (RELENG_4_8, 4.8-RELEASE-p22)
CVE Name: CAN-2004-0435
FreeBSD only: YES
For general information regarding FreeBSD Security Advisories,
including descriptions of the fields above, security branches, and the
following sections, please visit
<URL:http://www.freebsd.org/security/>.
I. Background
The msync(2) sys...
2017 Jan 27
1
Disallow binding via tinc
That would probably work, too; it's harder to configure though and
easier to get wrong.
If I could avoid having the tun0, that would trivially solve the problem.
On 27/01/17 09:41, Azul wrote:
> Why not just firewall incoming traffic on the clients?
>
>
> On 27 Jan 2017 8:37 am, "Niklas Hambüchen" <mail at nh2.me
> <mailto:mail at nh2.me>> wrote:
>
2011 Mar 16
2
Increased memory and cpu usage when migrating from MRI 1.8.6 to REE 1.8.7
Hello,
We''ve been migrating our fairly large Rails 1.2 application from MRI 1.8.6
to REE 1.8.7, and in the process we''ve encountered some fairly odd behavior.
Namely, instead of the expected reduction in memory usage, we''re seeing an
increase in memory usage by around 40% and, along with it, an increase in
processor usage.
The stock 1.8.7 implementation performs
2006 Mar 22
0
FreeBSD Security Advisory FreeBSD-SA-06:12.opie
...LENG_5_4, 5.4-RELEASE-p13)
2006-03-22 16:02:35 UTC (RELENG_5_3, 5.3-RELEASE-p28)
2006-03-22 16:02:49 UTC (RELENG_4, 4.11-STABLE)
2006-03-22 16:03:05 UTC (RELENG_4_11, 4.11-RELEASE-p16)
2006-03-22 16:03:25 UTC (RELENG_4_10, 4.10-RELEASE-p22)
CVE Name: CVE-2006-1283
For general information regarding FreeBSD Security Advisories,
including descriptions of the fields above, security branches, and the
following sections, please visit
<URL:http://www.freebsd.org/security/>.
I. Background
OPIE is a one-time password system d...
2006 Mar 22
0
FreeBSD Security Advisory FreeBSD-SA-06:12.opie
...LENG_5_4, 5.4-RELEASE-p13)
2006-03-22 16:02:35 UTC (RELENG_5_3, 5.3-RELEASE-p28)
2006-03-22 16:02:49 UTC (RELENG_4, 4.11-STABLE)
2006-03-22 16:03:05 UTC (RELENG_4_11, 4.11-RELEASE-p16)
2006-03-22 16:03:25 UTC (RELENG_4_10, 4.10-RELEASE-p22)
CVE Name: CVE-2006-1283
For general information regarding FreeBSD Security Advisories,
including descriptions of the fields above, security branches, and the
following sections, please visit
<URL:http://www.freebsd.org/security/>.
I. Background
OPIE is a one-time password system d...
2016 Apr 21
2
FirewallD issue
...nnected through VPN):
moonwolf ? ~ ? nmap 10.0.49.14
Starting Nmap 7.12 ( https://nmap.org ) at 2016-04-21 11:59 CEST
Note: Host seems down. If it is really up, but blocking our ping probes,
try -Pn
Nmap done: 1 IP address (0 hosts up) scanned in 0.06 seconds
moonwolf ? ~ ? nmap 10.0.49.14 -Pn -p22
Starting Nmap 7.12 ( https://nmap.org ) at 2016-04-21 11:59 CEST
Nmap scan report for svn.karakkhaz.dwarfs (10.0.49.14)
Host is up (0.015s latency).
PORT STATE SERVICE
22/tcp filtered ssh
Nmap done: 1 IP address (1 host up) scanned in 0.05 seconds
moonwolf ? ~ ? ping 10.0.49.14
PING 10.0.4...
2006 Sep 30
9
FreeBSD Security Advisory FreeBSD-SA-06:22.openssh
...TC (RELENG_6_1, 6.1-RELEASE-p10)
2006-09-30 19:53:21 UTC (RELENG_6_0, 6.0-RELEASE-p15)
2006-09-30 19:54:03 UTC (RELENG_5, 5.5-STABLE)
2006-09-30 19:54:58 UTC (RELENG_5_5, 5.5-RELEASE-p8)
2006-09-30 19:55:52 UTC (RELENG_5_4, 5.4-RELEASE-p22)
2006-09-30 19:56:38 UTC (RELENG_5_3, 5.3-RELEASE-p37)
2006-09-30 19:57:15 UTC (RELENG_4, 4.11-STABLE)
2006-09-30 19:58:07 UTC (RELENG_4_11, 4.11-RELEASE-p25)
CVE Name: CVE-2006-4924, CVE-2006-5051
For general information regarding FreeBSD Secu...
2006 Sep 30
9
FreeBSD Security Advisory FreeBSD-SA-06:22.openssh
...TC (RELENG_6_1, 6.1-RELEASE-p10)
2006-09-30 19:53:21 UTC (RELENG_6_0, 6.0-RELEASE-p15)
2006-09-30 19:54:03 UTC (RELENG_5, 5.5-STABLE)
2006-09-30 19:54:58 UTC (RELENG_5_5, 5.5-RELEASE-p8)
2006-09-30 19:55:52 UTC (RELENG_5_4, 5.4-RELEASE-p22)
2006-09-30 19:56:38 UTC (RELENG_5_3, 5.3-RELEASE-p37)
2006-09-30 19:57:15 UTC (RELENG_4, 4.11-STABLE)
2006-09-30 19:58:07 UTC (RELENG_4_11, 4.11-RELEASE-p25)
CVE Name: CVE-2006-4924, CVE-2006-5051
For general information regarding FreeBSD Secu...