Description Usage Arguments Value Examples
View source: R/Isobole_gridRefinementAlgorithm.R
Sometimes arrange_isobole misses a point and then this point causes trouble Identify them by finding points which have two large steps directly after each other
1 | removeOutliers(iso)
|
iso |
data.table(xp,yp) arranged with arrange_isobole |
data.table(xp,yp) with potential outliers removed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # library(data.table)
# library(ggplot2)
#
# iso_outliers <- data.table(DATAPIOutlierExample1)
# iso_noOutliers <- removeOutliers(iso_outliers)
# PIggplot(mapping = aes(xp,yp)) +
# geom_path(data = iso_noOutliers, color = "black", linetype = 1) +
# geom_path(data = iso_outliers, color = "red", linetype = 2)
#
# iso_outliers <- data.table(DATAPIOutlierExample2)
# iso_noOutliers <- removeOutliers(iso_outliers)
# PIggplot(mapping = aes(xp,yp)) +
# geom_path(data = iso_noOutliers, color = "black", linetype = 1) +
# geom_path(data = iso_outliers, color = "red", linetype = 2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.