Displaying 20 results from an estimated 3000 matches similar to: "nls and geometric mean regression"
2011 Nov 01
1
predict lmer
Dear all,
I've been reading for many days trying to predict with lmer but I haven't
managed to do it.
I've fitted an allometric model for trees where I have included climatic
variables and diameter in the fixed part and
in the random part I've included the experimental sites where trees are and
also their provenance region.
The model is like this :
2007 Jul 31
2
choosing between Poisson regression models: no interactions vs. interactions
R gurus,
I'm working on data analysis for a small project. My response
variable is total vines per tree (median = 0, mean = 1.65, min = 0,
max = 24). My predictors are two categorical variables (four sites
and four species) and one continuous (tree diameter at breast height
(DBH)). The main question I'm attempting to answer is whether or not
the species identity of a tree has
2004 Jul 01
2
y-axis of lattice panels not printing to paper
Greetings,
I am printing lattice plots from the R-interface to a printer, and although the y-axes of the left-most panels are visable on the screen, they are not present on the paper when there are multiple panels (ie, >1).
For example:
trellis.device(bg='white')
histogram(~dbh, data=diameter.df)
###print to a printer from the R-interface by clicking the print button on the
2003 Sep 09
1
tree mortality risk model using glm()
Dear all,
I've used glm(family=binomial(link="logit")) several times, but now I think
that a log link is more appropriate.
I want to fit a model for probability of tree fall (TF)), with tree
diameter (dbh) and soil moisure (soil) as predictors. A large number of
trees have been checked every second year whether they stand up (0) or have
fallen (1).
I assume that the tree fall
2012 Dec 14
1
Define a custom-built loss function and combine it with nls()
Dear R helpers,
For an allometric analysis (allometric equation y = a*x^b) I would like
to apply a non-linear regression instead of using log-log
transformations of the measured parameters x and y and a Model II linear
regression. Since both of the variables x and y are random, I would like
to apply a Model II non-linear analog of either Reduced Major Axis or
Major Axis Regression.
The
2007 Mar 28
0
nlsystemfit: Errors with reproducing the manual example
Hi everybody, I'm a newbye with lots of problems :). I'm trying to use
nlsystemfit, but I recieve two error messages whose origin that I don't
understand.
1) When I try to reproduce the example reported in the systemfit package
manual, that is
library( systemfit )
data( ppine )
hg.formula <- hg ~ exp( h0 + h1*log(tht) + h2*tht^2 + h3*elev + h4*cr)
dg.formula <- dg ~ exp( d0
2005 Oct 04
2
newbie questions - looping through hierarchial datafille
Dear List,
Im new to R - making a transition from SAS. I have a space delimited file
with the following structure. Each line in the datafile is identified by
the first letter.
A = Inventory (Inventory)
X = Stratum (Stratum_no Total Ye=year established)
P = Plot (Plot_no age slope= species)
T = Tree (tree_no frequency)
L = Leader (leader diameter height)
F = Feature (start_height finish_height
2024 Jan 26
0
Use of geometric mean .. in good data analysis
Sorry to prolong a thread on something that is clearly off topic, but when Michael Meyer wrote
>by using the geometric mean all asymptotic results no longer apply.
that is flat our wrong. It's true that the geometric mean converges to something different that E[X], but it does indeed have an asymptotic distribution and one that makes sense in some contexts. There is no reason that
2024 Jan 22
1
Use of geometric mean for geochemical concentrations
better posted on r-sig-ecology? -- or maybe even stack exchange?
Cheers,
Bert
On Mon, Jan 22, 2024 at 7:45?AM Rich Shepard <rshepard at appl-ecosys.com>
wrote:
> A statistical question, not specific to R.
>
> I'm asking for a pointer for a source of definitive descriptions of what
> types of data are best summarized by the arithmetic, geometric, and
> harmonic
>
2024 Jan 24
0
Use of geometric mean .. in good data analysis
By the Strong Law of Large Numbers applied to log(X) the geometric mean of X_1,...,X_n > 0 and IID like X converges toexp(E[log(X)]] which, by Jensen's inequality, is always? <= E[X] and is strictly less than E[X] except in trivial extreme cases.
In short: by using the geometric mean all asymptotic results no longer apply.
Michael Meyer
[[alternative HTML version deleted]]
2024 Jan 22
2
Use of geometric mean .. in good data analysis
>>>>> Rich Shepard
>>>>> on Mon, 22 Jan 2024 07:45:31 -0800 (PST) writes:
> A statistical question, not specific to R. I'm asking for
> a pointer for a source of definitive descriptions of what
> types of data are best summarized by the arithmetic,
> geometric, and harmonic means.
In spite of off-topic:
I think it is a good
2008 Aug 29
1
nls() fails on a simple exponential fit, when lm() gets it right?
Dear R-help,
Here's a simple example of nonlinear curve fitting where nls seems to get
the answer wrong on a very simple exponential fit (my R version 2.7.2).
Look at this code below for a very basic curve fit using nls to fit to (a)
a logarithmic and (b) an exponential curve. I did the fits using
self-start functions and I compared the results with a more simple fit
using a straight lm()
2024 Jan 22
3
Use of geometric mean for geochemical concentrations
A statistical question, not specific to R.
I'm asking for a pointer for a source of definitive descriptions of what
types of data are best summarized by the arithmetic, geometric, and harmonic
means.
As an aquatic ecologist I see regulators apply the geometric mean to
geochemical concentrations rather than using the arithmetic mean. I want to
know whether the geometric mean of a set of
2003 Sep 22
1
Managing a list with a list
OK. Another amateur question.
I have a list with attributes on pine trees, like the stem's location, a logical value set to T if it's alive, some parameters for growth, diameter, etc. The tree list has another list in it which is a new data type for me.
I want to make a new list that retains all the live trees.
That is where Living == T.
Here's the summary of the list:
>
2024 Jan 30
2
Use of geometric mean for geochemical concentrations
Dear Rich,
It depends how the data is generated.
Although I am not an expert in ecology, I can explain it based on a biomedical example.
Certain variables are generated geometrically (exponentially), e.g. MIC or Titer.
MIC = Minimum Inhibitory Concentration for bacterial resistance
Titer = dilution which still has an effect, e.g. serially diluting blood samples;
Obviously, diluting the
2009 Aug 20
2
Geometric mean of rows in matrix
Is there a function or an easier way to computer geometric means of each
rows in a nxn matrix and spit out in an 1xn matrix ?
--
Edward Chen
[[alternative HTML version deleted]]
2011 Jan 15
2
median by geometric mean
Hi All,
I need to calculate the median for even number of data points.However
instead of calculating
the arithmetic mean of the two middle values,I need to calculate their
geometric mean.
Though I can code this in R, possibly in a few lines, but wondering if there
is
already some built in function.
Can somebody give a hint?
Thanks in advance
[[alternative HTML version deleted]]
2024 Jan 24
1
Use of geometric mean for geochemical concentrations [RESOLVED]
On Mon, 22 Jan 2024, Rich Shepard wrote:
> As an aquatic ecologist I see regulators apply the geometric mean to
> geochemical concentrations rather than using the arithmetic mean. I want to
> know whether the geometric mean of a set of chemical concentrations (e.g.,
> in mg/L) is an appropriate representation of the expected value. If not, I
> want to explain this to non-technical
1998 Nov 13
1
compute geometric mean
Hi:
I need to compute the geometric mean of a population. How i can do it??
thanks.
Jorge M. A. Magalhae
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html
Send "info", "help", or "[un]subscribe"
(in the "body", not the subject !) To: r-help-request
2011 Jan 17
1
median by geometric mean -- are we missing what's important?
Folks:
I know this may be overreaching, but are we missing what's important?
WHY do the zeros occur? Are they values less then a known or unknown
LOD? -- and/or is there positive mass on zero? In either case, using
logs to calculate a geometric mean may not make sense. Paraphrasing
Greg Snow, what is the scientific question? What is the model?
Cheers,
Bert
On Mon, Jan 17, 2011 at 9:13 AM,