search for: faktor

Displaying 5 results from an estimated 5 matches for "faktor".

Did you mean: factor
2017 Nov 30
1
dovecot - 2 Faktor Auth
Hallo Liste, hat sich schon mal jemand mit 2 Faktor Auth f?r dovecot besch?ftigt? Es geht dabei nicht nur um die Absicherung einer Weboberfl?che sondern direkt die Absicherung der Standard pop/imap Verbindungen des Clients. Wir machen das auth bisher ?ber MySQL.? Rein technisch w?rde das gehen, da man die Password-Query beliebig anpassen und auch...
2011 Jul 29
1
Using perm.t.test() upon Matrix/Dataframe columns parted by factor instead of t.test()
...t would be better suited. Herein lies the problem. Whereas i can specify the factor as group parting in the formular expression I am not able to do this with perm.t.test() from deducer. Have fun with this trivial undergraduate problem. Code: c(rep("A", 5), rep("B", 5))->Faktor matrix(rnorm(100, mean=20, sd=4), nrow=10, ncol=10)->M colnames(M) <- c("species1","species2", "species3","species4","species5","species6","species7","species8","species9", "species10") ##...
2011 Jun 23
0
Fwd: Re: Help with winbugs code
...there some variable that has to be initialized. what should i do? ...very grateful for your help... model{ for(i in 1:N){ #model persamaan pengukuran for(j in 1:P){ y[i,j]~dnorm(mu[i,j],psi [j]) I(thd [j,z[i,j]],thd[j,z[i,j]+1]) ephat[i,j]<-y[i,j] -mu[i,j] } #faktor Budaya Organisasi mu[i,1]<-xi[i,1] mu[i,2]<-lam[1]*xi[i,1] mu[i,3]<-lam[2]*xi[i,1] #faktor Kemampuan Pengguna mu[i,4]<-xi[i,2] mu[i,5]<-lam[3]*xi[i,2] mu[i,6]<-lam[4]*xi[i,2] #faktor Mekanisme Dukungan mu[i,7]<-xi[i,3] mu[i,8]<-lam[5]*xi[i,3] mu[i,9]<-lam[6]*xi[i,3] #f...
2010 Sep 16
1
Help for an absolutely r-noob
...d.table("Komfort_Tatsaechliche_ID_Versuchsreihe_1.txt", header=TRUE, sep="\t", dec=",") # tab-getrennte Textdatei names(dat) <- c("id", "resp", "amp") dat$id <- factor(dat$id) # kategoriale Variablen als Faktor definieren dat$amp <- as.numeric(gsub("^([0-9]),([0-9]+) Nm$", "\\1.\\2", dat$amp)) ##### (2) Explorative plots ##### library(lattice) xyplot(resp ~ amp|id, dat, type=c("g","p","smooth")) ##### (3) MIXED-EFFECTS REGRESSION MODELS ##### librar...
2010 Aug 11
0
R and TK Error "can't find objects"
...) : require(tcltk) Ergebnis<-tclVar(c(0,0,0,0,0,0)) Zahl<-tclVar(c(0,0,1,1,1,0)) Exponent<-tclVar(c(1,1,1,1,1,1)) Factor<-tclVar(2) handler.Quadrieren<-function() { tkconfigure(e, textvariable=tclVar(test2(as.numeric(tclObj(Zahl)),as.numeric(tclObj(Exp onent)),as.numeric(tclvalue(Faktor))))) } test2 <- local({source("C:/.../Tk_einfach.R", local = TRUE) environment(Quadrieren) <- .GlobalEnv Quadrieren }) Now I want to do the same with my more difficult work: #Variable initiation and handler-functions in the GUI(TK)-file: AnzKnd<-tclVar(...