seriation (version 1.2-2)

Zoo: Zoo Data Set

Description

A database containing characteristics of different animals. The database was created and donated by Richard S. Forsyth and is available from the UCI Machine Learning Repository (Newman et al, 1998).

Usage

data("Zoo")

Arguments

Format

A data frame with 101 observations on the following 17 variables.
hair
{0, 1}
feathers
{0, 1}
eggs
{0, 1}
milk
{0, 1}
airborne
{0, 1}
aquatic
{0, 1}
predator
{0, 1}
toothed
{0, 1}
backbone
{0, 1}
breathes
{0, 1}
venomous
{0, 1}
fins
{0, 1}
legs
Numeric (set of values: {0, 2, 4, 5, 6, 8})
tail
{0, 1}
domestic
{0, 1}
catsize
{0, 1}
class
a factor with levels amphibian bird fish insect invertebrate mammal reptile

Examples

Run this code
data("Zoo")
x <- scale(Zoo[, -17])


d <- dist(x)
pimage(d)

order <- seriate(d, method = "tsp")
pimage(d, order)

Run the code above in your browser using DataLab