# Use a tourr dataset with the default (fast) methods
dat <- spinifex::weather_na.rm[, 2:18]
(result <- ide(data = dat, inc_slow = FALSE))
# The result is a named vector, which can be summarized
summary(result)
# This suggests 6 or so dimensions may be sufficient embedding
# to describe the original 17 variables.
# Or visualized
hist(result)
# Note: Including 'inc_slow = TRUE' can take considerably longer
# to run for larger datasets.
if (FALSE) {
# Run all methods, including the slower ones, on a larger dataset
system.time(ide_long <- ide(dat, inc_slow = TRUE))
}
Run the code above in your browser using DataLab