alien.test {mltools} | R Documentation |
Alien test dataset
Description
A dataset describing features of living beings
Usage
alien.test
Format
A data.table with 8 rows and 5 variables:
- SkinColor
Skin color of the individual
- IQScore
IQ score of the individual
- Cat1
Categorical descriptor
- Cat2
Categorical descriptor
- Cat3
Categorical descriptor
Details
library(data.table)
alien.test <- data.table::data.table( SkinColor=c("white", "green", "brown", "white", "red"), IQScore=c(79, 100, 125, 90, 115), Cat1=c("type4", "type4", "type3", "type1", "type1"), Cat2=c("type5", "type5", "type9", "type8", "type2"), Cat3=c("type2", "type2", "type7", "type4", "type4") )
save(alien.test, file="data/alien_test.rda")
[Package mltools version 0.3.5 Index]