Nothing
data("alligator")
alligator_data <- process_measurements(alligator,
pos = "Vertebra")
# Compute PCOs
alligator_PCO <- svdPCO(alligator_data)
# Plot vertebrae before subsetting
plotvertmap(alligator_PCO, text = TRUE)
# Subset data after estimating PCOs
alligator_PCO_subset <- subset(alligator_PCO,
Vertebra < 20)
# Plot vertebrae after subsetting; vertebrae outside
# subset are dropped
plotvertmap(alligator_PCO_subset, text = TRUE)
# Subset data after estimating PCOs with `drop = FALSE`
alligator_PCO_subset <- subset(alligator_PCO,
Vertebra < 20,
drop = FALSE)
# Plot vertebrae after subsetting; vertebrae outside
# subset remain and are treated as missing
plotvertmap(alligator_PCO_subset, text = TRUE)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.