search for: bskew

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

Did you mean: skew
2012 Aug 05
1
trouble with looping for effect of sampling interval increase
...req PSD <- PSDPLOT$spec #log transform the power spectral density Logfrequency <- log(frequency) LogPSD<- log(PSD) #fit my line to the data Line <- lm (LogPSD ~ Logfrequency) #store the slope of the line Betas <- 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 <-...