Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

489 results for “from:Thomas Petzoldt”

difference between <- and =
Thomas Petzoldt · Aug 29, 2003 · r-help

Levi Larkey schrieb: > Hi, > > I'm somewhat new to R and I'm trying to figure out the difference > between the operators <- and =. <- is an assignement operator = is primarily used for named arguments Some thoughts about the use of = as...

Levels number of a factor object
Thomas Petzoldt · Jan 23, 2004 · r-help

Laurent Houdusse schrieb: > Hi all! > > How to retrieve the levels number of a factor object? > See this code: > groups<-gl(4,10) > I want to retrieve the number of levels (4) of my object "groups" > I tried groups.levels but...

Changingvalues in data frame
Thomas Petzoldt · Mar 11, 2004 · r-help

Hello Frank, does the following example, what you want? Thomas P. ## some test data x <- data.frame(matrix(rnorm(72*10, mean=50, sd=20), ncol=10)) me <- colMeans(x) sd <- apply(x, 2, sd) coff <- me + 2*sd # see...

[R-sig-dyn-mod] question about the limit of conversion rate
Thomas Petzoldt · Jun 25, 2013 · r-sig-dynamic-models

Hi, your idea for a smoothed impulse function seems quite close to a good solution, what about: x <- seq(-20, 20, 1e-3) steep <- 20 plot(x, (tanh(steep * (x %% 10 - 8)) - tanh(steep * (x %% 10 - 2)))/2 + 1, type...

[R-sig-dyn-mod] Modeling dampened oscillator with random resets
Thomas Petzoldt · Jan 9, 2013 · r-sig-dynamic-models

On 09.01.2013 16:28, Felix Sch?nbrodt wrote: > Thanks! Works like a charm. > Felix Thanks to Karline Soetaert who implemented this mechanism and also to Woodrow Setzer. Instead of a data frame it is also possible (and even...

interesting feature
Thomas Petzoldt · Feb 18, 2004 · r-help

Svetlana Eden wrote: > Hi, everybody. > This was an interesting discussion last time and it helped me a lot. > > Could you please have a look at some feature and tell me > why it was designed this way What you see in...

How to measure mode (central tendancy)
Thomas Petzoldt · Aug 30, 2007 · r-help

Raymond Balise wrote: > What is the name of the function to give me the mode (central tendancy) of a > numeric variable that can be negative? Similar questions appear occasionally on this list. Please see the following help page for possible...

Stichprobe bilden
Thomas Petzoldt · Apr 29, 2004 · r-help

Thomas Lumley wrote: > On Thu, 29 Apr 2004, Thomas Petzoldt wrote: > >>If you want to make a subsample, you can select cases (rows) using >>sub(), see ?sub for details, e.g. somethink like: >> > > > I think you mean subset(). sub() is...

prcomp or princomp
Thomas Petzoldt · Oct 6, 2003 · r-help

Ann Devitt schrieb: > Hello, > is there any documentation on doing principal components analysis with R > besides the R manual itself which is not very informative yes, see the reference cited on the princomp() - help page: Venables, W. N. and B...

[R-sig-dyn-mod] failed attempt to use FME's modFit
Thomas Petzoldt · Jul 3, 2012 · r-sig-dynamic-models

Hi, did you test for simultanaeous identifiability of your parameters? If not, then this may be an idea, and you may also try to fix one or several parameters and try to fit the others. In addition, you may consider...

surface fitting
Thomas Petzoldt · Dec 6, 2004 · r-help

m p wrote: > Hello, > I am looking for a R routine to fit a function/surface > to my data 3d data. I'd like to use the function in a > model so something like splines is not applicable. > The data...

[R-sig-dyn-mod] Jacobian in compiled code
Thomas Petzoldt · Apr 9, 2015 · r-sig-dynamic-models

Hello, the Jacobian is optional, so you can safely omit it. However, specifying the Jacobian (or at least its structure) can speed up the integration of the odepack solvers, e.g. for 1D, 2D and 3D systems. The Runge-Kutta...

[R-sig-dyn-mod] deSolve warning and error messages
Thomas Petzoldt · Feb 20, 2013 · r-sig-dynamic-models

Hi, one additional remark: I assume that the setting of "maxsteps = 10" was intentional to force the warnings in the exymple. It is the maximum of the internal iteration counter (e.g. adams or bdf). The default value is 5000...

Newbie graphing questions
Thomas Petzoldt · Aug 28, 2003 · r-help

Marc Schwartz wrote: > In general, if you want to leave the existing device open and have a new > device open for a new plot, you simply call the device name that you > want to open (ie. under Linux you would...

one dimensional AKIMA in R?
Thomas Petzoldt · Dec 6, 2004 · r-help

Hello, I am looking for an interpolation method similar to the one-dimensional AKIMA interpolation as in Akima (1970). Is there already such an algorithm in R which I may have overlooked? Thank you in advance Thomas P. H. Akima...

do.call and env
Thomas Petzoldt · Mar 10, 2004 · r-help

Erin Hodgess wrote: > Hi Thomas! > > Try something like this: > > fx <- function(y) print(x*y) > > f <- function(fun,x) { > assign("x",x,env=.GlobalEnv) > fxx <- function() { > do.call(fun,list(y=3)) > } > fxx() > } > > f("fx",13) > > [1] 39 > > > Hope this...

[R-sig-dyn-mod] ode integration troubles
Thomas Petzoldt · Feb 3, 2016 · r-sig-dynamic-models

Another hint, try: out <- ode(state6, 0:100, BIOGEO6, parms=parameters6) init <- out[64, 2:29] outx <- ode(init, seq(63, 63.4, 0.01), BIOGEO6, parms=parameters6) tail(outx[,2:29]) ... that runs the model during the critical time...

convert a Character-string to a number
Thomas Petzoldt · Sep 12, 2003 · r-help

Michael Kirschbaum schrieb: > Hi Everyone. > > I have a simple problem but don't know, how to get along. > > how can I convert the vector > > a<-c("0,01","1,00") > in a vector > b<-c(0.01,1.00) > > Thank...

[R-sig-dyn-mod] Hybrid simulation of nonlinear ode and discrete state machine
Thomas Petzoldt · Dec 9, 2016 · r-sig-dynamic-models

Thanks for clarification. The transformation of a second order derivative is briefly shown here: https://journal.r-project.org/archive/2010-2/RJournal_2010-2_Soetaert~et~al.pdf#3 and some more may be found in the book of...

[R-sig-dyn-mod] Kalman Filter
Thomas Petzoldt · Nov 15, 2010 · r-sig-dynamic-models

Hi Thomas, your question was not very specific and did not contain a "minimal reproducible example". Anyway, you may find some information about Kalman filtering in R in the book of Shumway and Stoffer: "Time Series Analysis and Its Applications...

Can't find what you're looking for? Try searching with Google .