Displaying 20 results from an estimated 50 matches for "recapture".
2009 Oct 13
5
Introduction to mark-recapture analysis in R?
...lse
false
MicrosoftInternetExplorer4
Dear R-helpers,
I was wondering whether there are any good books and/or website
links that introduce mark-recapture analysis in R. In particular, I am
interested in exploratory data analysis of resighting data and how to
create capture histories from dataframes in R.
Thank you very much for your reply in advance!
Cheers,
Anne
--
Jetzt kostenlos herunterladen: Internet...
2008 Aug 02
4
RE SHAPE package question.
...1 but not seen on time 2, 3
> and 4
> 1 0 0 0 1 0 male capture on time1 but not seen on time 2, 3
> and 4
> 1 0 0 0 0 1 female capture on time1 but not seen on times 2,
> 3 and 4
> 1 0 1 1 1 0 male captured on time 1, not seen on time 2,
> recaptured on time 3 and 4
> 1 0 1 1 1 0 female captured on time 1, not seen on time 2,
> recaptured on occasions 3 and 4
> 1 0 1 1 1 0 female captured on time 1, not seen on time 2,
> recaptured on occasions 3 and 4
> 1 0 1 1 1 0 female captured on time...
2000 Jul 25
1
glm and capture-recapture
Hello,
I am almost new in R, so perhaps my question will be silly.
I try to use R for analyzing capture-recapture data in epidemiology. A cancer registry has different sources of patients. We know in each list, patients already known in all other list. The aim is to use capture-recapture models for estimating the number of patients unknow of all the sources.
Because no order in sources, one cannot use classic...
2004 Sep 14
2
A question please
Hi Does R have a proceedure/software for capture recapture? Thank you.
Lawrence Lessner
Please respond to LLessner at nycap.rr.com
2006 Aug 08
0
(Fwd) Re: paired t-test. Need to rearrange data?
...ike the data I want to acheive
> rather than the data I recieved...
>
> So,may I bother you with a follow-up question:
>
> I have data on morphology on birds from several different years.
> Each year about 50-100 birds are captured, marked with a unique id
> and measured. The recapture rate is very low and on average 1-2
> birds are recaptured the subsequent year. Again a small example data
> set, which hopefully is more realistic:
>
> ####
> year <- as.factor(rep(1:4,each= 5)) # the four study years
> id <- c("a", "b", "c",...
2006 Nov 15
2
Replay mail to test MTA + filtering
...addresses to
allow RBL etc to work and
also i guess i would have to choose an "MTA style" of the sender to be
simulated so that the MTA
i am testing can do its thing when some tries something which fails the
smtpd_*_restrictions tests.
It will probably be the case that i need to "recapture" the mail at a
higher detail, as an RFC compliant
unit of mail in my mailbox doesn't tell me anything about how the smtp
conversation went, and certainly
doesn't allow me to recreate the conversation.
Is anyone building something like this?
Any hints appreciated.
Regards,
MrKiwi
2010 Aug 19
1
GLMM random effects
...correctly to account
for any pseudo-replication.
I am reading through and trying to follow examples from Zuur et al. Mixed
Effects Models and Extensions in Ecology with R, but am still at bit unsure
if I am specifying the models correctly.
Background information:
Our study design: We used mark-recapture trapping to obtain density
estimates and demography of prairie dogs. The location of our study sites
are nested, we have 6 trapping plots within 3 colonies of prairie dogs.
Within each colony 3 plots are treatment (given supplemental food) and 3 are
control sites. Therefore, in total we have 18 stu...
2003 Sep 03
3
plotting a distribution curves
...----------
Rajarshi Guha <rajarshi at presidency.com> <http://jijo.cjb.net>
GPG Fingerprint: 0CCA 8EE2 2EEB 25E2 AB04 06F7 1BB9 E634 9B87 56EE
-------------------------------------------------------------------
Did you hear that two rabbits escaped from the zoo and so far they have
only recaptured 116 of them?
2014 Nov 05
2
[LLVMdev] lifetime.start/end clarification
...stack memory.
C/C++ source programs usually have a naturally scoped structure, where the
lifetime of data is bounded by curly braces. This information reduces the
lifetime that stack coloring sees, so it saves stack memory.
When we go to LLVM IR, we lose all that information. We currently try to
recapture it with calls to @lifetime.start / end intrinsic calls at the
point of declaration and when the variable falls out of scope. Basically
we're trying to figure out how to put that scoping information back into
the IR without turning it back into a tree.
Furthermore, if we had better information...
2004 Mar 27
3
a question about scoping functions
...-------------------
Rajarshi Guha <rxg218 at psu.edu> <http://jijo.cjb.net>
GPG Fingerprint: 0CCA 8EE2 2EEB 25E2 AB04 06F7 1BB9 E634 9B87 56EE
-------------------------------------------------------------------
Did you hear that two rabbits escaped from the zoo and so far they have
only recaptured 116 of them?
2005 Sep 26
1
regression methods for circular(?) data.
Dear R-users,
I have the following data
x <- runif(300,min=1,max=230)
y <- x*0.005 + 0.2
y <- y+rnorm(100,mean=0,sd=0.1)
y <- y%%1 # <------- modulo operation
plot(x,y)
and would like to recapture the slope (0.005) and intercept(0.2). I wonder if
there are any clever algorithms to do this. I was looking at the function
lm.cirucalar. Is this the method to use? If, which of the references is best
too look at?
Eryk
2009 Jul 21
1
WISP-survey part of created area?
Dear R-Team!
I am a beginner in R and use the WISP library for a project. I am using mark-recapture to estimate abundance. I would like to know if it is possible to only survey a part of the created area (with the created population) and not all of it. I am trying to quantify bias introduced by non random sampling design (i.e. the area is 24x100 but I only wanna search 24x40) Thank you already in...
2012 Jan 27
0
Error in JAGS, cannot monitor z
...{
# Priors and constraints
for (i in 1:nind){
for (t in f[i]:(n.occasions-1)){
phi[i,t] <- alpha[t]
p[i,t] <- beta[t]
} #t
} #i
for (t in 1:n.occasions-1)
{
alpha[t] ~ dbeta(1, 1) # Prior for mean survival
beta[t] ~ dbeta(1, 1) # Prior for mean recapture
}
# Prior for mean recapture
# Likelihood
for (i in 1:nind){
# Define latent state at first capture
z[i,f[i]] <- 1
for (t in (f[i]+1):n.occasions){
# State process
z[i,t] ~ dbern(mu1[i,t])
mu1[i,t] <- phi[i,t-1] * z[i,t-1]
# Observation p...
2007 Jun 18
1
yumex 'crashed' - anyway to resume?
I spent quite a bit of time setting up what I wanted to update and
install via yumex.
I left my system for a few minutes to attend to another computer.
A helpful family member logged me off without checking.
So can I recapture what I had queued? I cannot find anything that looks
like a yumex queue file.
yum.log does not have any updates from today....
:(
2006 Nov 04
1
Writing better HTML/CSS for the Depot app
...;t necessarily disagree: I''m not a CSS
maven).
What''s the general feeling on this? Is it worth using more compliant
markup for the Depot HTML? If so, would anyone be willing to markup
the depot_r application (ideally so that it looks the same and I
don''t have to recapture all the screenshots :)
Cheers
Dave
2010 Apr 08
1
Intra-Class correlation psych package missing data
Hello R users, and perhaps William Revelle in particular,
I'm curious as to how ICC deals with missing data, so for example you are
sampling individuals over set periods in time and one individual is missing
or was not recaptured at that given time point - leading to NA in the
dataset. My thought was that it should then omit data by individual, but I'm
not convinced that that is what it is doing?
Does anyone know, I have looked at ?ICC but there is no information there,
apologies if I have missed it in any other help...
2010 Nov 08
1
RMark error: only 0's may be mixed with negative subscripts
Hi all,
I have just started using RMark to analyse capture-recapture data. I am
trying to analyse a simulated data set using the Robust Design (two primary
periods with three secondary sessions in each) to estimate apparent
survival. On specifying the time intervals (that tell R about the primary
and secondary sampling sessions), this is the error I get:
> time....
2013 Mar 14
1
Bootstrap encounter histories data
Hi all,
I am working with a capture-recapture analyses and my data set consists of a
typical set of encounter histories.
Thus, for each individual I have a string (same length for all the
individuals) consisting of 0 (not seen) and other numbers (seen in state
"1", seen in state "2", etc. where state may refer to breeding,...
2008 Apr 24
4
Pure Ruby HTTP parser
...tp11_parser.rb.rl;h=508f9bd42b4aad322f357637d52576f780707a2f;hb=868732662abbf4aa571bf2f3d598152467f6f4da
I''ve thought about having a Mongrel::HttpParser::FSM module to store the
actual Ragel-generated state machine, and pass all ivars from the
Mongrel::HttpParser to an execute method then recapture them as return
values, or something to that effect.
Thoughts? Suggestions? Complete rewrites? I''d appreciate them all.
--
Tony Arcieri
medioh.com
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://rubyforge.org/pipermail/mongrel-development/attachm...
2012 Oct 16
2
R Kaplan-Meier plotting quirks?
...? using survival tests, but the
resultant Kaplan-Meier plot does not seem to make sense. Since I am dealing
with a wild animal and only trapped a few days out of a month the data is
fairly messy, with gaps in capture history that require assumptions of tag
survival. An animal that is tagged and recaptured 2 days later with a tag
and 30 days later without one could have an assumed tag retention of 2 days
(minimum confirmed) or 30 days (maximum possible).
Both are significant with a survtest, but the K-M plots differ. A plot of
minimum confirmed (overall harsher data, lots of 0 days and 1 or 2 da...