Displaying 7 results from an estimated 7 matches for "u9370004".
Did you mean:
370004
2005 Sep 20
1
Extract data from edit chart
Dear R users:
I wonder if it is possible to use
"data.frame" and "edit" to show the
form like:
parameter upper lower
A
B
C
when I type the command edit(abc), assume
the data.frame named "abc". And then I want to
extract the number form it, like abc[1,2]
which mean the upper level of A, to do something.
The following is my example and the warning
2005 Dec 05
1
how to save output all together
Dear R users:
I have a problem about catch the value from function.
I have following two functions (part):
sbolus1 <- function()
{
.......
for( i in 1:Subject) {
kel<-par1
Vd<-par2
PKindex<-sbolus1.out(PKtime,kel,Vd,defun,par1,par2,Dose,i)
}
savefile(PKindex)
}
sbolus1.out<-function(PKtime,kel,Vd,defun,par1,par2,Dose,i)
{
time<-PKtime$time
2005 Jul 27
3
how to overlook the zero in the denominator
Dear R users:
I have two set of data, as follow:
x<-c(0,0,0.28,0.55,1.2,2,1.95,1.85,
1.6,0.86,0.78,0.6,0.21,0.18)
y<-c(0,0,0,0.53,1.34,1.79,2.07,1.88,
1.52,0.92,0.71,0.55,0.32,0.19)
i<-1:length(x)
I want to sum each (x[i]-y[i])^2/x[i] together,
like:
>Sum <-sum((x[i]-y[i])^2/x[i])
>Sum
[1] NaN
Because the denominator shoud not be zero.
So I want to overlook those
2005 Dec 03
2
How to catch value
Dear R users:
I have a problem about catch the value from function.
I have following two functions (part):
fbolus1 <- function()
{.........
par<-data.frame(Parameter=c("kel","Vd"),Initial=c(0))
check(par)
.....}
check<-function(par)
{
if (par[ ,2] <= 0){
cat("\nEnter again (y/n) ?\n\n")
ans<-readline()
if (ans == "n" ){
2005 Jul 19
2
Michaelis-menten equation
Dear R users:
I encountered difficulties in michaelis-menten equation. I found
that when I use right model definiens, I got wrong Km vlaue,
and I got right Km value when i use wrong model definiens.
The value of Vd and Vmax are correct in these two models.
#-----right model definiens--------
PKindex<-data.frame(time=c(0,1,2,4,6,8,10,12,16,20,24),
2005 Oct 12
0
monte carlo simulation
Dear R user:
I wonder if it is possible to run monte carlo simulation
with dse2 package(MonteCarloSimulations function) using ordinary
differential equation. How do I define the model? Or if there are any
functions which can run monte carlo simulation using ordinary differential
equation. Please give me some comments. Thanks in advance!!
2005 Sep 25
2
summary nls output
Dear R user:
I bulid a package, and in the package I use the function "nls"
to solve some questions. If I have two sets of data, and I want to
summary these two data's nls output, I write the command in the
package source code like:
{
..........
summary(fm1)
summary(fm2)
}
then i compiler the package and use "Install package(s) from
local zip files" to install my