similar to: Controlling the number of interactions of a lme

Displaying 20 results from an estimated 2000 matches similar to: "Controlling the number of interactions of a lme"

2008 Feb 01
4
Concatenate a Variable
Good morning! I do not speak English very well and so I will try to explain the best I can. I have this: > tabela[,1] [1] a a b b a c b a c c c c c Levels: a b c >unique(tabela[,1]) [1] a b c Levels: a b c >var<-unique(tabela[,1])[1] > var [1] a Levels: a b c But if I concatenate like this > cat("VAR: ", var, "\n") I obtain >VAR: 1 and I
2013 Aug 01
1
[LLVMdev] project page request
Please add to the ProjectsWithLLVM/ page. Thanks. ==== Embedded System Language (ESL) ESL <code.google.com/p/esl/> is a new programming language designed to be used for efficient programming of embedded systems and other low-level system programming projects. ESL is a typed compiled language with features that allow the programmer to dictate the concrete representation of data values;
2012 Nov 02
1
[LLVMdev] new frontend and language
I have developed a new systems programming language called ESL (Embedded Systems Language). The compiler for it is a front end to LLVM and is written in itself, bootstrapping via LLVM assembly code. Most of the language is ordinary, but some things that aren't: no reserved words, procedures can return multiple values, data types allow the exact placement of bits, alignment, and
2012 Jun 26
5
chisq.test
Dear list! I would like to calculate "chisq.test" on simple data set with 70 observations, but the output is ''Warning message:'' Warning message: In chisq.test(tabele) : Chi-squared approximation may be incorrect Here is an example:         tabele <- matrix(c(11, 3, 3, 18, 3, 6, 5, 21), ncol = 4, byrow = TRUE)         dimnames(tabela) <- list(        
2011 Jun 24
2
[LLVMdev] multiple return value assembler regression?
On 06/24/2011 03:45 PM, Chris Lattner wrote: > > On Jun 24, 2011, at 9:29 AM, Bagel wrote: > >> It appears the syntax for returning multiple values has changed since 2.9. >> Previous to that: >> ret i32 %a, i32 %b >> worked. The new syntax is something like: >> ret { i32, i32 }{i32 %a, i32 %b} >> but this yields an error: >> mrv-bug.ll:5:24:
2001 Nov 28
17
problem of access with files accentuated
I need of helps for do backup of a server windows2000(english). In the files accentuated, presents to following message: ERRDOS - ERRbadfile (File not found.) opening remote file \f\adm\Arquivos diversos e tempor rios\Tabela Master de Importaao.xls (\f\adm\Arquivos diversos e temporarios\ They are more of 60 pages with this message. When I rename the name of the file to without accent, it
2007 Nov 03
1
Pearson residuals
Dear Sirs What is the best aproximation to the standardized normal distribution: necessidade = c("sem necessidade","com necessidade") tipo =c("CE-1", "CE-2", "CE-3") dados=c(20,34,44,69,9,3) Tabela =cbind(expand.grid(list(Necessidade=necessidade, Tipo=tipo)), count=dados) Tabela.array=tapply(Tabela$count, Tabela[,1:2], sum) ni =
2011 Jun 24
0
[LLVMdev] multiple return value assembler regression?
On Jun 24, 2011, at 2:21 PM, Bagel wrote: >> This is obsolete and deprecated syntax that is dropped in "llvm 3.0" (and thus on mainline right now). If you run that through llvm-as|llvm-dis from llvm 2.9, you'll see the preferred syntax. >> >> -Chris > > OK, I guess I missed the announcement that it was obsolete. It will eventually be in the llvm 3.0
2012 Mar 24
0
Help ordinal mixed model!
Good afternoon, gentlemen! After several days studying and researching on categorical data (various forums with answers from the owner of the library - all incipient) how to interpret the output the function MCMCglmm, come to enlist the help of you, if someone has already worked with MCMCglmm function in the case of variables ordinal dependent. I've read and reread all the pdf's of the
2005 Feb 23
1
error when trying access internet.
Anyone can help? I continue without access from server: /etc/cron.daily/freshclam: ERROR: No servers could be reached. Giving up ERROR: No servers could be reached. Giving up ERROR: No servers could be reached. Giving up ERROR: No servers could be reached. Giving up ERROR: No servers could be reached. Giving up ERROR: No servers could be reached. Giving up ERROR: Update failed. Your network may
2012 Aug 27
1
FreeBSD $PACKAGESITE from -STABLE to -RELEASE
Hi all, I''m using FreeBSD-9.0-RELEASE. When I install a package via puppet, it seems to use the -STABLE branches instead of -RELEASE. I can use pkg_add -r on the command-line, which will use the -RELEASE branch and break the dependencies. One workaround is to change the $PACKAGESITE variable to "ftp://ftp.ch.freebsd.org/pub/FreeBSD/ports/amd64/packages-9-stable/Latest/"
2008 Mar 07
3
Error
Hello! I need some help, because I don't know how this error means: Error: variables ?Output1?, ?Output2?, ?Output3?, ?Output4?, ?Output5? were specified with different types from the fit Execution halted Can you help me? Thank You
2010 Sep 17
1
odfWeave UTF-8 error and latin characters
Hello R masters, I have sent this same message to other lists and none so far could give some light. I was trying to use odfWeave to generate a report from R and Im getting an error that I think is related to latin characters. I looked around and did find some stuff related to this problem about Sweave http://labmoluscos.wordpress.com/2010/02/18/sweave-latex-character-encoding/ but did not find a
2001 Jun 27
1
err:ntdll:RtlpWaitForCriticalSection...
Hi there, I'm relativly new to this linux-stuff an especially to wine. I'm trying to bring up an software that is using the FOXW2600.ESL als runtime library (as far as i understand this). All i can get out of wine is a blank and black (managed) screen an a bunch of messages at starting konsole. At the end wine claims to be successful. I'm running SuSE 7.2 codeweavers-wine-20010305
2010 Apr 16
0
Yet Testing rKward
Hi, I continue testing rKward. I dont know how to save the results from a script execution without use copy and paste or using a rkward output system. Now I try to understand how adapt my script do use the rKward output system. Example: I have this script: ---------------------- ## Carregar a tabela de riqueza e equitabilidade library(gdata) dadosriq <-
2008 Sep 03
1
[LLVMdev] LLVM FPGA interface.
Hi LLVM community members. I downloaded LLVM-GCC4.2 Front-end source code and succefully installed alongwith LLVM-2.3 on linux x86_64. I think it's front-end has better optimizations. I am naive to LLVM environment, my focus is to generate LLVM inermediate code for FPGA. Are there any resources/links/papers/documents which discusses LLVM intermediate generation for FPGA needs. I am aware
2009 Mar 04
1
[LLVMdev] Control Data Flow Graph (CDFG)
Hi John, My project is somewhat inbetween, but closer to the latter. If you are doing something related to synthesis, have you checked xPilot from UCLA? Search "llvm" in this paper <http://www.icims.csl.uiuc.edu/~dchen/xpilot-TechCon2005.pdf> Anyway, thanks for the information! :-) Wenhao On Tue, Mar 3, 2009 at 6:30 AM, <llvmdev-request at cs.uiuc.edu> wrote: > >
2006 Jul 06
0
[LLVMdev] A job advertisement for LLVM developers
AutoESL is a high-tech startup company providing innovative platform-based communication-centric SystemC/C-to-RTL synthesis technologies (see more in the "About Us" section). Currently AutoESL has several engineering positions open in its headquarter in Los Angeles, California and its R&D center in Beijing, China. Please e-mail your resume to recruiting at autoesl.com for immediate
2005 Mar 05
0
problems with FoxPro app under wine 20020211-1
I've got WINE installed (version as above), from the FC3 packages linked to from winehq. I'm trying to run a FoxPro app. It installed OK, but when I go to run it, I got a window saying "Cannot locate FoxPro support library". I've soft-linked foxw2600.esl, which I presume is the library, to FOXW2600.ESL, and now I get a box saying simply: "WATCOM Win: Read
2012 Mar 16
1
Upgrade of IDMAP_VERSION from -1 to 2 is not possible with incomplete configuration
Hi I'm running CentOS 6.2 with samba-3.5.10-114 , and LikewiseOpen 6.1 . How do I fix these errors ? Mar 16 20:25:43 nzhmlfpr05 winbindd[2556]: [2012/03/16 20:25:43.639871, 0] winbindd/idmap_tdb.c:287(idmap_tdb_open_db) Mar 16 20:25:43 nzhmlfpr05 winbindd[2556]: Upgrade of IDMAP_VERSION from -1 to 2 is not possible with incomplete configuration Mar 16 20:25:43 nzhmlfpr05 winbindd[2556]: