Displaying 1 result from an estimated 1 matches for "intervalskew".
Did you mean:
intervalset
2012 Aug 05
1
trouble with looping for effect of sampling interval increase
...rbind (Betas, -coef(Line)[2])
#Get values on the curve shape
BSkew <- skew (Betas)
BMean <- mean (Betas)
BMedian <- median (Betas)
Q <- quantile (Betas)
#store curve shape values
IntervalLowerQ <- rbind (IntervalLowerQ , Q[2])
IntervalUpperQ <- rbind (IntervalUpperQ , Q[4])
IntervalSkew <- rbind (IntervalSkew , BSkew)
IntervalMean <- rbind (IntervalMean , BMean)
IntervalMedian <- rbind (IntervalMedian , BMedian)
#Store the Betas
#This is a pain
BetaSave <- Betas
no.r <- nrow(IntervalBetas)
l.v <- length(BetaSave)
difer <- no.r - l.v
difers <- abs(difer...