search for: aare

Displaying 20 results from an estimated 40 matches for "aare".

Did you mean: are
2009 Nov 18
4
Switch Help
Dear Rexperts, Given, aar <-function(command) { switch(command, {scrn = cat("scrn :Screening","\n")} {dx = cat("dx :Diagnosis","\n")} {df = cat("df :Don't Forget","\n")} ) } I want to be able to do: aar("dx") # function does cat("dx :Diagnosis","\n")
2001 Apr 25
0
Compilation and use of SFIO library with samba
Hello I try to compile samba 2.0.7 with SFIO libray on solaris 2.7 platform I modify two variables in Samba Makefile LIBS=/aar/masson/NOT_SAVED/sfio/lib/libstdio.a /aar/masson/NOT_SAVED/sfio/src/li b/sfio/libsfio.a -lsec -lgen -lsocket -lnsl -ldl to add sfio's libraries and FLAGS1 = -I/aar/masson/NOT_SAVED/sfio/include $(CFLAGS) -Iinclude -I$(srcdir)/i nclude -I$(srcdir)/ubiqx
2010 Aug 08
2
Importing arguments for use by functions in a script
...n_fct.R")) systime3<-system.time(source("AAdistribution_fct.R")) # run function systime101<-system.time(seqres<-seq_imp_fct("testprot.txt")) systime102<-system.time(patres<-pattern_fct(pattern="SS{1,2}",sequences=seqres)) systime103<-system.time(AAres<-AAdistribution_fct(sequences=patres)) As my list is of functions is growing, I was attempting to write a script that would allow me to semi-automate this. I have created a table of function file names, variables to hold return values, arguments Function Returns Arguments "seq_imp_fct.R...
2009 Jun 11
3
deSolve question
Dear All, I like to simulate a physiologically based pharmacokinetics model using R but am having a problem with the daspk routine. The same problem has been implemented in Berkeley madonna and Winbugs so that I know that it is working. However, with daspk it is not, and the numbers are everywhere! Please see the following and let me know if I am missing something... Thanks a lot in advance,
2016 Aug 04
3
Unable to create GPO "Allow log on locally"
...w Logon Locally" I can add Administrators, Domain Admin to the listbox but I'm unable to apply. When I click "Ok" or "Apply" the dialog won't close. I tested this on a real Win2008R2 Server and it works here without problems. Any ideas how to get out there? There aare no logs (neiter on Samba-Server nor on the Windows RSAT client). Thanks in advance --
2003 Dec 03
0
Redhat Linux 9.0 and Ms Proxy 2.0
Hello, Anyone knows how I can configure my browser in Redhat Linux 9.0 to use my Ms Proxy 2.0? Regards, Patrick. ********************************************************* "Only by much searching and mining are gold and diamonds obtained, and a person can find every truth connected with his being, if he will dig deep into the mine of his soul."
2013 Sep 02
2
como hacer grafico de un modelo setar
Hola, Estoy intentando realizar un ajuste a un modelo setar con R y me surgen problemas a la hora de representar el modelo setar sin la constante. El código es el siguiente: # Estimacion TAR(2;2,2) con delta 1: mod.setar <- setar(x, m = 2, mL = 2, mH = 2, thDelay = 1) mod.setar summary(mod.setar) mod.setarc<-setar(x, m=2, mL=2, mH=2, thDelay=1, include=c("none")) ##eliminamos
2012 Nov 28
2
Plot with residuals in mgcv
Hi, I am using the mgcv package (version 1.7-22.) running the model works fine, but when I want to have a plot with residuals I get an error. fit29<-gam(IV~s(G3)+s(V3)+factor(AAR)+s(D3)+s(RUTE,bs="re"),data=subsf,gamma=1.4,method="ML") plot(fit29,residuals=T) Error in X[, first:last] %*% object$coefficients[first:last] : non-conformable arguments does some one know
2017 Dec 06
2
[PATCH] ptr_ring: Add barriers to fix NULL-pointer exception
While running a multiple VM testscase with each VM running iperf traffic between others the following kernel NULL pointer exception was seen. Race appears when the tun driver instance of one VM calls skb_array_produce (from tun_net_xmit) and the the destined VM's skb_array_consume (from tun_ring_recv), which could run concurrently on another core. Due to which the sock_wfree gets called again
2017 Dec 06
2
[PATCH] ptr_ring: Add barriers to fix NULL-pointer exception
While running a multiple VM testscase with each VM running iperf traffic between others the following kernel NULL pointer exception was seen. Race appears when the tun driver instance of one VM calls skb_array_produce (from tun_net_xmit) and the the destined VM's skb_array_consume (from tun_ring_recv), which could run concurrently on another core. Due to which the sock_wfree gets called again
2019 Jul 22
2
Run llvm pass from standalone project
Hi all, I am trying to use LLVM's AliasAnalysis pass, but from a standalone tool that uses llvm libraries. The following is the code snippet I am currently using. PassBuilder PB; auto mod_manager = ModuleAnalysisManager { }; PB.registerModuleAnalyses(mod_manager); AAResults& AAR = mod_manager.getResult<AAManager>(*M); But the code fails at .getResult with the following error: /llvm/include/llvm/IR/PassManager.h:778: typename PassT::Result& llvm::AnalysisManager<IRUnitT, ExtraArgTs>::getResult(IRUnitT&, ExtraArgTs ...) [with PassT = llvm::...
2008 Dec 12
0
Is there anyone in charge of package wmtsa ?
Here is another occurrence of wmTSA internal error. My time series is a short breathing cycle (2425-Cyle_9.txt). Since wmtsa functions that extract extrema seem to expect longer series than I have, I tried the folowing two tricks: 1) I prolong the 1-cycle series on both ends through duplicating the first value (on the left end( and the last value on the right end as any ties as the 1-cycle
2009 Dec 31
0
How to annotate lattice plots
I am creating a lattice plot with with(ordgdp, xyplot(delivery~AAR | GDP_ID, xlab="AAR", ylab="Actual Arrival Rate")) which works, and gives me 48 plots, one for each GDP_ID. But I would like to put the number of hours that each GDP lasted on the relevant plot. This is given by the following table: >gdphrs GDP_ID 21273 21288 21293 21294 21297 21303 21361 21399 21415 21436
2012 Aug 14
1
Random effects in gam (mgcv 1.7-19)
Hi, I am using the gam function in the mgcv package, I have random effects in my model (bs="re") this has worked fine, but after I updated the mgcv package to version 1.7-19 I recive an error message when I run the model. > fit1<-gam(IV~s(RUTE,bs="re")+s(T13)+s(H40)+factor(AAR)+s(V3)+s(G1)+s(H1)+s(V1)+factor(LEDD),data=data5,method="ML") > summary.gam(fit1)
2006 Feb 17
2
Sorting Multiple Arrays
Hey Cats, I''m having a problem. I''m working with an object that contains a bunch of arrays: var myObject = { "data": [ {"line": [1,"aoo","far"]}, {"line": [2,"boo","ear"]}, {"line": [3,"coo","dar"]}, {"line":
2005 Jul 12
1
Design: predict.lrm does not recognise lrm.fit object
Hello I'm using logistic regression from the Design library (lrm), then fastbw to undertake a backward selection and create a reduced model, before trying to make predictions against an independent set of data using predict.lrm with the reduced model. I wouldn't normally use this method, but I'm contrasting the results with an AIC/MMI approach. The script contains: # Determine full
2008 Oct 01
3
Request for additional patch in CentOS Plus kernel
Hi, I have an Adaptec eSATA card, model 1225SA: http://www.adaptec.com/en-US/products/Controllers/Hardware/sata/entry/AAR-1225SA/ Although the chipset is sata_sil24, it is not recognized by default by the kernel because its PCI ID is different than the ones recognized by this driver on the CentOS kernel. The driver recognizes PCI IDs such as 0x3132, 0x0242, 0x3131, but not 0x0244, which is the
2017 Dec 06
0
[PATCH] ptr_ring: Add barriers to fix NULL-pointer exception
On Wed, Dec 06, 2017 at 09:57:41AM +0000, George Cherian wrote: > While running a multiple VM testscase with each VM running iperf > traffic between others the following kernel NULL pointer exception > was seen. > > Race appears when the tun driver instance of one VM calls skb_array_produce > (from tun_net_xmit) and the the destined VM's skb_array_consume > (from
2009 Feb 26
1
Incorporating cumsum in for loop
Hello Hello i have this DF: > c CHR_NR diffdato1 x 1022 10395 1994-05-30 11.0 39 0 1994 1 1 0 0 24 1 1 24 29100 11377 2003-05-22 17.0 24 0 2003 1 1 0 0 15 1
2016 Aug 05
2
Unable to create GPO "Allow log on locally"
...to the listbox but I'm unable to apply. >> >> When I click "Ok" or "Apply" the dialog won't close. >> >> I tested this on a real Win2008R2 Server and it works here without >> problems. >> >> Any ideas how to get out there? There aare no logs (neiter on >> Samba-Server nor on the Windows RSAT client). >> >> >> >> Thanks in advance >> >> > > I created this policy twice. Once in the default 'Group Policy Objects' > container and one as a 'create a GPO in this domain,...