similar to: Ecological Detective worked solutions [R-wiki]

Displaying 20 results from an estimated 4000 matches similar to: "Ecological Detective worked solutions [R-wiki]"

2002 Jan 23
6
multivariate simulation
To whom it may concern, I try to simulate a non-normal multivariate distribution. The MASS package allows by mean of "mvrnorm" command to perform a multivariate normal simulation. Is there an equivalent command for an arbitrary multivariate distribution available in the R-language? Thank you in advance. Bernard Colin Colin Bernard Professeur titulaire D?partement de Math?matiques et
2015 Oct 05
3
xen and spice problem
On Mon, Oct 5, 2015 at 10:08 AM, Christoph <mangel at gmx.de> wrote: > Am 2015-10-04 17:50, schrieb Mark Pryor: >> >> http://107.185.144.55/xen/cent7/dom0/RPMS/stable-4.6/mock/ [1] >> >> above is a build of upstream xen with this `configure` including spice >> support: >> ./configure --enable-systemd --prefix=/usr --enable-xsmpolicy >>
2017 Jun 20
0
New book: Spatial, Temporal and Spatial-Temporal Ecological Data Analysis with R-INLA
We are pleased to announce the following book: Spatial, Temporal and Spatial-Temporal Ecological Data Analysis with R-INLA Authors: Zuur, Ieno, Saveliev Book website: www.highstat.com Paperback or EBook can be order (exclusively) from www.highstat.com TOC: http://highstat.com/Books/BGS/SpatialTemp/Zuuretal2017_TOCOnline.pdf Summary: We explain how to apply linear regression models,
2015 Oct 04
2
xen and spice problem
http://107.185.144.55/xen/cent7/dom0/RPMS/stable-4.6/mock/ above is a build of upstream xen with this `configure` including spice support:./configure --enable-systemd --prefix=/usr --enable-xsmpolicy --enable-ocamltools \ ? --libdir=%{_libdir} --enable-efi \ ? --with-extra-qemuu-configure-args="--enable-spice --enable-usb-redir" there is no associated libvirt buildIncluded are patches up
2015 Oct 01
3
xen and spice problem
On Thu, Oct 1, 2015 at 12:27 PM, Christoph <mangel at gmx.de> wrote: > Am 2015-10-01 12:33, schrieb Fabio Fantoni: >> >> Should be something like /var/log/xen/qemu-dm-marax.log > > oh ok: > > qemu-system-i386: -spice > port=6000,tls-port=0,addr=0.0.0.0,password=test,agent-mouse=on: There is no > option group 'spice' > spice is not supported by this
2005 Apr 18
2
Very Slow Gower Similarity Function
Hello, I am a relatively new user of R. I have written a basic function to calculate the Gower similarity function. I was motivated to do so partly as an excercise in learning R, and partly because the existing option (vegdist in the vegan package) does not accept missing values. I think I have succeeded - my function gives me the correct values. However, now that I'm starting to use it with
2006 Aug 10
4
PXE and Hard Drive Test Programms
Hi! I have problems to boot with memdisk and pxe the hard drive tests from seagate, hitachi, western digital... does has someone done it and can sym me how? (maxtor works perfectly) ByE
2006 Mar 20
11
has_many brings back ''uninitialized constant''
hello. first things first - I am new to ruby on rails (ruby, too), so I''m figuring this is just a basic newbie error. I''m creating a basic photography website. And I have two tables with a relationship: photos: - id (set up as PK) - title - shutter - aperture - date - the_order ...etc photo_comments: - id (set up as a PK) - photos_id (set up as a FK) - author - date -
2002 May 03
2
Some questions concerning IPtables (& IMQ/SFQ)
Hi there! Some questions I couldn''t find an answer for: IPtables: - Is it possible to filter those ACK-packets (to eleminate problems with ADSL-connections) with IPtables? It wasn''t possible with IPchains, so u32 had to be used. Now there is this nice little --tcp-flags option. But I just don''t know if this is all I need. The u32 was checking for packetsize too. So if
2009 Jun 21
5
domU autostart with deps
Hi! It is possible to start domU''s with dependencies? I mean something like that: 1. start domU a 2. wait till domU a completely started 3. start domU b 4. wait till domU b completely started 5. start all other domU''s How to do it? Greetz PS: sorry for my english _______________________________________________ Xen-users mailing list Xen-users@lists.xensource.com
2014 Mar 13
2
Manuales de knitr
Hola: Efectivamente, hicimos este taller el 24 de julio de 2012 y quedo grabado. Aquí está la información. El vídeo. En las 5ª jornadas de R hicimos una versión de taller actualizada y los materiales está aquí <http://fobos.inf.um.es/R/taller5j/indice.html> aunque también puedes ir aquí <http://fobos.inf.um.es/R/taller5j/> y descargar todos los materiales, pues se trata de
2013 Apr 03
2
[LLVMdev] Packed instructions generaetd by LoopVectorize?
Hi, I have a question about LoopVectorize. I wrote a simple test case, a dot product loop and found that packed instructions are generated when input arrays are integer, but not when they are float or double. If I modify the float example in http://llvm.org/docs/Vectorizers.html by adding restrict to the input arrays packed instructions are generated. Although it should not be required I tried
2013 Apr 04
1
[LLVMdev] Packed instructions generaetd by LoopVectorize?
Thanks, that did it! Are there any plans to enable the loop vectorizer by default? From: Nadav Rotem [mailto:nrotem at apple.com] Sent: Wednesday, April 03, 2013 13:33 PM To: Nowicki, Tyler Cc: LLVM Developers Mailing List Subject: Re: Packed instructions generaetd by LoopVectorize? Hi Tyler, Try adding -ffast-math. We can only vectorize reduction variables if it is safe to reorder floating
2016 Aug 23
2
Help in understanding physreg LiveVariables
So if I first create the value in an entry BB and then build a CopyToReg but then I have to read it in a BB that loops back to itself, with it's own CopyToReg at the end, then I have two CopyToReg nodes for the same value. In this case, I need to create 3 virt regs, 1 for each CopyToReg and a third for the CopyFromReg in the beginning of the loop BB, right? And then I need to build a PHI
2005 Apr 22
3
Installing packages from source on WindowsXP
Hi, I'm having some problems installing packages from the source files on Windows, using R CMD INSTALL pkg. I'm running WindowsXP, and I've followed the instructions as per the README.packages file from the R installation. I ran into a hitch, with the install failing following a "hhc: not found" warning. I figured out that this was related to the html help workshop.
2014 Oct 02
2
[LLVMdev] Use list preservation when using Instruction::clone
I'm trying to create a clone of a function using Function::Create() and CloneFunctionInto. However, I'm running into an issue. I believe that the instructions in the function clone still have Use edges to values in the original function. This is a problem for my purposes. For example, consider an original function F. I create a new function G belonging to the same module and call
2008 Jan 08
3
Dovecot too many open files???
Dovecot experts, We just recently deployed Dovecot 1.0.rc15 on a Redhat 5 system. I have over 1400 users. At first it appeared to work fine. But soon, we had complaints of students that couldn't retrieve their email. I looked in the logs and found this error. Jan 7 22:27:31 stu dovecot: auth(default): pam(pucklisl,<http://144.89.40.6>144.89.40.6): pipe() failed: Too many
2013 Feb 21
2
[LLVMdev] Generate scalar SSE instructions instead of packed instructions
On Thu, Feb 21, 2013 at 12:14 PM, Nadav Rotem <nrotem at apple.com> wrote: > You can change the input LLVM-IR. > > On Feb 21, 2013, at 7:16 AM, "Nowicki, Tyler" <tyler.nowicki at intel.com> > wrote: > > Hi,**** > > ** ** > > I am interested in evaluating the performance of packed vs scalar > double-precision floating point instructions on
2013 Apr 03
0
[LLVMdev] Packed instructions generaetd by LoopVectorize?
Hi Tyler, Try adding -ffast-math. We can only vectorize reduction variables if it is safe to reorder floating point operations. Thanks, Nadav On Apr 3, 2013, at 10:29 AM, "Nowicki, Tyler" <tyler.nowicki at intel.com> wrote: > Hi, > > I have a question about LoopVectorize. I wrote a simple test case, a dot product loop and found that packed instructions are
2014 Jul 07
4
[LLVMdev] Splitting basic block results in unknown instruction type assertion
Hello, I would like to see if this issue is a result of a misunderstanding on my part before I file a bug. I am using LLVM 3.4, built from the source tarballs. My system's uname is "Darwin tyler-air 12.5.0 Darwin Kernel Version 12.5.0: Sun Sep 29 13:33:47 PDT 2013; root:xnu-2050.48.12~1/RELEASE_X86_64 x86_64". All I'm trying to do is add a runtime check after all call