Displaying 20 results from an estimated 300 matches similar to: "PVAClone: new package for population viability analysis"
2012 Feb 14
0
New version: dclone 1.7-1 and dcmle 0.1-4 rolled out
Dear R Community,
I am happy to introduce the next release of the *dclone* package (see
R Journal, 2(2): 29-37, 2010) which now includes a suite of functions
for parallel computations:
- see functions parJagsModel, parUpdate, parCodaSamples using 'snow'
type clusters; and the
- jags.parfit function that can be used with 'snow' type clusters or
multiple cores.
- iterative model
2012 Feb 14
0
New version: dclone 1.7-1 and dcmle 0.1-4 rolled out
Dear R Community,
I am happy to introduce the next release of the *dclone* package (see
R Journal, 2(2): 29-37, 2010) which now includes a suite of functions
for parallel computations:
- see functions parJagsModel, parUpdate, parCodaSamples using 'snow'
type clusters; and the
- jags.parfit function that can be used with 'snow' type clusters or
multiple cores.
- iterative model
2011 Jan 03
0
dclone 1.3-0
Dear R Community,
I am happy to introduce the latest version 1.3-0 of the 'dclone' R package.
The package provides low level functions for implementing maximum
likelihood estimating procedures for complex models using data cloning
and Bayesian Markov chain Monte Carlo methods with support for JAGS,
WinBUGS and OpenBUGS.
Data cloning is a global optimization approach and a variant of
2011 Jan 03
0
dclone 1.3-0
Dear R Community,
I am happy to introduce the latest version 1.3-0 of the 'dclone' R package.
The package provides low level functions for implementing maximum
likelihood estimating procedures for complex models using data cloning
and Bayesian Markov chain Monte Carlo methods with support for JAGS,
WinBUGS and OpenBUGS.
Data cloning is a global optimization approach and a variant of
2009 Jun 04
1
Using WinBUGS from R: A Multi-Way Array Problem
Please suggest a way out to the following problem.
I have a T by n data matrix (say Y) where coulmns are time series of length
T.
To do some analysis in WinBUGS I need to construct my data as follows.
yy<-rep(Y,k) ## this will be a vector
Yk<-array(yy,dim=c(T,n,k)) ## data array
Here the definition of dim indices is
first index: T rows
second index: n columns
third index: for kth T by n
2008 May 26
1
Listing all possible samples of Size two form Large Population
Respected All,
I need some efficient program or package to draw all possible samples
of size two without replacement. I am using "combinat" package to list
all possible samples but it hangs my computer for larger populations
say 10,000 (i.e. 49995000 all possible samples). I wish to even work
for larger populations then this and replicate this procedure for many
times. Kindly can anyone
2019 Nov 27
2
Writing a Pass in LLVM MC (Machine Code) level to Analyze Assembly Code
Hi All,
A self-follow up and rephrase of my previous question with updated subject:
What I want to do is to analyze hand-written assembly code with 'full
details' where semantics of each instruction can be known in LLVM passes.
Many of such instructions have no corresponding counterparts in IR/MIR
forms, such as 'syscall' 'iret', etc. At MC level, such assembly code can
2003 Nov 10
0
Win2K and Samba v:2.2.7a
Dear samba orgnisation,
i have installed my samba in my linux server, in my
network there are 5 machines, 1 is linux and other are
win2k, i have configured the file /etc/samba/smb.conf,
i change workgroup and etc...
and i make a "testparm", it's all right, and i restart
my samba, it's right.
i can see my linux name from windows network but when
i click it the message "The
2009 Feb 24
1
Box.test reference correction (PR#13554)
Full_Name: Peter Solymos
Version: 2.8.1
OS: Windows
Submission from: (NULL) (129.128.141.92)
The help page of the Box.test function (stats) states that the Ljung-Box test
was published in:
Ljung, G. M. and Box, G. E. P. (1978), On a measure of lack of fit in time
series models. Biometrika 65, 553--564.
The page numbers are incorrect. The correct citation should be as follows:
Ljung, G. M.
2019 Nov 25
2
[Machine IR] Analyzing Assembly Source Code in MIR passes
Llvm-mctoll will raise a binary back to LLVM IR.
Not exactly what you want but it might be something you can leverage.
https://github.com/microsoft/llvm-mctoll
On Mon, Nov 25, 2019 at 1:19 PM Nicolai Hähnle via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> On Thu, Nov 21, 2019 at 3:37 AM Lele Ma via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
> > My goal is to write
2008 Jun 27
1
Problem in conditional looping
Respected All,
I am writing a program in R and facing some problem with applying "if statment".
Program first draw random numbers from bivariate normal distribution
then compute variable say Pi and Pij from that sample and
then further computation
.....
.....
.....
In some samples Pij is appearing with negitive sign and ultimately
resulted in an negative variance estimator.
2008 Jul 03
1
Problem in applying conditional looping
Respected All,
I hope you are enjoying good health, I am tring to write a program in R but
could not be very sucessful. My program draws random sample form bivariate
normal distribution and then compute a variable PIJ. For certian samples
some entries of variable PIJ is apearing as negative, which result
in negative variance estimator. I want to introduce a loop in my program
that verify the each
2003 Dec 17
2
Troubles with voicemail and cisco 7905 SIP
I'm deploying a fairly large number of Cisco 7905 with SIP connected to an
asterisk PBX.
The problem:
the 7905 has this nice "feature": You can set a "voice mail number" in
configuration, so that you can listen your voice mail just by hitting the
"messages" key on the phone. It just autodials "8500" or whatever else.
The customer wants this, so
2019 Nov 21
2
[CodeGen] Read/Write Machine IR from/to Persistent File
Dear LLVM developers,
Just as LLVM IR can be read/write via persistent bitcode (*.bc *.ll) files,
is there any similar implementation in LLVM to read/write Machine IR (MIR)
via a persistent file?
If not and I would like to add it (e.g. for ARM or RISC-V), could you
direct me materials and/or LLVM source code modules where I should start
with?
Best Regards,
Lele Ma
-------------- next part
2019 Nov 21
2
[Machine IR] Analyzing Assembly Source Code in MIR passes
Dear LLVM developers,
My goal is to write LLVM Machine IR (MIR) passes to analyze the assembly
source code. But it seems I need to find a way to translate the handwritten
assembly code into MIR format first.
Is there any materials, or any modules in LLVM source code, that can help
to translate assembly code into LLVM MIR for analysis?
Or is there any easier ways to analyze assembly code in MIR
2003 Sep 18
1
e100p and E-bit alarm indication
We connected an * box with an e100p to an E1/PRI from a telco here in Italy.
After we had it working perfectly the telco told us that, despite the circuit
appeared to work fine, and we could place calls on it, they had an "E-bit2
alarm indication constantly on that caused the circuit to be flagged as
"faulty" every time.
(The E-bit indication, is an alarm sent back from us to
2011 Oct 29
2
EveHq & dotnet 3.5
Hello,
i use ubuntu 11.10 and wine 1.3.x
i want install eveHq (http://www.evehq.net/downloads.html) and I read this (http://wiki.indiceve.com/doku.php?id=installation:installation)
> EveHQ is written using Visual Studio .Net 2010 and requires the following to run:
>
> .Net Framework v3.5 SP1
> MS SQL Compact Edition v4.0 (for the databases)
I can install MS SQL Compact
2004 Dec 30
1
Regarding testsuites for protocol conformance
We have made some changes in samba-3.0.7, as part of
our graduation project. Are there any test suites
which we could use to check the conformance of the
changes,
with the original samba specifications?
Also, with reference to your statement in document
tridge_cifs04_tutorial.pdf , saying that inputs about
test documents would be welcome, if the above
mentioned suites are not available,then we
2003 Sep 18
1
CDR of calls transferred via IAX[2]
Let's say i have a network of * boxes connected via IAX, one of them is a
"switch", one or more are the "gateways".
- An IAX[2] "customer" register himself on the "switch" (and gets an
accountcode for te purpose of cdr)
- The customer places a call to the "switch", the switch does some magic and
decides which "gateway" the call
2011 Sep 28
2
apply lm function to dataset split by two variables
Dear all,
I am not fluent in R and am struggling to 1) apply a lm to a weight-size
dataset, thus the model has to run separately for each species, each
year; 2) extract coefs, r-squared, n, etc. The data look like this:
year sps cm w
2009 50 16 22
2009 50 17 42
2009 50 18 45
2009 51 15 45
2009 51 16 53
2009 51 17 73
2010 50 15 22
2010 50 16 41
2010 50 16 21
2010