Displaying 20 results from an estimated 1000 matches similar to: "lc2 Model"
2010 Jan 22
1
Estimate Slope from Boltzmann Model (package: DRC)
Dear R Community,
I am using the package DRC ( to fit a boltzman model to my data. I
can fit the model and extract the lower limit, upper limit, and ED50
(aka V50), but I cannot figure out how to get the slope of the curve
at ED50. Is there a simple way to do this? I've searched the mailing
list and looked through the package documentation, but could not find
anything. I am new to r, and
2010 Sep 06
1
Prediction and confidence intervals from predict.drc
R-helpers,
I am using the package "drc" to fit a 4 parameter logistic model. When I
use the predict function to get prediction on a new dataset, I am not
getting the requested confidence or prediction intervals. Any idea what
is going on? Here is code to reproduce the problem:
---
library(drc)
# Fit model to existing dataset in package
spinach.model <- drm(SLOPE~DOSE, data =
2010 Nov 28
1
predict.drm not generating confidence intervals
R-helpers,
I recently submitted a help request for the predict.drm function found in the drc package. I am still having issues with the function and I am submitting reproducible code hoping that somebody can help me figure out what is going on.
--------
library(drc)
# Fit a 4 parameter logistic model to ryegrass dataset
fit <- drm(rootl ~ conc, data = ryegrass, fct = LL.4())
summary(fit)
#
2009 May 20
2
drc results differ for different versions
Hello,
We use drc to fit dose-response curves, recently we discovered that
there are quite different standard error values returned for the same
dataset depending on the drc-version / R-version that was used (not
clear which factor is important)
On R 2.9.0 using drc_1.6-3 we get an IC50 of 1.27447 and a standard
error on the IC50 of 0.43540
Whereas on R 2.7.0 using drc_1.4-2 the IC50 is
2010 May 21
0
weighted regression using drm() in drc package
Hi, I am currently trying to do dose-response curves
using weighted 4-parameter model (4PL). The weighting was based on
1/(expected variance) derived from historical data. I tried both drm() from drc package, and nls(), found very different
results derived from drm() vs. nls() using "weights=" argument.
d1<-read.table("d1.txt",sep='\t',header=T,row.names=1)
2010 Aug 12
0
DRC: Effective doses versus Predicted values
Hi!
I want to use the DRC package in order to calculate the IC50 value of an
enzyme inhibition assay.
The problem is that the estimated ED50, is always out of the fitted curve.
In the example below, I had a ED50 value of 2.2896,
But when I predict the response level for this concentration I get a value
of 45.71 instead of the expected value of 50.
This is my data:
#Dose unit is concentration
2011 Feb 23
0
Don't know which model in"drc" package is to be used to find EC values.
Hi every one,
I am using the package 'drc' to model root elongation using dose
response data. I don't know which model I should use. Though I don't
know which model I should use, I tried the following codes given
below. But it produced the error messages.Can any one tell me the code
in 'drc' package to find out the EC (Effective Concentration) values
and Confidence
2011 Feb 01
4
Fitting ELISA measurements "unknowns" to 4 parameter logistic model
Hello,
I am trying to fit my Elisa results (absorbance readings) to a standard
curve. To create the standard curve model, I performed a 4-parameter
logistic fit using the 'drc' package (ExpectedConc~Absorbance). This gave me
the following:
> FourP
A 'drc' model.
Call:
drm(formula = Response ~ Expected, data = SC, fct = LL.4())
Coefficients:
b:(Intercept) c:(Intercept)
2017 Aug 11
1
problem with R. program
After a run multdrc comment in R program, show warning sign in this
program. I attached the saving page of the script. I hope you could help
me, please.
Thanks a lot
A. Rahbari
-------------- next part --------------
R : Copyright 2005, The R Foundation for Statistical Computing
Version 2.1.0 (2005-04-18), ISBN 3-900051-07-0
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are
2005 Aug 22
2
problem building dendrograms to use with heatmap()
Hi,
I'm trying to build dendrograms to pass to heatmap().
The dendrograms I build plot properly, but when I pass them to heatmap() I get
the error message "row dendrogram ordering gave index of wrong length" (see
output log below).
I looked in the code of heatmap() and saw that the error was due to a NULL
return value from order.dendrogram(), which in turn got a NULL return value
2011 Jul 12
0
Adding a correlation value (like Rsquared) to a 4 parameter logistic fit model.
Hello,
In my lab we use a four parameter logistic fit model for our ELISA data
(absorbance values). We are currently testing the use of different solvents
and need to find a way to add a correlation value (such as an R squared or
something similar) so we can test different solvents in making this standard
curve. We currently use the drc package and this is our script for the 4
parameter:
2010 Nov 12
3
error message: "is"
Hello.
using the lm command, I always receive the error message "couldn't find
the function "is"". Do you haven an idea, what that means?
Thanks for your help.
Best regards.
Kathrin L.
2012 Aug 09
2
Olympics: 200m Men Final
Hello,
Have you seen the log-linear prediction of the 100m winning time in R
mailed to the list yesterday by David Smith, subject Revolutions Blog:
July roundup?
"A log-linear regression in R predicted the gold-winning Olympic 100m
sprint time to be 9.68 seconds (it was actually 9.63 seconds):
http://bit.ly/QfChUh"
The original by Markus Gesmann can be found at
2012 Jan 03
1
ED50 calculation in drc package
Hi,
I am trying to use drc package to calculate IC50 value. The ED50 calculated in some models (LL4 for example) as a response half-way between the upper and lower limit, which is the definition of the relative IC50 value. Does that mean the ED50 in drc package is IC50? How the ED function in drc package distinguish to estimate ED or IC values?
Thanks a lot
[[alternative HTML version
2014 Mar 17
5
LD50
Quiero comparar varias dosis letales 50% (LD50) usando análisis probit. He
seguido un ejemplo que viene en paquete DRC, pero no obtengo el resultado
esperado. Lo que quiero es saber si las LD50s, son diferentes y si la
diferencias son estadísticamente significativas.
Gracias de antemano.
José Arturo
e-mail. jafarfan@uady.mx <grejon@uady.mx>
e-mail alterno. jafarfan@gmail.com
2007 Apr 17
2
how to estimate dose from respond given drc package result
Dear all,
I can use the very nice drc package (multdrc()) to model and plot a
dataframe containing dose and response values. I can also use
predict.drc() to yield response values given a dose. I need to do the
opposite, estimate a dose given the response. The general predict
documentation seems to say that this is possible, but it does not
appear that predict.drc has that capability.
2006 Sep 25
1
nlme with a factor in R 2.4.0beta
Hi,
the following R lines work fine in R 2.4.0 alpha (and older R versions), but not in R
2.4.0 beta (details below):
library(drc) # to load the dataset 'PestSci'
library(nlme)
## Starting values
sv <- c(0.328919, 1.956121, 0.097547, 1.642436, 0.208924)
## No error
m1 <- nlme(SLOPE ~ c + (d-c)/(1+exp(b*(log(DOSE)-log(e)))),
fixed =
2009 Jun 21
2
Help on qpcR package
I am using R on a Windows XP professional platform.
The following code is part of a bigger one
CODE
press=function(y,x){
library(qpcR)
models.press=numeric(0)
cat("\n")
dep=y
print(dep)
indep=log(x)
print(indep)
yfit=dep-PRESS(lm(dep~indep))[[2]]
cat("\n yfit\n")
print(yfit)
yfit.orig=yfit
presid=y-yfit.orig
press=sum(presid^2)
2011 Dec 13
0
pmodels in DRC
Dear R users,
I'm a little lost on how to define pmodels for the DRC package. My goals are
to produce isoboles of binary toxicity data.
any tips? I really just need to know what pmodels refers to.
Cheers,
Pat
--
View this message in context: http://r.789695.n4.nabble.com/pmodels-in-DRC-tp4190567p4190567.html
Sent from the R help mailing list archive at Nabble.com.
2007 Mar 20
1
Error in nlme with factors in R 2.4.1
Hi,
the following R lines work fine in R 2.4.0, but not in R 2.4.1 or any devel versions of R
2.5.0 (see below for details).
library(drc) # to load the dataset 'PestSci'
library(nlme)
## Setting starting values
sv <- c(0.43355869, 2.49963220, 0.05861799, 1.73290589, 0.38153146, 0.24316978)
## No error
m1 <-
nlme(SLOPE ~ c + (d-c)/(1+exp(b*(log(DOSE)-log(e)))),
fixed =