search for: lke

Displaying 20 results from an estimated 32 matches for "lke".

Did you mean: like
2006 Feb 12
1
lme, nlsList, nlsList.selfStart
Dear listers, I am trying to fit a model using nlsList() using alternately a SSfol() selfstart function or its developped equivalent formulae. This preliminary trial works well mydata<-groupedData(Conc~Tps|Organ,data=mydata) mymod1<-nls(Conc~SSfol(Dose,Tps,lKe,lKa,lCl),data=mydata) as well as a developped form: mymod2<-nls(Conc~Dose * exp(lKe+lKa-lCl) * (exp(-exp(lKe)*Tps)-exp(-exp(lKa)*Tps)) /(exp(lKa)-exp(lKe)), data=mydata, start= c(lKe=-2.77, lKa=-1.41, lCl=-1.13) ) However when trying to fit the model with nlsList, I get: mymod3&...
2005 Jan 24
0
Follow-up on nls convergence failure with SSfol
...1.75 18.00 1 2.00 17.00 1 2.50 13.90 1 3.00 11.20 1 3.50 9.90 1 4.00 4.70 1 5.00 5.00 1 6.00 1.90 1 7.00 1.90 1 9.00 1.10 1 12.00 0.95 1 14.00 0.46 1 and the attempted fit looked like > nls(conc ~ SSfol(dose, time, lKe, lKa, lCl), testdat, trace = 1) nls(conc ~ SSfol(dose, time, lKe, lKa, lCl), testdat, trace = 1) 99.15824 : -1.2061792 0.1296156 -4.3020997 86.07567 : -0.7053265 -0.3873204 -4.1278009 85.19743 : -0.5548499 -0.5333776 -4.1173627 Error in nls(conc ~ SSfol(dose, time, lKe, lKa, lCl), testdat, trac...
2009 Jun 18
3
R function found in two packages !
Hi, Is there a mean to automatically choose one version of the 'rbind' function ? By default, R chose the 'rbind' from {base}, i would lke to use the one from {IRanges}... Is it possible to set that using 'par' ? > ?rbind Help on topic 'rbind' was found in the following packages: Package Library IRanges /us3/gcg18/martial/local/R_lib base /usr/local/lib64/R/librar...
2002 Oct 04
1
gnls from library nlme
Dear all, I am trying to gain some experience with the function gnls from the nlme package. I tried to model the Theophyline data by trying to model the presumed dependency of the clearance on the body weight. This is my function call of gnls: gnls(conc~SSfol(Dose,Time,lKe,lKa,lCl),data=Theoph, params=list(lKe~1,lKa~1,lCl~Wt),start=c(-2.4,0.46,-3.22,0.01)) That's been the result: Error in as.vector(x, mode) : cannot coerce to vector I tried various other calls with no success. Does anyone have a hint for me? Thanks a lot Peter -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2005 Jan 06
1
nls - convergence problem
...1 2.50 13.90 1 3.00 11.20 1 3.50 9.90 1 4.00 4.70 1 5.00 5.00 1 6.00 1.90 1 7.00 1.90 1 9.00 1.10 1 12.00 0.95 1 14.00 0.46 1 24.00 NA 1 30.00 NA 1 36.00 NA 1 I use the self-starting function SSfol: nls(conc~SSfol(dose,time,lKe,lKa,lCl),data=test,trace=T,control=nls.control(maxiter=13,tol=0.001,minFactor=1.E-500),na.action=na.omit) This gives the following output: 99.15824 : -1.2061792 0.1296157 -4.3020997 86.07567 : -0.7053265 -0.3873204 -4.1278009 85.19743 : -0.5548499 -0.5333776 -4.1173627 85.19246 : -0.54663...
2005 Jul 20
0
script.aculo.us 1.1 beta 1 ready
...y IE7.js -> Various tweaks and fixes The final 1.1 should also contain various features that are in the "pipeline" now. Big thanks to the contributors! From the CHANGELOG: *1.1beta1* * Fixed rendering of last frame of animation when from/to is not 0.0/1.0. [thanks to David Z?lke] * Updated internal Prototype JavaScript framework to version 1.4.0_pre2 (patched w/ workaround for Ajax.Updater init bug) * Some refactoring of controls.js to get rid of "dirty" implementation detail (dont'' ask) * Added returning the generated combined effects to allow fo...
2010 Mar 22
2
importing .bil files
Dear list Has anyone got a recipie at hand to import .bil files into R? From what I understand the .bil files I got contain layered matricies which I would lke to make available in R as an array or list. GIS people seem to be familiar with the .bil format but I am not using any GIS software and would prefer to deal with the data in R. I use the latest version of R on Mac OSX 10.5.8. Thanks, Sebastian
2015 Dec 11
5
Samba-4 DNS issue
...called "uk" under the "e2eservices.co.uk" zone that appears to replicate all entries that where originally in the zone (so for example I now have "styx.e2eservices.co.uk.e2eservices.co.uk", "foobar.e2eservices.co.uk.e2eservices.co.uk", etc.   I'd rather lke to clean this up by deleting all of the records under "e2eservices.co.uk.e2eservices.co.uk"(including the child entries rooted at "uk.e2eservices.co.uk") without deleting any records under "e2eservices.co.uk" but cannot work out how to do this. I guess if absolutely ne...
2018 Dec 06
1
Still getting Dropbox warning at login after uninstalling Dropbox
Lke many people I have received the message from Dropbox about their changes including the non-support for the old Linux RPM. As I no longer use Dropbox I thought I would just remove the nautilus-dropbox RPM. However, I am still receiving the warning every time I log in. Can anyone tell me what I...
2007 Nov 10
1
Need something like multiple plots in ts.plot but then change x values
...frame(a=c(1,2,3,4,5),b=c(2,4,6,8,10)) y<-data.frame(a=c(3,4,5),b=c(1.5,2,2.5)) xts <- ts(x$b,start=x$a[1]) yts <- ts(y$b,start=y$a[1]) ts.plot(xts,yts,col=c("red","blue")) But ts.plot does not allow to change x labels. Besides, i need dots. That's the cause I would lke to know if there is some way to trick plot to do this. Thanks in advance. -- Felipe [[alternative HTML version deleted]]
2005 Jul 21
1
attended transfert
hi i would lke implement attended transfert (or consultative transfer) on asterisk server, but i don't find doc about this. Could you help me with some doc about attended transfert? thanks
2014 Jun 23
2
firefox keeps downloading .iso files
...n with more room. I found this: https://support.mozilla.org/en-US/questions/926609 I did not like the side-effects. For now, I've stopped the downloads by replacing the target files with empty unreadable files. Now I get an error message right away and it does not chew up my bandwidth. I'd lke a better solution. Any ideas? [hennebry at localhost firefox]$ uname -a Linux localhost.localdomain 2.6.32-431.17.1.el6.x86_64 #1 SMP Wed May 7 23:32:49 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux [hennebry at localhost firefox]$ firefox --version Mozilla Firefox 24.5.0 [hennebry at localhost firefox...
2015 Dec 11
1
Samba-4 DNS issue
...k" under the "e2eservices.co.uk" zone that appears to replicate all entries that where originally in the zone (so for example I now have "styx.e2eservices.co.uk.e2eservices.co.uk", "foobar.e2eservices.co.uk.e2eservices.co.uk", etc. > >   > I'd rather lke to clean this up by deleting all of the records under "e2eservices.co.uk.e2eservices.co.uk"(including the child entries rooted at "uk.e2eservices.co.uk") without deleting any records under "e2eservices.co.uk" but cannot work out how to do this. I guess if absolutely ne...
2005 May 25
3
Errors in Variables
...ntains leiv3: Programs for best line fitting with errors in both coordinates. (The date is October 1989, by B.D. Ripley et al.) I have done a search for something similar in R withour success. Has this been implemented in a R-package, possibly under some sort of assumptions about variances. I would lke my student to apply some regression techniques to data that fit this profile. Any help is much appreciated. (If I have not done my search more carefully - my apologies.) Thanks Jacob Jacob L van Wyk Department of Mathematics and Statistics University of Johannesburg APK P O Box 524 Auckland Park...
2008 May 12
8
Complex data structures in templates
Hi. I wonder if it is possible to use more complex data structures in templates than simple variables and arrays? I have been trying nested arrays, as well as nested arrays and hashes, but nothing seems to work (more specifically, nested arrays seem to be flattened into a single array). Having only simple variables and arrays is a little limiting. Something like the Perl-based Template Toolkit
2017 Dec 18
2
DHCP-DNS problems
...Dec 18 15:39:47 dc02 dhcpd: update failed: NOTAUTH Dec 18 15:39:47 dc02 logger: DHCP-DNS Update failed: 22 In this state, clearing the /tmp/dhcpd-dyndns.cc and/or regeneraing the /etc/dhcpduser.keytab will not fix things. Only restarting the "named" server does, after which I get stuff lke: Dec 18 15:41:38 dc02 dhcpd: domain is rvx.is Dec 18 15:41:38 dc02 dhcpd: doing add Dec 18 15:41:39 dc02 named[17215]: samba_dlz: starting transaction on zone rvx.is Dec 18 15:41:39 dc02 named[17215]: samba_dlz: allowing update of signer=dhcpduser\@RVX.IS name=RedmiNote4-Gj?gur.rvx.is tcpaddr=127.0...
2015 Dec 11
0
Samba-4 DNS issue
...k" under the "e2eservices.co.uk" zone that appears to replicate all entries that where originally in the zone (so for example I now have "styx.e2eservices.co.uk.e2eservices.co.uk", "foobar.e2eservices.co.uk.e2eservices.co.uk", etc. > > > I'd rather lke to clean this up by deleting all of the records under "e2eservices.co.uk.e2eservices.co.uk"(including the child entries rooted at "uk.e2eservices.co.uk") without deleting any records under "e2eservices.co.uk" but cannot work out how to do this. I guess if absolutely ne...
2006 Jun 27
3
Trunk or 1.1?
If you were launching a site in late September, would you be developing with Rails 1.1 or on edge rails? Joe
2009 Nov 10
0
contrast in lme
...casions, 1 baseline, one "treatment" variable) collected in the same subjects using the following model: library(nlme) model.lme <- lme(response ~ V0+ time+ tt + tt:time, random = ~1|subject, correlation = corSymm(form = ~ 1 | subject), na.action=na.omit, data=arm.total2) Then I would lke to estimate the effect of "treatment" at time = 6 using the package "contrast" library(contrast) contrast(model.lme , a = list(tt="1",time="6"), b = list(tt="0",time="6") ) But I get the following error message "Erreur dans gendata....
2003 Sep 02
0
Incoming phone dialing / IXJ
Hi all, Does anyone have a working IXJ / Dial in config they'd lke to share with me? Thanks, Andrew Griffiths