search for: effet

Displaying 20 results from an estimated 27 matches for "effet".

Did you mean: effect
2008 Jul 30
1
model mix problem. FALSE CONVERGENCE
...n = c("error"), parent = 0) } ## ANOVA 2 facteurs Resultats=NULL Res=NULL i=0 while(i!=length(ions)) { i=i+1 myion=toto[,i] mixed=lme(myion ~ v1*v2, random= ~ 1 | Subject/v1,method="REML") ## effet al?atoire sujet(v1) #summary(mixed) #anova(mixed) zz=anova(mixed) Res <- data.frame(ions[i],toto1[i,2:(dim(toto1)[2]-n)],t(zz[-1,4]),toto1[i,c((dim(toto1)[2]-n+1):dim(toto1)[2])]) Resultats <- rbind(Resultats,Res) } if (i!=...
2011 Feb 03
0
Need advises on mixed-effect model ( a concrete example)
...################################## 1st APPROACH Using Mean RT of participants as my DV. ###################################### # first fit a model with single fixed effects of condition and groups result.lme1<-lme(RT~CONDITION+GROUP,data= meandata,random=~1|SUBJECT, method="ML") plot(effet.lme) # residuals are goodlooking #then I try to add an interaction term in the model result.lme2<-lme(RT~CONDITION*GROUP,data= meandata,random=~1|SUBJECT, method="ML") #I then compare both models anova(result.lme1,result.lme2) #gives Model df AIC BIC logLik...
2004 Sep 03
2
arima et graphique
bonjour, je rencontre quelques soucis au niveau de l'utilisation des fonctions arima.forecast/predict; en effet elles sont dites inconnues alors que j'ai bien install?? et charg?? le package "ts". Aussi, j'aimerai savoir comment visualiser le graphique des pr??visions avec arima et celui des donn??es brutes dans la m??me fen??tre. Tout en vous souhaitant bonne r??ception de ce mail, je v...
2009 Jun 28
2
Set hostname via DHCP ?
...... # Envoyer les noms d'h?tes aux clients use-host-decl-names on; # Adresses statiques host babasse { hardware ethernet 00:0d:61:ae:6b:8f; fixed-address 192.168.1.249; } --8<------- Now the question is: how should the configuration look like on the client side, so the hostname gets effetively fetched from the DHCP server? During the initial install, I assigned hostnames manually to every machine. Cheers, Niki Kovacs
2007 Jun 12
0
[LLVMdev] How to call native functions from bytecode run in JIT?
..."get5" was a C+ + function whose name was mangled to "__Z4get5v". Surrounding it by extern "C" helped a lot :) Now the function is found by the JIT and I can call it using EE->runFunction als well as using a CallInst. > Does this work? However, one strange effet remains: if I first call the function using EE->runFunction and then try to call it using a CallInst inside another function I get the old "relocation" error in PPCJITInfo.cpp, again. Using a CallInst first, then runFunction and then a CallInst again works, though. For my proje...
2007 Jun 12
3
[LLVMdev] How to call native functions from bytecode run in JIT?
On Tue, 12 Jun 2007, Jan Rehders wrote: >> Jan, how are you doing this? Are you creating an external LLVM >> Function object named "get5", then using EE::addGlobalMapping? If >> 'get5' exists in the address space, why not just let the JIT resolve it >> (which will then create the stub)? > > Yes. I create a Function with matching signature,
2002 Oct 23
1
re stagiaire embetée ...
merci de m'accorder un petit peu de temps ... c'est gentil de votre part ... le service cron que j'utilise est sur PC l'appli doit être lancée toutes les minutes le .exe et le .ini se trouvent sur G, qui est en effet une partition montée via samba sur une station NT si ca peut être plus clair, voici un test que j'ai fait : - test.cmd est un fichier de commande permettant de supprimer tous les fichiers d'un répertoire - 1er test : en lancant test.cmd et avec un repertoire sous c : fichiers supprimés -...
2017 Oct 13
1
Information
Hello, Can you help me about the R function to estimate Vector Autoregressive (VAR) model allowing fot the GARCH effet : VAR-DCC-GARCH model please. <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&utm_content=webmail> Garanti sans virus. www.avg.com <http://www.avg.com/email-signature?utm_medium=email&utm_source=link&utm_campaign=sig-email&a...
2012 Nov 12
1
R lmer & SAS glimmix
...xed effects (Intercept) age_cat2. 76-85 ans age_cat3. 66-75 ans age_cat4. 41-65 ans -3.5766898 -0.0159466 -0.1919500 -0.4834741 age_cat5. 18-40 ans -1.2843977 But from SAS I get : Valeur Erreur Valeur Effet age_cat estimée type DDL du test t Pr > |t| Intercept -4.8608 0.2859 3 -17.00 0.0004 age_cat 1. >85-108 a 1.2841 0.2589 168E3 4.96 <.0001 age_cat 2. 76-85 ans...
2012 Aug 29
1
spatial correlation in lme and huge correlation matrix (memory limit)
Hi, I'm trying to introduce a (spatial) exponential correlation structure (with range=200 and nugget.effet of 0.3) in a lme model of this form: lme(ARBUS~YEAR, random=~1|IDSOUS). The structure of the data is "IDSOUS" "XMIN" "YMAX" "YEAR" "ARBUS" with 2 years of data and 5600 points for each year. I do: corstr<-corExp(value=200, form=~XMIN+Y...
2016 Feb 05
1
query_name_response: Multiple (2)
...nting = bsd printcap name = /dev/null # getpeername failed....... # smb ports = 139 #process_usershare_file: stat of /var/lib/samba/usershares/blabla failed. Permission non accordée usershare path = # le parametre "lanman auth" est maintenant par defaut a "no" ce qui a pour effet de desactiver lanman auth. # Pour cette raison l'attribut sambaLMPassword ne sera pas genere # L'effet de cette modification est que les anciens clients windows ne pouront pas se connecter # mettre a yes pour le reactiver lanman auth = yes Here is the network configuration : ifconfig...
2007 Jun 13
5
[LLVMdev] How to call native functions from bytecode run in JIT?
...gt; + function whose name was mangled to "__Z4get5v". Surrounding it by > extern "C" helped a lot :) Now the function is found by the JIT and I > can call it using EE->runFunction als well as using a CallInst. > >> Does this work? > > However, one strange effet remains: if I first call the function > using EE->runFunction and then try to call it using a CallInst inside > another function I get the old "relocation" error in PPCJITInfo.cpp, > again. Using a CallInst first, then runFunction and then a CallInst > again works, though....
2010 Aug 13
1
Lattice: Superimposing histograms with different colors and transparency effects
...lot. For several reasons, including that I like it, I want to use the lattice package. I have several questions regarding the use of the 'histogram' function with a group structure. I first thought that defining well-chosen values of alpha in trellis parameters would give the transparency effets, but this is not the case: library(lattice) # Some data x = c(rnorm(100), rnorm(100,2), rnorm(100,4)) grouping = gl(3,100,300) # Trellis parameters trellis.par.set("superpose.polygon"=list(alpha=rep(.5,3))) histogram(~x ,groups=grouping, type = "density", panel = &qu...
2003 Sep 28
0
Problem with sas.get function in Hmisc library
...t... > mydata <-sas.get(sasout=c('dict','data','formats','specmiss'),id='ident') Error in sas.get(sasout = c("dict", "data", "formats", "specmiss"), id = "ident") : unused argument(s) (sasout ...) And effetively, there seems to be no 'sasout' argument in the function call : "function (library, member, variables = character(0), ifs = character(0), format.library = library, id, dates. = c("sas", "yymmdd", "yearfrac", "yearfrac2"), keep.log = TRUE,...
2017 Aug 03
1
switch of cex adjustment with mfrow?
> use > > par(mfrow=c(2,2), cex = 1) This does work as written. But when I first checked single-call setting, an mfrow change to cex in the same call superseded cex=1; hence my suggestion to use separate calls to par(). Further checking confirms that the result of a call to par is dependent on argument specification order in the call: par(mfrow=c(2,2), cex = 1) par("cex") #
2008 Feb 12
2
re cognizing patterns
DeaRs, i'm looking for some references on a statement as follows: "Humans are good at spotting trends and patterns in data, but they are also good at spotting those patterns where none really exist". This is not verbatim but there must be some scholarly work on this. I can't remember where I came across it - perhaps I dreamed it up? Help, anyone? Best wishes Paul -- View this
2016 Feb 05
2
query_name_response: Multiple (2)
Hello, does someone could explain me what means this message : query_name_response: Multiple (2).... example : samba4 nmbd[88458]: query_name_response: Multiple (2) responses received for a query on subnet 192.168.151.237 for name SAMBA_DOMAIN<1d>. samba4 nmbd[88458]: This response was from IP 192.168.152.237, reporting an IP address of 192.168.152.237. The server has 3 nic (vlans)
2006 Apr 24
1
Modelling heteroskedasticity in a multilevel model
Dear list members, I am facing a 3-level model, for which my research hypotheses suggest that the variance of both level-1 and level-2 residuals may be a function of a level-3 variable. To be a bit more clear: I am fitting a longitudinal model for a panel of companies grouped in industries. I suggest that some industry variables may create 'unexpected' shocks at especific points in
2006 Aug 14
2
finders et sous-classes
Bonjour, c''est ma premi?re question ici car d''habitude il me suffit de parcourir de tels forum pour trouver r?ponse ? mes questions. Donc cette fois, c''est du s?rieux, je n''ai pas r?ussi ? trouver la moindre ?vocation ? mon probl?me. Je vous explique. J''ai une famille de mod?les : class Attachement < ActiveRecord::Base ... end class Illustration
2007 Jun 14
0
[LLVMdev] How to call native functions from bytecode run in JIT?
...Z4get5v". Surrounding it by >> extern "C" helped a lot :) Now the function is found by the JIT and I >> can call it using EE->runFunction als well as using a CallInst. >> >> >>> Does this work? >>> >> However, one strange effet remains: if I first call the function >> using EE->runFunction and then try to call it using a CallInst inside >> another function I get the old "relocation" error in PPCJITInfo.cpp, >> again. Using a CallInst first, then runFunction and then a CallInst >> again...