Displaying 20 results from an estimated 2000 matches similar to: "generating response curves"
2005 Nov 03
3
Prototype is spamming my arrays!
Hi all, when I want to interate through an array, all those pesky Prototype functions get in my way!
When I do this:
---------------------
r="";
for(x in new Array()) {
r+="var: "+x+", val: "+ (new Array())[x]+"\n";
}
alert(r);
---------------------
I get a giant alert window with loads of functions printed out.
Is this a bug, or is there a better way to
2006 Jan 23
2
psexec unix equivalent
Hello!
I don`t know if there is a port of psexec for unix yet (haven`t followed the list for some time) - but since it has been discussed on this list several times and i didn`t find any news about the current state of the "psexec unix port"- i`d like to tell that i found a psexec equivalent by chance - WITH SOURCECODE INCLUDED !
:)
take a look at
2006 Oct 25
0
Tell Samba, it should not allocate disk memory before copying file
Hello everybody,
i am running samba 3.0.23c and i have a little problem when writing a
file to a share.
When i connect to my samba server, all the shares are shown correctly.
Then i choose the one
(my usbstick) where i would like to copy some files to.
My client is a windows XP client and what happens is, that samba first
creates the file and all
the needed memory on the usbstick, before it
2006 Feb 22
2
Samba 3.0.21b winbind crash
I'm using Samba 3.0.21b on SuSE 9.3 Pro (x86) with the binary RPMs from samba.org/suse.com (3.0.21b-1.1.2-SUSE-SL9.3) on a Domain Member Server in ADS mode with winbind against W2K3 SP1 AD servers and idmap uids/gids stored in a central OpenLDAP directory.
Unfortunately, winbind gives me a hard time and reproducibly dies with a PANIC on a "wbinfo -g", although I think I've
2005 Jul 15
1
nlme and spatially correlated errors
Dear R users,
I am using lme and nlme to account for spatially correlated errors as
random effects. My basic question is about being able to correct F, p, R2
and parameters of models that do not take into account the nature of such
errors using gls, glm or nlm and replace them for new F, p, R2 and
parameters using lme and nlme as random effects.
I am studying distribution patterns of 50 tree
2007 Jun 12
2
[LLVMdev] LLVM binaries for Windows and more
> -----Ursprüngliche Nachricht-----
> Von: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu>
> Gesendet: 12.06.07 19:24:12
> An: LLVM Developers Mailing List <llvmdev at cs.uiuc.edu>
> Betreff: Re: [LLVMdev] LLVM binaries for Windows and more
>
> On Tue, 12 Jun 2007, Andreas Rumpf wrote:
> > I want to use LLVM for my own "pet" programming
2006 Sep 12
4
variables in object names
Is there any way to put an argument into an object name. For example,
say I have 5 objects, model1, model2, model3, model4 and model5.
I would like to make a vector of the r.squares from each model by code
such as this:
rsq <- summary(model1)$r.squared
for(i in 2:5){
rsq <- c(rsq, summary(model%i%)$r.squared)
}
So I assign the first value to rsq then cycle through models 2 through
2012 Nov 08
2
Comparing nonlinear, non-nested models
Dear R users,
Could somebody please help me to find a way of comparing nonlinear, non-nested
models in R, where the number of parameters is not necessarily different? Here
is a sample (growth rates, y, as a function of internal substrate
concentration, x):
x <- c(0.52, 1.21, 1.45, 1.64, 1.89, 2.14, 2.47, 3.20, 4.47, 5.31, 6.48)
y <- c(0.00, 0.35, 0.41, 0.49, 0.58, 0.61, 0.71, 0.83, 0.98,
2011 Apr 14
1
mixed model random interaction term log likelihood ratio test
Hello,
I am using the following model
model1=lmer(PairFrequency~MatingPair+(1|DrugPair)+(1|DrugPair:MatingPair),
data=MateChoice, REML=F)
1. After reading around through the R help, I have learned that the above
code is the right way to analyze a mixed model with the MatingPair as the
fixed effect, DrugPair as the random effect and the interaction between
these two as the random effect as well.
2009 Mar 31
1
using "substitute" inside a legend
Hello list,
I have a linear regression:
mylm = lm(y~x-1)
I've been reading old mail postings as well as the plotmath demo and I came
up with a way to print an equation resulting from a linear regression:
model = substitute(list("y"==slope%*%"x", R^2==rsq),
list(slope=round(mylm$coefficients[[1]],2),rsq=round(summary(mylm)$adj.r.squared,
2)))
I have four models and I
2005 Mar 01
3
packages masking other objects
hello all,
I am trying to use the function getCovariateFormula(nlme) in conjunction with the library lme4. When I load both packages I get the following message and the getCovariateFormula function no longer works:
library(nlme)
library(lme4)
Attaching package 'lme4':
The following object(s) are masked from package:nlme :
contr.SAS getCovariateFormula
2010 Jan 07
1
LD50 and SE in GLMM (lmer)
Hi All!
I am desperately needing some help figuring out how to calculate LD50 with a GLMM (probit link) or, more importantly, the standard error of the LD50.
I conducted a cold temperature experiment and am trying to assess after how long 50% of the insects had died (I had 3 different instars (non significant fixed effect) and several different blocks (I did 4 replicates at a time)=
2002 Jun 20
2
scatterplot3d
Hello,
I am trying to replicate example 4 in the package 'scatterplot3d':
s3d.dat_data.frame(cols=as.vector(col(my.model4)),
rows=as.vector(row(my.model4)),
value=as.vector(my.model4))
scatterplot3d(s3d.dat, type="h", lwd=5, pch=" ",
x.ticklabs=colnames(my.model4), y.ticklabs=rownames(my.model4),
main="Conditional probabilities, Model 3")
Nice! but,
2010 Oct 03
5
How to iterate through different arguments?
If I have a model line = lm(y~x1) and I want to use a for loop to change the
number of explanatory variables, how would I do this?
So for example I want to store the model objects in a list.
model1 = lm(y~x1)
model2 = lm(y~x1+x2)
model3 = lm(y~x1+x2+x3)
model4 = lm(y~x1+x2+x3+x4)
model5 = lm(y~x1+x2+x3+x4+x5)...
model10.
model_function = function(x){
for(i in 1:x) {
}
If x =1, then the list
2006 Jun 27
8
Avaya 4610sw SIP setup problem
Hi all,
I've been pulling my hair out for two days over this problem... I did *a
lot* of Googling around, I searched the list archives to no avail - no
one has the same problem!
I have two Avaya 4610sw phones. I installed the latest SIP firmware
using the TFTP server. So far everything looks good. Each time the phone
boots, it retrieves the 46xxsettings.txt from the TFTP server. My
problem
2010 Feb 09
1
Missing interaction effect in binomial GLMM with lmer
Dear all,
I was wondering if anyone could help solve a problem of a missing interaction effect!!
I carried out a 2 x 2 factorial experiment to see if eggs from 2 different locations (Origin = 1 or 2) had different hatching success under 2 different incubation schedules (Treat = 1 or 2). Six eggs were taken from 10 females (random = Female) at each location and split between the treatments,
2009 Apr 27
2
refit with binomial model (lme4)
Dear R users,
I'm trying to use function 'refit' from lme4
and I get this error that I can't understand:
> refit(dolo4.model4,cbind(uu,50-uu))
Error in function (classes, fdef, mtable) :
unable to find an inherited method for function "refit", for signature
"mer", "matrix"
if I try:
> refit(dolo4.model4,uu)
Error in asMethod(object) :
2008 Nov 25
4
glm or transformation of the response?
Dear all,
For an introductory course on glm?s I would like to create an example to show the difference between
glm and transformation of the response. For this, I tried to create a dataset where the variance
increases with the mean (as is the case in many ecological datasets):
poissondata=data.frame(
response=rpois(40,1:40),
explanatory=1:40)
attach(poissondata)
However, I have run into
2009 Dec 10
1
updating arguments of formulae
Dear R-Community,
I am relatively new with R, so sorry for things which for you might be
obvious...
I am trying to automatically update lmer formulae.
the variables of the model are:
depM= my dependent measure
Sb2= a random factor
OS = a predictor
VR= another predictor
So, I am building the first model with random intercept only:
model = lmer(depM ~ (1 |Sb2))
then I update the formula
2010 Mar 28
1
keeping track of who did what
hello everybody.
i need to log "who did what" on some models. i was reading recipe 59
of rails recipes and i created something like that:
class LogSweeper < ActionController::Caching::Sweeper
observe :model1, :model2, :model3, :model4, :model5, ...
after_save(model)
save_log(model, "save")
end
after_destroy(model)
save_log(model, "destroy)
end