Displaying 20 results from an estimated 223 matches for "insect".
Did you mean:
inject
2006 Jul 02
1
Calculation of lags
Hi,
If I have the follow situation:
A dependent variable (i.e. number of insects) that is affected by an
independent variable (i.e. rain). The problem is that the measure of rain
affect the population in other moment. So there exit a lag between the rain
and the number of insects. Exist in R any tool to find what is this lag?
Explain better.
Suppose that I have a linear...
2006 Aug 09
1
Improvement: SiteMapper - working ideas as a possible RoR''s routing replacement
...per.new
# firstly define the map and site structure...
mapper.add( :gallery ) do |level1|
level1.add( :mammals ) do |level2|
level2.route( ''gallery/mammals'',
:controller=>''gallery'',
:type=>''mammals''
)
level1.add( :insect ) do |level2|
level2.route( ''gallery/insect'',
:controller=>''gallery'',
:type=>''insect''
)
level2.add( :description ) do |level3|
level3.route( [ ''gallery/insect/(.*?).html'', :insect_name ],...
2008 Nov 18
2
matrix for diversity functions?
Hi,
I have a small simple data frame (attached) - to compare diversity of
insects encountered in disturbed and unditurbed site. What i have is
the count of insects - the total number of times they were encountered
over 30 monitoring slots.
Can someone please check for me to make sure how the 'community data
matrix' for the diversity function needs to be oriented so...
2008 Aug 15
3
ylab with an exponent
plot(1,2, ylab= paste("insects", expression(m^2), sep=" "))
I get insects m^2
I would like m to the 2
what is the problem?
--
Let's not spend our time and resources thinking about things that are
so little or so large that all they really do for us is puff us up and
make us feel like gods. We are mammals,...
2002 May 02
3
Surface Graphic
Hello list!
I have a problem with the function 'persp'. I have a data set with the
variables
X -> The X coordenate of the insect
Y -> The Y coordenate of the insect
deep-> how deep the insect buried into the soil.
I would like to have a plot with a surface simulating the way the insect
buried. Is it possible? If I type
persp(x,y,deep)
R gives me this error message
Error in persp.default(X, Y, deep) :
increa...
2007 Oct 09
0
coxph models for insects
...ich is to say that you
should take these comments with a grain of salt.
First, I don't think that you have censored data. You have 2 subdistribution
functions F1(t) and F2(t), F1(t) + F2(t) = F(t) = the "time to endpoint"
distribution. With censored data you would have some insects whose endpoint had
not been observed, e.g., it's time to write the paper and some of the durn
things have neither emerged nor died yet.
How best to model this data is a larger and harder question. What you have
done with coxph, creating an artificial censoring at the time of the comp...
2011 Jan 14
0
Fwd: helps in data analysis
Dear List,
I posted this in R-mixed and did not receive any feedback. I might post it
in the wrong place. I re-post in R-help and hope to receive any suggestions
and\or thoughts regarding data analysis.
The objective of the study is to investigate effects of soil properties on
insect outbreaks. There are four study fields (or sites). Data were
collected from 1996 through 2009. Below is sampling number per site per
year.
> table(alldfv3$year, alldfv3$site)
1 2 3 4
1996 256 265 222 197
1997 239 272 249 236
1998 216 239 216 222
1999 236 246 216 232...
2006 Sep 13
3
unexpected result in glm (family=poisson) for data with an only zero response in one factor
Dear members,
here is my trouble: My data consists of counts of trapped insects in different attractive traps. I usually use GLMs with a poisson error distribution to find out the differences between my traitments (and to look at other factor effects). But for some dataset where one traitment contains only zeros, GLM with poisson family fail to find any difference between thi...
2009 Jul 08
2
Randomizing a dataframe
Hi R-helpers,
I have a dataframe (called data) with trees in rows (n=100) and insect
species (n=10) in columns. My tree IDs are in a column called TREE and each
species has a column labeled SPEC1, SPEC2, SPEC3, etc...
I wish to randomize the values in my dataframe such that row and column
totals are held constant, i.e. in my randomized data each tree will have the
same number of i...
2010 Oct 18
1
boxplot ranked x labels
Dear R users,
x-values (EI) = Adw, EG1, LA1, Ad1, LA2, LA3...(14 levels, insect
stages)
y-valus = antpop
within the boxplot function x-values are ordered alphabetically
Idea: x-values ranked by list order (insect stage: Egg stage 1 is
followed by Larvae 1 and not by Egg stage 2 as it would be in an
alphabetically order)
Problems with the order(tapply()) function: var...
2004 Aug 15
2
analysis of life tables
Dear all,
How can I analyze a life table (e.g. for a cohort of insects) in R?
I have 20 insects in 200 cages with two different treatments, whose
survival is followed over time, such that, e.g., in one treatment, the
number of animals surviving is c(20,18,16,12,10,8,4,0), while in the
other treatment the survival is c(20,20,18,18,16,15,15,14) at 8
subsequent tim...
2009 Feb 11
2
problem with 'which' and strings
...s
metric scores and allocates them to a data set. For 400 of the 500 sites
that I calculate these metrics for works fine and allocates the scores into
the appropriate column. For some reason, some sites I run into the below
problem:
Here is what I am doing:
> names(orig.metric)
[1] "BenInsect" "CountofTaxa" "Darter"
[4] "DomTwoPct" "FishDELTPct" "Minnows-Tolerant"
[7] "NumberPer100m-Tolerant" "Sensitive" "SLithopPct"...
2009 Mar 13
2
Mixed model help!
Hi everyone! I am a biologist from Argentina and have to solve this problem.
I have an insect population obtained from 10 different nests and need to
know its sex ratio. But as I cannot ensure insects independence I need to
run a model where I can include the variable “nest” as with a random effect.
The response variable has a binomial distribution (males or females).
I’ve been reading for...
2003 Oct 27
1
Bioassays Yielding concentration-Mortality data
...tration-Mortality Data particularly control - adjustment model from book Bioassay of Entomopathogenic Microbes and Nematodes chapter 7 with R.
I used glm with family=binomial and link=probit, but I do not know how to implement parameter gamma (control mortality - mortality of the untreated control insect in this exaple) into model formula.
Model in book:
pi(x)=gamma+(1-gamma)F(alpha+beta log(x))
F....cumulative probability distribution function
data:
x=concentration
n=number of insect at each run
y=number of death among n in given batch run at given concentration
Xmat<-data.frame(x=rep(c(0...
2016 Aug 22
3
Dial and start music on hold after timeout
...write a sonnet, balance
> accounts, build a wall, set a bone, comfort the dying, take orders,
> give orders, cooperate, act alone, solve equations, analyze a new
> problem, pitch manure, program a computer, cook a tasty meal, fight
> efficiently, die gallantly. Specialization is for insects.
> ---Heinlein
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-users/attachments/20160822/27fc83e0/attachment.html>
2009 May 12
1
adonis help - (non-parametric (permutational) manova)
I am trying to apply this technique (M.J Anderson 2001) to a dataset
of aquatic insect abundances. There is a sample in the unrestored and
restored segement of a stream for every time period. I would like to
compare the centroids of the distance matrices for the treatments up
(unrestored) and dn (restored) to see if there is a difference in
insect communities between the treatments...
2007 Oct 08
0
coxph() command design and data setup
Hello all:
I'm attempting to run a Cox proportional hazards function on survival data
from insects and I have a few questions.
My current command that I'm using to call the model is as follows (using
coxph() from the survival library):
coxph(Surv(day, censor) ~ treatment + room + chamber %in% treatment, data =
data.table)
Day indicates which day a particular observation occurred, and cen...
2010 Jul 07
1
Appropriateness of survdiff {survival} for non-censored data
I read through Harrington and Fleming (1982) but it is beyond my
statistical comprehension. I have survival data for insects that have
a very finite expiration date. I'm trying to test for differences in
survival distributions between different groups. I understand that
the medical field is most often dealing with censored data and that
survival analysis, at least in the package survival, is largely built
around t...
2012 Mar 27
2
What error distribution should I use?
I'm trying to make a glmm to identify the relationship between insect
species richness with fragment size, isolation and time (different years).
I already tried to analyse it using poisson distribution error, but I
always face with the following warning:
*glm.fit: fitted probabilities numerically 0 or 1 occurred *
This is probably hapenning because my dataset has a...
2006 Mar 20
1
type in daisy
...ic(durflow)
height=as.ordered(height)
spread=as.ordered(spread)
begflow=as.ordered(begflow)
mycor=as.ordered(mycor)
piq=as.factor(piq)
lign=as.factor(lign)
grain=as.factor(grain)
ros=as.factor(ros)
semiros=as.factor(semiros)
leafy=as.factor(leafy)
autopoll=as.factor(autopoll)
geito=as.factor(geito)
insect=as.factor(insect)
wind=as.factor(wind)
suman=as.factor(suman)
winan=as.factor(winan)
monocarp=as.factor(monocarp)
polycarp=as.factor(polycarp)
phan=as.factor(phan)
cham=as.factor(cham)
hemi=as.factor(hemi)
geo=as.factor(geo)
thero=as.factor(thero)
seasaes=as.factor(seasaes)
seashiv=as.factor(seashi...