search for: p12

Displaying 20 results from an estimated 140 matches for "p12".

Did you mean: 12
2013 Mar 29
3
if clause in data frame
Hi, final<-data.frame() ?? for (m1 in 4:10) { ?????? for (n1 in 4:10){? ?????????? for (x1 in 0: m1) { ????????????? for (y1 in 0: n1) { final<- rbind(final,c(m1,n1,x1,y1)) res}}}} ?final1<-within(final,{flag<-ifelse(x1/m1>y1/n1, 1,0)}) ?head(final1) #? m1 n1 x1 y1 flag #1? 4? 4? 0? 0??? 0 #2? 4? 4? 0? 1??? 0 #3? 4? 4? 0? 2??? 0 #4? 4? 4? 0? 3??? 0 #5? 4? 4? 0? 4??? 0 #6? 4? 4?
2014 Jun 11
2
squid proxy, https and apple store
...nection of a Mac OS X system to the app store by the app store client. Squid is configured using ncsa_auth and I can access https and http websites without a problem. But the app store app is not logging in. I do get ==> /var/log/squid/cache.log <== 2014/06/11 13:23:10| The request CONNECT p12-buy.itunes.apple.com:443 is DENIED, because it matched 'ncsa_users' 2014/06/11 13:23:10| The reply for CONNECT p12-buy.itunes.apple.com:443 is ALLOWED, because it matched 'ncsa_users' 2014/06/11 13:23:10| The request CONNECT p12-buy.itunes.apple.com:443 is ALLOWED, because it matche...
2023 Dec 08
1
Non-shell accounts and scp/sftp
On 07/12/23, Philip Prindeville (philipp_subx at redfish-solutions.com) wrote: > We have a CLI that certain users get dropped into when they log in. One of the things they can go is generate certificates (actually .p12 key/certificate bundles) that they will then scp out of the box from another host. Off topic, and assuming the .p12 bundles need to be post-processed by clients for use by ssh, might it not be worth considering an ssh certificate signing authority? I've made the proof-of-concept noted below,...
2024 Jan 29
1
linear programming in R | limits to what it can do, or my mistake?
...f me see how I can create a coefficient matrix (typically, the LHS) since each line of said matrix, which corresponds to the constraints, needs to be a function of the unknowns in the objective function -- being, p1, p2, p3 and p4. In Maple (for example), this is trivial: ???? cost:=35*p10+55*p12+50*p14+65*p16; cnsts:={t10=640,t12=t10-p10+825,t14=t12-p12+580,t16=t14-p14+925,t16-p16=0,p10<=t10,p12<=t12,p14<=t14,p16<=t16,t10<=1000,t12<=1000,t14<=1000,t16<=1000}; ? ?? Minimize(cost,cnsts,assume={nonnegative}); which yields (correctly): p1=640, p2=405, p3=1000, p4=925...
2020 Oct 10
3
Please need help to finalize my code
...3=0 # initialization of the value to calculate the test level at 10%. 44 # Creation of an n11 list containing the sizes of the different groups 45 n11=list() 46 for (i in 1:q){ 47 n11[[i]]=rep(as.integer(n/R[i]),R[i]) 48 n11[[i]][R[i]]=n-((R[i]-1)*n11[[i]][1]) 49 } 50 # Creation of lists P11 and P12 which contain the probabilities and 51 # the inverses of the empirical probabilities of the different groups respectively 52 P11=list() 53 P12=list() 54 for (i in 1:q){ 55 P11[[i]]=n11[[i]]/n 56 P12[[i]]=n/n11[[i] 57 } 58 # creation of a list containing the W matrices 59 W=list() 60 for (i in 1:...
2024 Jan 30
1
linear programming in R | limits to what it can do, or my mistake?
...coefficient matrix (typically, the LHS) since each line of said > matrix, which corresponds to the constraints, needs to be a function of > the unknowns in the objective function -- being, p1, p2, p3 and p4. > > In Maple (for example), this is trivial: > > ???? cost:=35*p10+55*p12+50*p14+65*p16; > cnsts:={t10=640,t12=t10-p10+825,t14=t12-p12+580,t16=t14-p14+925,t16-p16=0,p10<=t10,p12<=t12,p14<=t14,p16<=t16,t10<=1000,t12<=1000,t14<=1000,t16<=1000}; > ? ?? Minimize(cost,cnsts,assume={nonnegative}); > > which yields (correctly): > >...
2008 Oct 30
2
Adding PDU support to NUT
I've recently been working a bit on adding PDU (http://en.wikipedia.org/wiki/Power_distribution_unit) support in NUT. Some of you might have seen the Powerman thread, which also deals with adding more PDUs support: http://powerman.sourceforge.net/supported.html The result is that we now have support for 2 Eaton | Powerware ePDUs (Managed and Monitored iirc, check http://www.epdu.com). I plan
2002 Oct 22
1
constraints again
I would like to fit the following function on my data. out.nls<-nls(z ~ p1+ (p2*dat)+(p3*dat^2)+(p4*dat^3)+(p5*AgeS)+(p6*AgeS^2)+(p7*AgeS^3)+ (p8*(dat*AgeS))+(p9*(dat^2*AgeS))+(p10*(dat^3*AgeS))+ (p11*(dat*AgeS^2))+(p12*(dat*AgeS^3))+(p13*(dat^2*AgeS^2))+ (p14*(dat^2*AgeS^3))+(p15*(dat^3*AgeS^3)), start=list(p1=0,p2=0,p3=0,p4=0,p5=0,p6=0,p7=0,p8=0,p9=0,p10=0,p11=0,p12=0,p1 3=0,p14=0,p15=0),trace=trace, control=control) which relates the z-score on a IQ subtest to Age (AgeS) and Raw S...
2020 Oct 13
1
Please need help to finalize my code
...test level at 10%. > > 44 # Creation of an n11 list containing the sizes of the different groups > 45 n11=list() > 46 for (i in 1:q){ > 47 n11[[i]]=rep(as.integer(n/R[i]),R[i]) > 48 n11[[i]][R[i]]=n-((R[i]-1)*n11[[i]][1]) > 49 } > > > 50 # Creation of lists P11 and P12 which contain the probabilities and > 51 # the inverses of the empirical probabilities of the different groups > respectively > > 52 P11=list() > 53 P12=list() > 54 for (i in 1:q){ > 55 P11[[i]]=n11[[i]]/n > 56 P12[[i]]=n/n11[[i] > > 57 } > > 58 # creation of...
2001 Sep 26
1
Seeking optimal mixture
This is maybe not directly an R problem but I have used R to try to solve it so I think somebody may be able to help. I have a mixture model with three components and a quadratic Scheffe polynomial p1x1+p2x2+p3x3+p12x1x2+p13x1x3+p23x2x3 fitted to the response. Now I'd like to compute the mixture corresponding the maximum response. Model for Y1 has the parameters p1=124.02 p2=60.973 p3=41.479 p12=106.824 p13=140.422 p23=81.012 Solving a system of linear equations (solve(A,b)) of the partial derivates and p...
2005 Jul 13
2
Proportion test in three-chices experiment
...sh to analyze with R the results of a perception experiment in which subjects had to recognize each stimulus among 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...
2020 Oct 13
0
Please need help to finalize my code
...eation of an n11 list containing the sizes of the different groups > > 45 n11=list() > > 46 for (i in 1:q){ > > 47 n11[[i]]=rep(as.integer(n/R[i]),R[i]) > > 48 n11[[i]][R[i]]=n-((R[i]-1)*n11[[i]][1]) > > 49 } > > > > > > 50 # Creation of lists P11 and P12 which contain the probabilities and > > 51 # the inverses of the empirical probabilities of the different groups > > respectively > > > > 52 P11=list() > > 53 P12=list() > > 54 for (i in 1:q){ > > 55 P11[[i]]=n11[[i]]/n > > 56 P12[[i]]=n/n11[[i] >...
2012 May 28
0
rms::cr.setup and Hmisc::fit.mult.impute
...g the data for the CR model. Any hint is appreciated! Christian library(Hmisc) library(rms) library(mice) ## simulating data (taken from rms::residuals.lrm) set.seed(1) n <- 400 age <- rnorm(n, 50, 10) blood.pressure <- rnorm(n, 120, 15) L <- .05*(age-50) + .03*(blood.pressure-120) p12 <- plogis(L) p2 <- plogis(L-1) p <- cbind(1-p12, p12-p2, p2) cp <- matrix(cumsum(t(p)) - rep(0:(n-1), rep(3,n)), byrow=TRUE, ncol=3) y <- (cp < runif(n)) %*% rep(1,3) y <- as.vector(y) ## generating missing data age[1:40]<-NA blood.pressure[30:70]<-NA ## multiple im...
2007 Jan 08
1
unable to read mail - file istream-raw-mbox.c: line 499...
...ot tho. Does anyone know what might be causing these problems? Relavent info follows: Dovecot version: 1.0.r15 OS: freebsd-5.5 Thank you for all your time and consideration. -- panic: kernel trap (ignored) ----------------------------------------------------------------- FreeBSD 5.4-RELEASE-p12 (SMP - 900x2) Tue Mar 7 19:37:23 PST 2006 /////////////////////////////////////////////////////////////////
2009 Jul 30
1
Dovecot with SSL Client Certification
...[Internet Widgits Pty Ltd]:Ebalaskas.Gr # Organizational Unit Name (eg, section) []:Mail Apps # Common Name (eg, YOUR name) []:myhome # Email Address []:ebalaskas at ebalaskas.gr openssl pkcs12 -export -in dovecot.crt -inkey dovecot.key \ -name "dovecot Certificate Client" -out dovecot.p12 openssl ca -gencrl -keyfile dovecot.key -cert dovecot.crt -out dovecot.crl -selfsign I've imported the dovecot.p12 to thunderbird certificates and dovecot.crt to thunderbird authorities (i've tried claws mail too - same errors) My dovecot.conf is this: [root at myhome dovecot]# dovecot...
2023 Dec 07
3
Non-shell accounts and scp/sftp
Hi, We have a CLI that certain users get dropped into when they log in. One of the things they can go is generate certificates (actually .p12 key/certificate bundles) that they will then scp out of the box from another host. Problem is that if their default shell isn't sh, ash, dash, bash, zsh, etc. then things break. Is there a workaround to allow scp/sftp to continue to work even for non-shell accounts? Thanks, -Philip
2020 Oct 09
1
Aide pour finaliser ce code
...% l3=0 # initialisation de la valeur permettant calculer le niveau de test ? 10% # Cr?ation d'une liste n11 qui contient les tailles des differents groupes n11=list() for (i in 1:q){ n11[[i]]=rep(as.integer(n/R[i]),R[i]) n11[[i]][R[i]]=n-((R[i]-1)*n11[[i]][1]) } # Cr?ation des listes P11 et P12 qui contient les probabilit?s et # les inverses des probabilites empiriques des differents groupes respectivement P11=list() P12=list() for (i in 1:q){ P11[[i]]=n11[[i]]/n P12[[i]]=n/n11[[i]] } # cr?ation d'une liste contenant les matrices W W=list() for (i in 1:q){ w=matrix(0,n,R[i]) w[1:n1...
2012 May 22
11
Puppet First Run after Install failing in module pe_mcollective
...t any issues, the first run of puppet when it tries to deploy the pe_mcollective module fails with the following error. Message: change from notrun to 0 failed: sh -c ''umask 077; keytool - importkeystore -deststorepass puppet -destkeypass puppet -destkeystore broker.ks -srckeystore broker.p12 -srcstorepass puppet -srcstoretype PKCS12 -alias puppet-master.xyz.com'' returned 1 instead of one of [0] at /opt/puppet/share/puppet/modules/pe_mcollective/manifests/posix.pp: 138 Source: /Stage[main]/Pe_mcollective::Posix/Exec[broker_cert_keystore]/returns File: /opt/puppet/share/puppet...
2010 Sep 08
2
Correlation question
...] "P1DVD" "P2" "P3" [19] "P4" "P5" "P6" [22] "P8" "P9" "P10" [25] "P11" "P12" "P7" [28] "SITE" "Errors" "warnings" [31] "Manual" "Total" "H_tot" [34] "HP1.1" "HP1.2" "HP1...
2009 Apr 04
1
Problem with sample()
...0.0319250422239456000000 p4 = B * 0.0235931405138259000000 p5 = B * 0.0183908036724927000000 p6 = B * 0.0148319138404727000000 p7 = B * 0.0122476323793264000000 p8 = B * 0.0102907015781317000000 p9 = B * 0.0087621664064845000000 p10 = B * 0.0075394959058307200000 p11 = B * 0.0065429288357371100000 p12 = B * 0.0057182186634501300000 p13 = B * 0.0050271368777644200000 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.00227841559...