search for: scaletim

Displaying 1 result from an estimated 1 matches for "scaletim".

Did you mean: scaletime
2009 Aug 31
1
ssanova help
...culty. For my data, I have measurements at 2 milisecond intervals for every observation. Every observation does not have the same duration, so I have scaled the times for each observation to a scale between 0 and 1. I would like to smooth over time, and the following works: ssanova(Measurement ~ ScaleTime, data = data) I would also like to see how the variable duration affects the curve, so I have another column in the dataframe which contains the log duration. I did it like so: Durations <- data.frame(LogDuration = log(tapply(data$Time, data$Token, max)), Token = levels(data$Token) data <-...