search for: doser

Displaying 4 results from an estimated 4 matches for "doser".

Did you mean: moser
2023 Dec 18
3
Function with large nested list
..._list)) #make a dict of all AB's and assign status green as deafault for status list_AB_remarks <- setNames(as.list(rep("Geen opmerkingen", length(AB_list))), names(AB_list)) #make a dict of all AB's and assign "Geen" as default for remarks #Try empty list list_AB_dosering <- setNames(as.list(rep("Geen informatie", length(AB_list))), names(AB_list)) # make named list of all AB's and assign "Geen informatie", will be replaced with actual information in algorithm list_AB_duur <- setNames(as.list(rep("Geen informatie", length...
2009 Aug 22
0
forest (meta) editing text
...n a meta-analsysis and all the forest (meta) and forestplot (rmeta) instructions assume you are doing a meta-analysis. I found rmeta didn't play nicely for me so I'm using the meta package with forest. Here's some code that would allow you to reproduce it: library(meta) mydata.forest.DoseRed = data.frame(c(1,7,14,6,16), c(7,21,10,15,23), c(1,1,5,2,5), c(4,7,6,5,12)) colnames(mydata.forest.DoseRed)=c("n.DR","n.No.DR", "E.DR","E.No.DR") rownames(mydata.forest.DoseRed)=c( "Age: 50-59", "Age: 60-69 ", "Age: >70",...
2010 May 02
2
Calculation error
...cl=0.046; tau=6; t=3; F=1; wtkg <- wt/2.2 # convert lbs to kg vd.pt <- wtkg * vd # compute weight-based vd (L) cl.pt <- wtkg * cl # compute CL (L/hr) k <- cl.pt/vd.pt # compute k (hr^-1) cave <- round((twhi - twlo)/log(twhi/twlo),2) doserate <- (cl.pt * cave)/F # maintenance dose (Dm) total_dose_tau <- round(doserate * tau,0) Cmax <- total_dose_tau/vd.pt Cmin <- Cmax * exp(-k * tau) AR <- 1/(1 - exp(-k * tau)) Cmaxss <- Cmax * AR Cminss <- Cmin * AR Cfluctss <- (Cmaxss - Cminss) Ct...
2004 Jan 22
4
Fitting compartmental model with nls and lsoda?
...ribution here # is hopefully to provide a starting point in "R" for people who # have a pharmacokinetic modelling background. # This text can be "cut and pasted" into R, or read in as a "source" file # There are two differential equations in the system: # V*dC/dt = Doserate - C*Cl + k21*A2 - k12*V*C # dA2/dt = k12*V*C - k21*A2 # C is a dependent variable (Concentration in the central compartment) # A is a dependent variable (Amount in the second compartment) # t is the independent variable (time) # V is the volume of the central compartment # Cl is the clearance...