Assignment Details

Store a copy of the mushroom data in github repository. Reference this data in your R code

Take the data, and create a dataframe with a subset of the columns in the dataset. You should include the column that indicates edilble or poisonous and three or four other columns. You should also add meaningful column names and replace the abbreviations used in the data.

Embedded R code:

# install necessary packages
install.packages("devtools", dependencies = TRUE, repos = "http://lib.stat.cmu.edu/R/CRAN/")
## Warning: dependencies 'BiocInstaller', 'lintr (>= 0.2.1)' are not available
## package 'devtools' successfully unpacked and MD5 sums checked
## 
## The downloaded binary packages are in
##  C:\Users\Karen\AppData\Local\Temp\RtmpCelROm\downloaded_packages
install.packages("DataCombine", dependencies = TRUE, repos = "http://lib.stat.cmu.edu/R/CRAN/")
## package 'DataCombine' successfully unpacked and MD5 sums checked
## 
## The downloaded binary packages are in
##  C:\Users\Karen\AppData\Local\Temp\RtmpCelROm\downloaded_packages
# get RCurl on board so csv file can be retrieved
library(RCurl)
## Loading required package: bitops
# get package DataCombine on board so FindReplace can be used
library(DataCombine)

# retrieve data file from github repository
mushroom <- getURL("https://raw.githubusercontent.com/karenweigandt/cuny-summer-bridge/27636107110c8e883bcffd4ec4f12783bf465c9c/kawCOPYagaricuslepiota3.csv")

# read the csv file into R
fungus <- read.csv(text = mushroom, header = FALSE, stringsAsFactors = FALSE)

# head(fungus) check the first 6 rows of data set fungus

# decrease number of columns in dataset, as per assignment
fewercol_fungus <- fungus[, 1:5]

# head(fewercol_fungus) check the first 6 rows of data set fewercol_fungus

# convert to dataframe
df_fewercol_fungus <- data.frame(fewercol_fungus)

# modify column names
colnames(df_fewercol_fungus) <- c("eat", "cap_shape", "cap_surface", "cap_color", "bruises")

# create data frame for replacement of eat values
eat_orig <- c("p", "e")
eat_new <- c("poisonous", "edible")
df_eat_replace <- data.frame(eat_orig, eat_new)

# replace eat values and save them in new dataframe
df_new_fungus <- FindReplace(data = df_fewercol_fungus, Var = "eat", replaceData = df_eat_replace, from = "eat_orig", to = "eat_new", exact = FALSE)

# create data frame for replacement of cap_shape values
cap_shape_orig <- c("b", "c", "x", "f", "k", "s")
cap_shape_new <- c("bell", "conical", "convex", "flat", "knobbed", "sunken")
df_cap_shape_replace <- data.frame(cap_shape_orig, cap_shape_new)

# replace cap_shape values and save them with previous changes in the new dataframe
df_new_fungus <- FindReplace(data = df_new_fungus, Var = "cap_shape", replaceData = df_cap_shape_replace, from = "cap_shape_orig", to = "cap_shape_new", exact = FALSE)

# create data frames for replacement of cap_surface values
cap_surface_orig <- c("f", "g", "y", "s")
cap_surface_int <- c("0", "1", "2", "3")
cap_surface_new <- c("fibrous", "grooves", "scaly", "smooth")

df_cap_surface_orig_to_int <- data.frame(cap_surface_orig, cap_surface_int)
df_cap_surface_replace <- data.frame(cap_surface_int, cap_surface_new)


#replace cap_surface with intermediate values and save them with previous changes in the new dataframe
df_new_fungus <- FindReplace(data = df_new_fungus, Var = "cap_surface", replaceData = df_cap_surface_orig_to_int, from = "cap_surface_orig", to = "cap_surface_int", exact = FALSE)

# replace cap_surface intermediate values and save them with previous changes in the new dataframe
df_new_fungus <- FindReplace(data = df_new_fungus, Var = "cap_surface", replaceData = df_cap_surface_replace, from = "cap_surface_int", to = "cap_surface_new", exact = FALSE)

# create data frames for replacement of cap_color values
cap_color_orig <- c("n", "b", "c", "g", "r", "p", "u", "e", "w", "y")
cap_color_int <- c("0", "1", "2", "3", "4", "5", "6", "7", "8", "9")
cap_color_new <- c("brown", "buff", "cinnamon", "gray", "green", "pink", "purple", "red", "white", "yellow")

df_cap_color_orig_to_int <- data.frame(cap_color_orig, cap_color_int)
df_cap_color_replace <- data.frame(cap_color_int, cap_color_new)

# replace cap_color with intermediate values and save them with previous changes in the new dataframe
df_new_fungus <- FindReplace(data = df_new_fungus, Var = "cap_color", replaceData = df_cap_color_orig_to_int, from = "cap_color_orig", to = "cap_color_int", exact = FALSE)

# replace cap_color intermediate values with new values and save them with previous changes in the new dataframe
df_new_fungus <- FindReplace(data = df_new_fungus, Var = "cap_color", replaceData = df_cap_color_replace, from = "cap_color_int", to = "cap_color_new", exact = FALSE)

# create data frame for replacement of bruise values
bruise_orig <- c("t", "f")
bruise_new <- c("yes", "no")
df_bruise_replace <- data.frame(bruise_orig, bruise_new)

# replace bruise values and save them with previous changes in the new dataframe
df_new_fungus <- FindReplace(data = df_new_fungus, Var = "bruises", replaceData = df_bruise_replace, from = "bruise_orig", to = "bruise_new", exact = FALSE)

# show the first 6 rows of the new dataframe
head(df_new_fungus)
##         eat cap_shape cap_surface cap_color bruises
## 1 poisonous    convex      smooth     brown     yes
## 2    edible    convex      smooth    yellow     yes
## 3    edible      bell      smooth     white     yes
## 4 poisonous    convex       scaly     white     yes
## 5    edible    convex      smooth      gray      no
## 6    edible    convex       scaly    yellow     yes
# show the first 6 rows of the old dataframe for comparison
head(df_fewercol_fungus)
##   eat cap_shape cap_surface cap_color bruises
## 1   p         x           s         n       t
## 2   e         x           s         y       t
## 3   e         b           s         w       t
## 4   p         x           y         w       t
## 5   e         x           s         g       f
## 6   e         x           y         y       t
# show data frame by
#printing 1000 rows at a time
print(df_new_fungus[1:1000, ])
##            eat cap_shape cap_surface cap_color bruises
## 1    poisonous    convex      smooth     brown     yes
## 2       edible    convex      smooth    yellow     yes
## 3       edible      bell      smooth     white     yes
## 4    poisonous    convex       scaly     white     yes
## 5       edible    convex      smooth      gray      no
## 6       edible    convex       scaly    yellow     yes
## 7       edible      bell      smooth     white     yes
## 8       edible      bell       scaly     white     yes
## 9    poisonous    convex       scaly     white     yes
## 10      edible      bell      smooth    yellow     yes
## 11      edible    convex       scaly    yellow     yes
## 12      edible    convex       scaly    yellow     yes
## 13      edible      bell      smooth    yellow     yes
## 14   poisonous    convex       scaly     white     yes
## 15      edible    convex     fibrous     brown      no
## 16      edible    sunken     fibrous      gray      no
## 17      edible      flat     fibrous     white      no
## 18   poisonous    convex      smooth     brown     yes
## 19   poisonous    convex       scaly     white     yes
## 20   poisonous    convex      smooth     brown     yes
## 21      edible      bell      smooth    yellow     yes
## 22   poisonous    convex       scaly     brown     yes
## 23      edible      bell       scaly    yellow     yes
## 24      edible      bell       scaly     white     yes
## 25      edible      bell      smooth     white     yes
## 26   poisonous      flat      smooth     white     yes
## 27      edible    convex       scaly    yellow     yes
## 28      edible    convex       scaly     white     yes
## 29      edible      flat     fibrous     brown      no
## 30      edible    convex      smooth    yellow     yes
## 31      edible      bell      smooth    yellow     yes
## 32   poisonous    convex       scaly     white     yes
## 33      edible    convex       scaly    yellow     yes
## 34      edible    convex       scaly     brown     yes
## 35      edible      bell       scaly    yellow     yes
## 36      edible    convex     fibrous    yellow     yes
## 37      edible    sunken     fibrous      gray      no
## 38   poisonous    convex       scaly     brown     yes
## 39      edible    convex     fibrous    yellow     yes
## 40      edible      bell      smooth    yellow     yes
## 41      edible      bell       scaly    yellow     yes
## 42      edible    convex       scaly    yellow     yes
## 43      edible    convex     fibrous     brown      no
## 44   poisonous    convex       scaly     white     yes
## 45      edible    convex      smooth    yellow     yes
## 46      edible    convex       scaly     white     yes
## 47      edible    convex       scaly    yellow     yes
## 48      edible    convex      smooth     white     yes
## 49      edible    convex       scaly    yellow     yes
## 50      edible      flat       scaly    yellow     yes
## 51      edible    convex       scaly     brown     yes
## 52      edible    convex      smooth     white     yes
## 53      edible      bell      smooth     white     yes
## 54   poisonous    convex       scaly     brown     yes
## 55   poisonous    convex      smooth     white     yes
## 56      edible      bell       scaly    yellow     yes
## 57      edible      flat     fibrous      gray      no
## 58      edible      bell      smooth     white     yes
## 59      edible    convex      smooth    yellow     yes
## 60      edible    convex       scaly     brown     yes
## 61      edible    sunken     fibrous      gray      no
## 62      edible      bell       scaly    yellow     yes
## 63      edible      bell      smooth    yellow     yes
## 64      edible      bell       scaly    yellow     yes
## 65      edible      bell       scaly     white     yes
## 66      edible      flat      smooth     brown      no
## 67      edible    convex      smooth     white     yes
## 68      edible      flat       scaly    yellow     yes
## 69      edible    convex       scaly    yellow     yes
## 70      edible    convex     fibrous      gray      no
## 71      edible      flat     fibrous    yellow     yes
## 72      edible      bell       scaly     white     yes
## 73      edible      flat     fibrous    yellow     yes
## 74      edible    convex       scaly     brown     yes
## 75      edible      bell      smooth    yellow     yes
## 76      edible      flat      smooth    yellow     yes
## 77      edible    convex      smooth     white     yes
## 78      edible      flat       scaly     brown     yes
## 79   poisonous    convex       scaly     brown     yes
## 80      edible      flat       scaly     brown     yes
## 81      edible    convex      smooth     brown      no
## 82   poisonous    convex       scaly     white     yes
## 83      edible      flat     fibrous      gray      no
## 84      edible    convex     fibrous      gray      no
## 85      edible    convex       scaly    yellow     yes
## 86      edible    convex      smooth     brown      no
## 87      edible      bell      smooth     white     yes
## 88      edible    convex      smooth     white     yes
## 89      edible      flat       scaly     brown     yes
## 90      edible    sunken     fibrous     brown      no
## 91      edible    convex     fibrous     brown      no
## 92      edible      bell      smooth     white     yes
## 93      edible    convex       scaly    yellow     yes
## 94      edible    convex       scaly    yellow     yes
## 95      edible    convex      smooth     brown      no
## 96      edible    convex      smooth     white     yes
## 97      edible      flat       scaly     brown     yes
## 98      edible    convex      smooth    yellow     yes
## 99      edible      bell      smooth     white     yes
## 100     edible    convex       scaly     white     yes
## 101     edible    convex     fibrous     brown      no
## 102     edible      bell      smooth    yellow     yes
## 103     edible      flat       scaly    yellow     yes
## 104     edible    convex       scaly    yellow     yes
## 105     edible      bell       scaly     white     yes
## 106     edible    convex       scaly    yellow     yes
## 107     edible    convex       scaly    yellow     yes
## 108     edible      bell       scaly     white     yes
## 109     edible      bell       scaly     white     yes
## 110     edible    convex      smooth    yellow     yes
## 111     edible    convex      smooth    yellow     yes
## 112     edible    sunken     fibrous      gray      no
## 113     edible    convex     fibrous     white     yes
## 114     edible    convex      smooth    yellow     yes
## 115  poisonous    convex       scaly     white     yes
## 116     edible    convex       scaly    yellow     yes
## 117     edible    sunken     fibrous      gray      no
## 118     edible    convex       scaly    yellow     yes
## 119     edible    convex      smooth    yellow     yes
## 120     edible    sunken     fibrous     brown      no
## 121  poisonous    convex      smooth     white     yes
## 122     edible    convex       scaly     white     yes
## 123  poisonous      flat       scaly     brown     yes
## 124     edible      flat      smooth      gray      no
## 125     edible    convex      smooth    yellow     yes
## 126     edible    convex      smooth     white      no
## 127     edible      bell      smooth    yellow     yes
## 128     edible      flat     fibrous      gray      no
## 129     edible    convex      smooth     white     yes
## 130     edible      bell      smooth     white     yes
## 131     edible      bell      smooth     white     yes
## 132     edible      bell       scaly     white     yes
## 133     edible      flat      smooth     white     yes
## 134     edible    convex       scaly    yellow     yes
## 135     edible      flat      smooth     white     yes
## 136  poisonous    convex       scaly     white     yes
## 137     edible      flat     fibrous     white     yes
## 138     edible    convex       scaly    yellow     yes
## 139  poisonous    convex      smooth     brown     yes
## 140     edible      bell      smooth    yellow     yes
## 141     edible    convex       scaly     brown     yes
## 142     edible      bell       scaly    yellow     yes
## 143     edible    sunken     fibrous     brown      no
## 144     edible      flat       scaly     brown     yes
## 145     edible    convex       scaly    yellow     yes
## 146     edible    convex     fibrous      gray      no
## 147     edible      flat     fibrous     white      no
## 148     edible    convex       scaly    yellow     yes
## 149     edible      bell      smooth    yellow     yes
## 150     edible      bell       scaly     white     yes
## 151     edible    convex       scaly     white     yes
## 152     edible    convex      smooth     brown      no
## 153     edible    convex       scaly     white     yes
## 154     edible    sunken     fibrous     brown      no
## 155     edible    convex      smooth     white     yes
## 156     edible    convex       scaly     brown     yes
## 157     edible      bell       scaly    yellow     yes
## 158     edible    convex       scaly     white     yes
## 159     edible      bell       scaly     white     yes
## 160     edible      bell      smooth    yellow     yes
## 161     edible      bell      smooth    yellow     yes
## 162     edible      bell       scaly    yellow     yes
## 163     edible    convex     fibrous     brown      no
## 164     edible      flat       scaly     brown     yes
## 165     edible    convex       scaly     white     yes
## 166     edible      flat       scaly    yellow     yes
## 167     edible      bell      smooth     white     yes
## 168     edible      bell      smooth     white     yes
## 169     edible    convex       scaly     brown     yes
## 170     edible      bell      smooth     white     yes
## 171     edible    convex     fibrous      gray      no
## 172     edible      bell      smooth    yellow     yes
## 173     edible    convex     fibrous    yellow     yes
## 174     edible      bell       scaly    yellow     yes
## 175     edible      flat       scaly    yellow     yes
## 176     edible      bell       scaly     white     yes
## 177     edible      bell       scaly     white     yes
## 178     edible      bell       scaly    yellow     yes
## 179     edible    convex       scaly    yellow     yes
## 180     edible      bell      smooth    yellow     yes
## 181  poisonous    convex       scaly     white     yes
## 182     edible    sunken     fibrous     brown      no
## 183     edible      flat     fibrous     brown      no
## 184     edible    convex      smooth    yellow     yes
## 185     edible      flat       scaly     brown     yes
## 186  poisonous    convex       scaly     white     yes
## 187     edible      bell      smooth     white     yes
## 188     edible      flat     fibrous      gray      no
## 189     edible      bell       scaly    yellow     yes
## 190     edible    convex       scaly     brown     yes
## 191     edible    convex     fibrous     white      no
## 192     edible    convex      smooth     white     yes
## 193     edible      bell      smooth     white     yes
## 194     edible      flat      smooth    yellow     yes
## 195     edible    convex      smooth    yellow     yes
## 196     edible      flat     fibrous      gray      no
## 197     edible      bell      smooth    yellow     yes
## 198     edible    convex      smooth     white     yes
## 199     edible    convex       scaly     white     yes
## 200     edible      flat      smooth     white     yes
## 201     edible    convex       scaly    yellow     yes
## 202     edible      bell      smooth     white     yes
## 203     edible    convex      smooth     white     yes
## 204     edible    convex     fibrous     white      no
## 205     edible      flat       scaly     brown     yes
## 206  poisonous    convex      smooth     white     yes
## 207     edible      bell      smooth     white     yes
## 208     edible      bell      smooth     white     yes
## 209     edible      bell       scaly     white     yes
## 210     edible      bell       scaly     white     yes
## 211     edible    convex      smooth    yellow     yes
## 212     edible      bell      smooth     white     yes
## 213     edible    convex     fibrous    yellow     yes
## 214     edible    convex     fibrous      gray      no
## 215     edible      flat       scaly    yellow     yes
## 216     edible      bell      smooth     white     yes
## 217     edible    convex      smooth    yellow     yes
## 218     edible    convex       scaly    yellow     yes
## 219     edible    convex       scaly     white     yes
## 220     edible    sunken     fibrous      gray      no
## 221     edible    convex      smooth     white     yes
## 222  poisonous    convex      smooth     white     yes
## 223     edible    convex       scaly    yellow     yes
## 224     edible      flat     fibrous     white     yes
## 225     edible    convex       scaly     white     yes
## 226     edible      bell       scaly     white     yes
## 227     edible    convex      smooth     white     yes
## 228     edible    convex      smooth    yellow     yes
## 229  poisonous    convex       scaly     brown     yes
## 230     edible      bell      smooth    yellow     yes
## 231     edible    convex     fibrous      gray      no
## 232  poisonous    convex       scaly     white     yes
## 233     edible    convex       scaly    yellow     yes
## 234     edible      flat     fibrous     brown      no
## 235     edible      bell      smooth     white     yes
## 236     edible    convex     fibrous     white     yes
## 237     edible    convex       scaly     white     yes
## 238     edible      bell       scaly    yellow     yes
## 239     edible    convex       scaly    yellow     yes
## 240     edible      flat       scaly    yellow     yes
## 241     edible      flat       scaly    yellow     yes
## 242     edible    convex      smooth     white     yes
## 243     edible    convex      smooth     white     yes
## 244  poisonous    convex      smooth     white     yes
## 245     edible      flat     fibrous     white     yes
## 246     edible    convex      smooth     white     yes
## 247     edible    convex      smooth     white     yes
## 248     edible    convex       scaly     white     yes
## 249     edible      flat       scaly    yellow     yes
## 250     edible    convex      smooth     brown      no
## 251     edible      flat       scaly    yellow     yes
## 252  poisonous    convex      smooth     brown     yes
## 253     edible    sunken     fibrous     brown      no
## 254     edible      bell       scaly    yellow     yes
## 255     edible      bell      smooth     white     yes
## 256     edible      bell       scaly     white     yes
## 257     edible      flat     fibrous     brown      no
## 258     edible    convex      smooth     white     yes
## 259     edible      bell       scaly     white     yes
## 260     edible      bell       scaly     white     yes
## 261     edible      flat       scaly     brown     yes
## 262  poisonous    convex       scaly     white     yes
## 263     edible    convex      smooth     white     yes
## 264     edible    convex       scaly     white     yes
## 265     edible      flat     fibrous     white     yes
## 266     edible      flat     fibrous      gray      no
## 267     edible      flat      smooth      gray      no
## 268     edible    convex       scaly    yellow     yes
## 269     edible      bell      smooth     white     yes
## 270  poisonous      flat       scaly     brown     yes
## 271     edible    convex      smooth     white     yes
## 272  poisonous      flat      smooth     brown     yes
## 273     edible    convex       scaly     white     yes
## 274     edible    convex       scaly    yellow     yes
## 275     edible      flat       scaly    yellow     yes
## 276     edible    convex       scaly     brown     yes
## 277     edible      flat       scaly     brown     yes
## 278     edible    convex       scaly     white     yes
## 279     edible      flat     fibrous     brown      no
## 280     edible    convex      smooth    yellow     yes
## 281  poisonous    convex       scaly     white     yes
## 282     edible      bell       scaly    yellow     yes
## 283     edible    sunken     fibrous     brown      no
## 284     edible    convex      smooth    yellow     yes
## 285     edible      bell       scaly     white     yes
## 286     edible      flat       scaly     brown     yes
## 287     edible      bell       scaly    yellow     yes
## 288     edible      bell       scaly     white     yes
## 289     edible    convex       scaly     brown     yes
## 290     edible      flat     fibrous      gray      no
## 291     edible    convex     fibrous      gray      no
## 292     edible      bell       scaly    yellow     yes
## 293     edible    convex      smooth    yellow     yes
## 294     edible      bell       scaly     white     yes
## 295     edible    convex      smooth     white     yes
## 296     edible      bell      smooth    yellow     yes
## 297     edible    convex      smooth    yellow     yes
## 298     edible    convex     fibrous      gray      no
## 299     edible      flat      smooth    yellow     yes
## 300  poisonous    convex       scaly     white     yes
## 301     edible    convex     fibrous     white      no
## 302     edible      bell       scaly     white     yes
## 303     edible    convex      smooth    yellow     yes
## 304     edible      bell       scaly     white     yes
## 305     edible    convex       scaly     white     yes
## 306     edible    convex     fibrous     brown     yes
## 307     edible      bell       scaly     white     yes
## 308     edible    convex      smooth    yellow     yes
## 309     edible      flat       scaly     brown     yes
## 310     edible    convex     fibrous     white      no
## 311     edible    convex      smooth    yellow     yes
## 312  poisonous    convex       scaly     white     yes
## 313     edible    convex       scaly    yellow     yes
## 314     edible    convex     fibrous     white     yes
## 315     edible      bell      smooth    yellow     yes
## 316  poisonous    convex       scaly     white     yes
## 317     edible    convex      smooth    yellow     yes
## 318     edible    convex       scaly     white     yes
## 319     edible    convex     fibrous     white     yes
## 320     edible      flat      smooth     white     yes
## 321     edible    convex       scaly    yellow     yes
## 322     edible      flat     fibrous    yellow     yes
## 323     edible    convex      smooth     white     yes
## 324     edible      bell       scaly    yellow     yes
## 325     edible    convex       scaly     brown     yes
## 326     edible      bell       scaly     white     yes
## 327     edible    convex      smooth    yellow     yes
## 328  poisonous    convex       scaly     brown     yes
## 329     edible      bell      smooth    yellow     yes
## 330     edible      bell       scaly     white     yes
## 331  poisonous    convex       scaly     brown     yes
## 332     edible      bell      smooth     white     yes
## 333     edible      bell       scaly    yellow     yes
## 334     edible      bell       scaly    yellow     yes
## 335     edible    convex       scaly     white     yes
## 336     edible    convex     fibrous     brown     yes
## 337     edible    convex       scaly     brown     yes
## 338     edible      bell      smooth    yellow     yes
## 339     edible    convex     fibrous      gray      no
## 340     edible    convex       scaly     brown     yes
## 341     edible    convex      smooth     white     yes
## 342     edible      bell       scaly     white     yes
## 343     edible    convex      smooth    yellow     yes
## 344     edible      flat     fibrous    yellow     yes
## 345     edible      bell       scaly    yellow     yes
## 346     edible    convex     fibrous     brown      no
## 347     edible    convex     fibrous    yellow     yes
## 348     edible    convex      smooth    yellow     yes
## 349     edible      flat      smooth      gray      no
## 350     edible    convex     fibrous     brown      no
## 351     edible      flat      smooth      gray      no
## 352     edible      flat       scaly     brown     yes
## 353     edible      bell       scaly     white     yes
## 354     edible      bell      smooth    yellow     yes
## 355     edible    convex       scaly    yellow     yes
## 356     edible    sunken     fibrous      gray      no
## 357     edible      flat       scaly     brown     yes
## 358  poisonous    convex       scaly     brown     yes
## 359     edible    convex       scaly    yellow     yes
## 360     edible    convex       scaly    yellow     yes
## 361     edible    convex     fibrous     brown      no
## 362     edible    convex     fibrous     brown      no
## 363     edible      flat      smooth     brown      no
## 364     edible      flat       scaly     brown     yes
## 365     edible    convex      smooth    yellow     yes
## 366     edible      flat     fibrous     brown      no
## 367     edible    convex       scaly    yellow     yes
## 368     edible    convex     fibrous    yellow     yes
## 369     edible      bell       scaly    yellow     yes
## 370     edible    convex     fibrous      gray      no
## 371     edible    convex       scaly    yellow     yes
## 372     edible      flat       scaly     brown     yes
## 373     edible    convex      smooth    yellow     yes
## 374     edible    sunken     fibrous     brown      no
## 375     edible    convex      smooth     white     yes
## 376     edible      bell      smooth     white     yes
## 377     edible    sunken     fibrous     brown      no
## 378     edible      bell       scaly    yellow     yes
## 379     edible    convex       scaly    yellow     yes
## 380     edible      bell       scaly    yellow     yes
## 381  poisonous    convex       scaly     brown     yes
## 382     edible    convex      smooth     white      no
## 383     edible    convex       scaly     white     yes
## 384     edible      bell      smooth     white     yes
## 385     edible    convex     fibrous     brown     yes
## 386  poisonous    convex      smooth     brown     yes
## 387     edible    convex       scaly     brown     yes
## 388     edible    convex      smooth     brown      no
## 389     edible      bell       scaly    yellow     yes
## 390     edible    convex      smooth    yellow     yes
## 391     edible      bell      smooth    yellow     yes
## 392     edible    convex      smooth    yellow     yes
## 393     edible      bell       scaly     white     yes
## 394     edible    convex     fibrous      gray      no
## 395     edible      flat       scaly     brown     yes
## 396     edible    convex     fibrous      gray      no
## 397     edible    convex      smooth     white     yes
## 398     edible    convex       scaly    yellow     yes
## 399     edible    convex     fibrous      gray      no
## 400  poisonous    convex      smooth     brown     yes
## 401     edible      bell       scaly     white     yes
## 402     edible      bell       scaly     white     yes
## 403  poisonous    convex       scaly     brown     yes
## 404     edible      bell      smooth    yellow     yes
## 405     edible    convex      smooth     white     yes
## 406     edible    convex       scaly    yellow     yes
## 407     edible      bell       scaly    yellow     yes
## 408     edible    convex      smooth     white     yes
## 409     edible    convex      smooth     white     yes
## 410     edible    convex       scaly     brown     yes
## 411     edible    convex      smooth     white     yes
## 412     edible    convex      smooth     brown      no
## 413     edible    convex       scaly     brown     yes
## 414     edible    convex       scaly    yellow     yes
## 415  poisonous    convex       scaly     brown     yes
## 416     edible      bell       scaly    yellow     yes
## 417     edible    convex     fibrous     white     yes
## 418  poisonous    convex      smooth     brown     yes
## 419     edible    convex       scaly    yellow     yes
## 420     edible      flat     fibrous      gray      no
## 421     edible    convex       scaly     white     yes
## 422     edible      bell       scaly     white     yes
## 423  poisonous    convex       scaly     brown     yes
## 424     edible      flat       scaly     brown     yes
## 425     edible    convex      smooth     white     yes
## 426     edible    convex      smooth     white     yes
## 427     edible      flat       scaly     brown     yes
## 428     edible      bell      smooth     white     yes
## 429     edible    convex      smooth     white      no
## 430     edible      flat     fibrous      gray      no
## 431     edible    convex       scaly     white     yes
## 432     edible    convex       scaly    yellow     yes
## 433     edible      bell      smooth    yellow     yes
## 434     edible      bell      smooth    yellow     yes
## 435     edible      flat      smooth     white     yes
## 436     edible      bell      smooth     white     yes
## 437     edible    convex     fibrous    yellow     yes
## 438     edible    convex       scaly     white     yes
## 439     edible      bell       scaly    yellow     yes
## 440     edible    convex       scaly     brown     yes
## 441     edible    convex       scaly     white     yes
## 442     edible    convex       scaly     white     yes
## 443     edible    convex       scaly    yellow     yes
## 444     edible    convex       scaly     white     yes
## 445     edible    convex      smooth    yellow     yes
## 446     edible    convex       scaly     brown     yes
## 447     edible    convex      smooth     white     yes
## 448     edible      flat       scaly     brown     yes
## 449     edible      bell      smooth     white     yes
## 450     edible    convex     fibrous     brown     yes
## 451     edible    convex       scaly     white     yes
## 452     edible      bell      smooth     white     yes
## 453     edible      bell      smooth    yellow     yes
## 454     edible    convex     fibrous    yellow     yes
## 455     edible      bell      smooth     white     yes
## 456     edible    convex      smooth      gray      no
## 457     edible      bell      smooth     white     yes
## 458     edible      bell      smooth    yellow     yes
## 459     edible      flat       scaly    yellow     yes
## 460     edible      flat       scaly     brown     yes
## 461     edible    convex      smooth     white     yes
## 462     edible      flat       scaly    yellow     yes
## 463     edible      bell      smooth     white     yes
## 464     edible    convex       scaly    yellow     yes
## 465     edible    convex     fibrous     brown      no
## 466     edible      flat       scaly     brown     yes
## 467     edible    convex      smooth     white     yes
## 468     edible    convex      smooth    yellow     yes
## 469     edible      bell       scaly    yellow     yes
## 470     edible      flat       scaly    yellow     yes
## 471     edible    convex       scaly    yellow     yes
## 472     edible    convex       scaly     white     yes
## 473     edible      flat     fibrous     white     yes
## 474     edible    sunken     fibrous      gray      no
## 475     edible      flat      smooth    yellow     yes
## 476     edible      flat     fibrous      gray      no
## 477     edible    convex     fibrous     brown      no
## 478     edible      bell       scaly     white     yes
## 479     edible    convex      smooth     white     yes
## 480     edible      bell       scaly    yellow     yes
## 481     edible      bell       scaly    yellow     yes
## 482     edible      bell       scaly    yellow     yes
## 483     edible      flat      smooth     white     yes
## 484     edible      flat     fibrous      gray      no
## 485     edible      flat      smooth     white     yes
## 486     edible      flat       scaly    yellow     yes
## 487     edible    convex       scaly     white     yes
## 488     edible    sunken     fibrous     brown      no
## 489     edible    convex       scaly     brown     yes
## 490     edible    convex       scaly     brown     yes
## 491     edible      flat     fibrous    yellow     yes
## 492  poisonous      flat      smooth     brown     yes
## 493  poisonous    convex      smooth     brown     yes
## 494     edible      flat       scaly     brown     yes
## 495     edible    convex       scaly    yellow     yes
## 496     edible      bell      smooth    yellow     yes
## 497     edible      flat     fibrous     white      no
## 498     edible      flat       scaly     brown     yes
## 499     edible    convex       scaly     white     yes
## 500     edible      bell      smooth    yellow     yes
## 501     edible    convex      smooth    yellow     yes
## 502     edible      bell       scaly    yellow     yes
## 503     edible    convex      smooth     white     yes
## 504     edible      bell      smooth    yellow     yes
## 505     edible      bell       scaly    yellow     yes
## 506  poisonous    convex      smooth     brown     yes
## 507     edible    convex      smooth      gray      no
## 508     edible      flat      smooth     brown      no
## 509     edible    convex     fibrous     white     yes
## 510     edible      flat     fibrous      gray      no
## 511     edible      flat     fibrous     brown      no
## 512     edible      bell       scaly    yellow     yes
## 513     edible    convex     fibrous     white     yes
## 514     edible    sunken     fibrous      gray      no
## 515     edible    convex     fibrous     brown      no
## 516     edible    convex     fibrous     white      no
## 517     edible    convex       scaly     brown     yes
## 518     edible      bell      smooth    yellow     yes
## 519     edible    convex       scaly     white     yes
## 520     edible    convex       scaly    yellow     yes
## 521     edible    convex      smooth     white     yes
## 522     edible      bell      smooth     white     yes
## 523     edible      flat       scaly    yellow     yes
## 524  poisonous    convex      smooth     brown     yes
## 525     edible      flat     fibrous      gray      no
## 526     edible      bell      smooth    yellow     yes
## 527     edible      flat       scaly     brown     yes
## 528     edible    convex      smooth    yellow     yes
## 529     edible    convex     fibrous     brown      no
## 530     edible      flat       scaly    yellow     yes
## 531     edible    convex       scaly     brown     yes
## 532     edible    convex      smooth     white     yes
## 533  poisonous    convex       scaly     white     yes
## 534     edible      flat       scaly     brown     yes
## 535  poisonous      flat      smooth     brown     yes
## 536     edible    convex     fibrous     white      no
## 537     edible      bell       scaly     white     yes
## 538     edible    sunken     fibrous     brown      no
## 539     edible    convex       scaly    yellow     yes
## 540     edible      flat      smooth     white     yes
## 541     edible    convex      smooth    yellow     yes
## 542     edible      flat     fibrous      gray      no
## 543  poisonous    convex       scaly     white     yes
## 544     edible    convex       scaly    yellow     yes
## 545     edible      flat     fibrous     brown      no
## 546     edible    convex      smooth     white     yes
## 547     edible      bell       scaly    yellow     yes
## 548     edible      flat     fibrous      gray      no
## 549     edible    convex     fibrous    yellow     yes
## 550     edible    convex      smooth    yellow     yes
## 551     edible      flat     fibrous     brown      no
## 552     edible    convex     fibrous      gray      no
## 553     edible    convex       scaly    yellow     yes
## 554     edible      flat      smooth     white     yes
## 555     edible    convex      smooth    yellow     yes
## 556     edible      flat       scaly    yellow     yes
## 557  poisonous    convex       scaly     brown     yes
## 558     edible    convex     fibrous     white     yes
## 559     edible    convex      smooth     white     yes
## 560     edible    convex       scaly    yellow     yes
## 561     edible      bell      smooth    yellow     yes
## 562     edible    convex      smooth    yellow     yes
## 563     edible    convex      smooth    yellow     yes
## 564     edible    convex     fibrous     white      no
## 565     edible      bell      smooth     white     yes
## 566  poisonous    convex       scaly     white     yes
## 567     edible    convex       scaly    yellow     yes
## 568     edible      flat      smooth      gray      no
## 569  poisonous    convex      smooth     brown     yes
## 570     edible      bell       scaly     white     yes
## 571     edible    convex      smooth     white     yes
## 572     edible      flat     fibrous    yellow     yes
## 573     edible    convex      smooth    yellow     yes
## 574     edible      bell       scaly     white     yes
## 575     edible    convex       scaly     brown     yes
## 576     edible    convex      smooth    yellow     yes
## 577     edible    convex     fibrous     brown      no
## 578     edible    convex      smooth    yellow     yes
## 579     edible    convex       scaly    yellow     yes
## 580  poisonous    convex      smooth     brown     yes
## 581     edible    convex      smooth     white     yes
## 582     edible    convex      smooth    yellow     yes
## 583     edible    convex       scaly     white     yes
## 584     edible    convex       scaly    yellow     yes
## 585     edible      flat       scaly    yellow     yes
## 586     edible    convex       scaly     white     yes
## 587     edible    sunken     fibrous      gray      no
## 588     edible      flat     fibrous     brown      no
## 589     edible    sunken     fibrous      gray      no
## 590     edible    convex       scaly     white     yes
## 591  poisonous    convex      smooth     white     yes
## 592     edible    convex      smooth      gray      no
## 593     edible    convex       scaly    yellow     yes
## 594  poisonous    convex       scaly     white     yes
## 595     edible    convex      smooth    yellow     yes
## 596  poisonous    convex      smooth     brown     yes
## 597     edible      bell      smooth    yellow     yes
## 598     edible      bell       scaly     white     yes
## 599  poisonous    convex       scaly     white     yes
## 600  poisonous    convex      smooth     brown     yes
## 601     edible    convex      smooth      gray      no
## 602     edible    convex       scaly     brown     yes
## 603     edible      flat     fibrous     white      no
## 604     edible      flat       scaly     brown     yes
## 605     edible      bell       scaly     white     yes
## 606     edible      bell      smooth     white     yes
## 607     edible    convex      smooth      gray      no
## 608     edible      flat       scaly     brown     yes
## 609     edible    convex      smooth     white     yes
## 610     edible      flat     fibrous      gray      no
## 611     edible      flat      smooth     brown      no
## 612     edible    convex     fibrous      gray      no
## 613     edible      flat      smooth     white      no
## 614  poisonous    convex      smooth     white     yes
## 615     edible    convex       scaly    yellow     yes
## 616     edible      bell      smooth     white     yes
## 617     edible      flat     fibrous      gray      no
## 618     edible      bell       scaly     white     yes
## 619     edible      bell      smooth    yellow     yes
## 620     edible    sunken     fibrous      gray      no
## 621     edible      flat       scaly    yellow     yes
## 622     edible      bell      smooth     white     yes
## 623     edible    convex     fibrous     white     yes
## 624     edible      flat       scaly    yellow     yes
## 625     edible      flat     fibrous      gray      no
## 626     edible    convex      smooth     white     yes
## 627     edible      flat     fibrous    yellow     yes
## 628     edible    sunken     fibrous      gray      no
## 629     edible      bell       scaly     white     yes
## 630     edible      bell      smooth     white     yes
## 631     edible      flat     fibrous     brown      no
## 632     edible      bell       scaly    yellow     yes
## 633     edible    convex     fibrous     brown     yes
## 634     edible    convex       scaly     brown     yes
## 635     edible    convex       scaly     brown     yes
## 636     edible      bell       scaly    yellow     yes
## 637     edible      flat       scaly    yellow     yes
## 638     edible    convex       scaly    yellow     yes
## 639     edible    convex      smooth     brown      no
## 640     edible    convex       scaly     white     yes
## 641     edible      bell       scaly    yellow     yes
## 642     edible    convex       scaly     brown     yes
## 643     edible      flat       scaly     brown     yes
## 644     edible      flat       scaly     brown     yes
## 645     edible      flat       scaly    yellow     yes
## 646     edible    convex      smooth    yellow     yes
## 647     edible      bell       scaly     white     yes
## 648     edible      bell      smooth     white     yes
## 649     edible    convex       scaly    yellow     yes
## 650     edible      flat     fibrous     white     yes
## 651     edible    convex      smooth    yellow     yes
## 652     edible      bell      smooth    yellow     yes
## 653     edible      flat       scaly    yellow     yes
## 654  poisonous    convex       scaly     brown     yes
## 655  poisonous    convex       scaly     white     yes
## 656     edible    convex      smooth    yellow     yes
## 657     edible      flat     fibrous     white      no
## 658     edible      bell      smooth    yellow     yes
## 659     edible    convex       scaly    yellow     yes
## 660     edible      flat     fibrous      gray      no
## 661     edible      bell      smooth     white     yes
## 662     edible    convex      smooth     white     yes
## 663  poisonous    convex       scaly     brown     yes
## 664  poisonous    convex      smooth     brown     yes
## 665     edible      bell      smooth     white     yes
## 666     edible      bell      smooth    yellow     yes
## 667     edible      flat       scaly     brown     yes
## 668     edible    convex       scaly    yellow     yes
## 669     edible      flat       scaly    yellow     yes
## 670     edible    convex       scaly     white     yes
## 671     edible    convex      smooth    yellow     yes
## 672     edible      flat     fibrous     brown      no
## 673     edible      flat     fibrous     brown      no
## 674     edible    convex     fibrous    yellow     yes
## 675     edible      flat       scaly    yellow     yes
## 676     edible      flat     fibrous     brown      no
## 677     edible      flat     fibrous      gray      no
## 678     edible    convex       scaly     brown     yes
## 679     edible    convex       scaly    yellow     yes
## 680     edible      bell      smooth     white     yes
## 681     edible    convex      smooth     white     yes
## 682     edible    convex       scaly     white     yes
## 683     edible    convex     fibrous    yellow     yes
## 684     edible      bell      smooth    yellow     yes
## 685     edible    convex     fibrous     brown     yes
## 686     edible    convex       scaly     white     yes
## 687     edible      flat     fibrous      gray      no
## 688     edible      bell       scaly     white     yes
## 689     edible    convex       scaly    yellow     yes
## 690     edible    convex      smooth     white     yes
## 691     edible      bell      smooth    yellow     yes
## 692     edible      bell       scaly     white     yes
## 693     edible    convex       scaly     brown     yes
## 694     edible      flat      smooth      gray      no
## 695  poisonous    convex       scaly     brown     yes
## 696     edible      bell       scaly     white     yes
## 697     edible      bell      smooth    yellow     yes
## 698  poisonous    convex       scaly     brown     yes
## 699  poisonous    convex      smooth     brown     yes
## 700     edible      flat      smooth     brown      no
## 701  poisonous    convex      smooth     brown     yes
## 702     edible      flat     fibrous      gray      no
## 703     edible    convex       scaly    yellow     yes
## 704     edible      bell       scaly     white     yes
## 705     edible      flat       scaly    yellow     yes
## 706     edible      flat       scaly    yellow     yes
## 707     edible      bell       scaly    yellow     yes
## 708     edible    sunken     fibrous     brown      no
## 709     edible    convex      smooth     white     yes
## 710     edible      bell       scaly    yellow     yes
## 711     edible      flat       scaly    yellow     yes
## 712     edible      flat      smooth     brown      no
## 713     edible    convex      smooth     white     yes
## 714     edible      bell       scaly    yellow     yes
## 715     edible      bell       scaly    yellow     yes
## 716     edible      bell       scaly    yellow     yes
## 717     edible      bell      smooth     white     yes
## 718     edible    convex       scaly    yellow     yes
## 719     edible    convex       scaly     brown     yes
## 720     edible    sunken     fibrous     brown      no
## 721     edible      flat       scaly     brown     yes
## 722     edible    convex      smooth     white     yes
## 723     edible      flat      smooth    yellow     yes
## 724     edible    convex      smooth     brown      no
## 725     edible      flat       scaly    yellow     yes
## 726  poisonous    convex       scaly     brown     yes
## 727     edible    convex      smooth     white     yes
## 728     edible    convex     fibrous     white      no
## 729     edible      bell      smooth     white     yes
## 730     edible    convex       scaly     white     yes
## 731     edible      flat       scaly    yellow     yes
## 732     edible    convex     fibrous     brown      no
## 733  poisonous    convex      smooth     white     yes
## 734  poisonous    convex       scaly     white     yes
## 735     edible    convex       scaly     white     yes
## 736     edible      bell       scaly     white     yes
## 737     edible    convex     fibrous     white     yes
## 738  poisonous    convex       scaly     white     yes
## 739     edible    convex      smooth     white     yes
## 740     edible    convex     fibrous      gray      no
## 741     edible    convex     fibrous     brown      no
## 742     edible      bell      smooth     white     yes
## 743     edible    convex       scaly     brown     yes
## 744     edible      bell       scaly     white     yes
## 745     edible      flat       scaly    yellow     yes
## 746     edible    convex       scaly     white     yes
## 747     edible      bell       scaly     white     yes
## 748     edible      bell       scaly     white     yes
## 749  poisonous    convex      smooth     brown     yes
## 750     edible      flat      smooth    yellow     yes
## 751     edible    convex       scaly     brown     yes
## 752     edible      bell      smooth    yellow     yes
## 753     edible      flat      smooth     white     yes
## 754     edible      bell       scaly    yellow     yes
## 755     edible      bell       scaly    yellow     yes
## 756     edible      bell      smooth    yellow     yes
## 757     edible      flat       scaly    yellow     yes
## 758     edible    convex      smooth     white      no
## 759     edible      bell       scaly    yellow     yes
## 760     edible    convex       scaly     brown     yes
## 761     edible      bell      smooth     white     yes
## 762     edible      flat       scaly     brown     yes
## 763     edible    convex      smooth     white     yes
## 764     edible    convex     fibrous     brown      no
## 765     edible    convex       scaly     brown     yes
## 766     edible      flat     fibrous      gray      no
## 767     edible    convex      smooth     white     yes
## 768     edible      flat     fibrous     brown      no
## 769     edible      bell       scaly    yellow     yes
## 770     edible      bell      smooth     white     yes
## 771     edible    convex      smooth     white     yes
## 772     edible      bell      smooth    yellow     yes
## 773     edible    convex       scaly    yellow     yes
## 774     edible    convex      smooth    yellow     yes
## 775     edible      flat     fibrous      gray      no
## 776     edible    convex       scaly    yellow     yes
## 777  poisonous    convex       scaly     brown     yes
## 778     edible    convex       scaly     brown     yes
## 779     edible    convex      smooth    yellow     yes
## 780     edible      bell       scaly     white     yes
## 781     edible    convex       scaly    yellow     yes
## 782     edible    sunken     fibrous     brown      no
## 783     edible      bell       scaly    yellow     yes
## 784     edible    convex      smooth     white     yes
## 785     edible    convex      smooth     white     yes
## 786  poisonous    convex      smooth     brown     yes
## 787     edible    convex     fibrous     brown      no
## 788     edible    convex       scaly    yellow     yes
## 789  poisonous    convex       scaly     brown     yes
## 790     edible    convex       scaly    yellow     yes
## 791     edible      bell       scaly    yellow     yes
## 792     edible      flat       scaly     brown     yes
## 793     edible    convex       scaly     white     yes
## 794     edible    convex      smooth    yellow     yes
## 795  poisonous    convex       scaly     brown     yes
## 796  poisonous    convex       scaly     brown     yes
## 797     edible      bell       scaly    yellow     yes
## 798     edible    convex      smooth     white      no
## 799  poisonous    convex      smooth     white     yes
## 800     edible    convex       scaly     brown     yes
## 801     edible      bell      smooth     white     yes
## 802     edible    convex       scaly    yellow     yes
## 803  poisonous    convex      smooth     brown     yes
## 804     edible      bell       scaly    yellow     yes
## 805     edible      bell       scaly     white     yes
## 806     edible      flat       scaly    yellow     yes
## 807     edible      bell       scaly     white     yes
## 808     edible    convex       scaly    yellow     yes
## 809     edible      bell      smooth    yellow     yes
## 810     edible    convex      smooth    yellow     yes
## 811     edible      bell      smooth    yellow     yes
## 812     edible      bell      smooth    yellow     yes
## 813  poisonous    convex       scaly     white     yes
## 814  poisonous    convex       scaly     white     yes
## 815  poisonous    convex      smooth     brown     yes
## 816     edible    convex      smooth     white     yes
## 817     edible    convex       scaly     brown     yes
## 818     edible    convex       scaly    yellow     yes
## 819     edible    convex      smooth     white     yes
## 820     edible      bell       scaly     white     yes
## 821     edible      bell      smooth    yellow     yes
## 822     edible    convex     fibrous      gray      no
## 823     edible      bell      smooth    yellow     yes
## 824     edible    convex      smooth     white     yes
## 825     edible    convex       scaly     brown     yes
## 826     edible    convex       scaly    yellow     yes
## 827     edible      flat     fibrous     white     yes
## 828     edible      flat     fibrous     white     yes
## 829     edible    convex      smooth     white     yes
## 830     edible      flat      smooth    yellow     yes
## 831     edible    sunken     fibrous      gray      no
## 832     edible      flat     fibrous    yellow     yes
## 833     edible    convex       scaly     brown     yes
## 834     edible    convex       scaly    yellow     yes
## 835     edible    convex       scaly    yellow     yes
## 836  poisonous    convex      smooth     brown     yes
## 837     edible    convex      smooth    yellow     yes
## 838  poisonous    convex       scaly     white     yes
## 839     edible    convex       scaly    yellow     yes
## 840     edible    convex       scaly     white     yes
## 841     edible      flat      smooth    yellow     yes
## 842  poisonous    convex       scaly     brown     yes
## 843     edible      bell      smooth     white     yes
## 844     edible    sunken     fibrous      gray      no
## 845     edible    convex      smooth    yellow     yes
## 846     edible    convex     fibrous      gray      no
## 847     edible    convex       scaly    yellow     yes
## 848     edible      bell       scaly     white     yes
## 849     edible      bell      smooth    yellow     yes
## 850     edible    convex      smooth     white     yes
## 851     edible      bell      smooth     white     yes
## 852     edible      flat       scaly     brown     yes
## 853     edible    sunken     fibrous      gray      no
## 854     edible    convex     fibrous     white      no
## 855     edible    sunken     fibrous     brown      no
## 856     edible      flat       scaly     brown     yes
## 857     edible      flat      smooth    yellow     yes
## 858     edible      bell      smooth    yellow     yes
## 859     edible      bell      smooth    yellow     yes
## 860  poisonous    convex      smooth     brown     yes
## 861     edible      flat       scaly     brown     yes
## 862     edible    convex      smooth    yellow     yes
## 863     edible      flat       scaly    yellow     yes
## 864     edible    convex       scaly     white     yes
## 865     edible    convex       scaly    yellow     yes
## 866     edible    convex       scaly    yellow     yes
## 867     edible      flat     fibrous     brown      no
## 868     edible      flat       scaly    yellow     yes
## 869     edible    convex     fibrous      gray      no
## 870     edible    convex      smooth    yellow     yes
## 871     edible      flat       scaly     brown     yes
## 872     edible    convex      smooth    yellow     yes
## 873     edible    convex       scaly    yellow     yes
## 874     edible    convex     fibrous     brown     yes
## 875     edible    convex      smooth     white     yes
## 876     edible    convex       scaly    yellow     yes
## 877     edible    convex       scaly     white     yes
## 878     edible    convex      smooth     white     yes
## 879     edible      flat       scaly    yellow     yes
## 880     edible      bell      smooth    yellow     yes
## 881     edible      flat     fibrous     white     yes
## 882     edible      flat      smooth      gray      no
## 883     edible    convex       scaly     white     yes
## 884     edible    convex       scaly     white     yes
## 885     edible      flat       scaly    yellow     yes
## 886     edible    convex      smooth     white     yes
## 887     edible    convex      smooth    yellow     yes
## 888     edible      flat       scaly    yellow     yes
## 889     edible    convex       scaly    yellow     yes
## 890     edible    convex      smooth    yellow     yes
## 891     edible    convex     fibrous     brown     yes
## 892     edible      flat       scaly    yellow     yes
## 893     edible    convex      smooth     white     yes
## 894     edible      bell      smooth    yellow     yes
## 895     edible    convex      smooth    yellow     yes
## 896     edible    convex       scaly     brown     yes
## 897     edible      bell       scaly    yellow     yes
## 898     edible    convex      smooth     white     yes
## 899     edible    convex       scaly     white     yes
## 900     edible    convex      smooth    yellow     yes
## 901     edible      flat       scaly    yellow     yes
## 902     edible    convex     fibrous     white      no
## 903     edible    convex      smooth     brown      no
## 904     edible    convex      smooth     white      no
## 905     edible    convex      smooth    yellow     yes
## 906     edible      flat     fibrous     white      no
## 907  poisonous      flat      smooth     brown     yes
## 908     edible    convex     fibrous      gray      no
## 909  poisonous      flat       scaly     brown     yes
## 910  poisonous    convex      smooth     brown     yes
## 911     edible      bell      smooth     white     yes
## 912     edible    convex     fibrous      gray      no
## 913     edible    convex      smooth     white     yes
## 914     edible      flat     fibrous      gray      no
## 915     edible    convex      smooth      gray      no
## 916     edible    convex      smooth     white     yes
## 917     edible    convex      smooth     white     yes
## 918     edible    convex       scaly      gray     yes
## 919     edible      flat     fibrous     brown      no
## 920     edible    convex      smooth     white      no
## 921     edible      flat     fibrous     brown      no
## 922     edible    convex      smooth     brown      no
## 923     edible    convex       scaly    yellow     yes
## 924     edible    convex      smooth    yellow     yes
## 925     edible      flat     fibrous     white      no
## 926     edible    convex      smooth     brown      no
## 927     edible    convex      smooth      gray      no
## 928  poisonous    convex       scaly     brown     yes
## 929     edible    convex     fibrous      gray      no
## 930     edible      bell      smooth     white     yes
## 931     edible    convex      smooth      gray      no
## 932     edible      flat     fibrous      gray      no
## 933  poisonous      flat      smooth     brown     yes
## 934     edible    convex      smooth    yellow     yes
## 935     edible    convex     fibrous     brown      no
## 936     edible      flat      smooth     white      no
## 937     edible    convex       scaly    yellow     yes
## 938     edible    convex     fibrous     brown      no
## 939     edible      flat      smooth      gray      no
## 940     edible    convex       scaly       red     yes
## 941     edible      bell       scaly    yellow     yes
## 942     edible    convex     fibrous     white      no
## 943  poisonous    convex      smooth     white     yes
## 944     edible    convex     fibrous      gray      no
## 945     edible      flat     fibrous      gray     yes
## 946     edible      flat     fibrous     brown      no
## 947     edible      flat     fibrous     white      no
## 948     edible      bell       scaly     white     yes
## 949     edible      flat     fibrous     brown      no
## 950  poisonous      flat       scaly     brown     yes
## 951  poisonous    convex       scaly     white     yes
## 952     edible      bell      smooth    yellow     yes
## 953     edible      flat      smooth      gray      no
## 954     edible    convex     fibrous      gray      no
## 955     edible      flat     fibrous     brown      no
## 956     edible      bell      smooth     white     yes
## 957  poisonous    convex      smooth     white     yes
## 958     edible    convex       scaly     brown     yes
## 959     edible      flat     fibrous     white     yes
## 960     edible    convex       scaly    yellow     yes
## 961     edible    convex     fibrous     brown      no
## 962     edible      flat     fibrous     white      no
## 963     edible    convex     fibrous     brown     yes
## 964     edible    convex     fibrous     brown     yes
## 965     edible      flat      smooth      gray      no
## 966     edible      flat      smooth      gray      no
## 967  poisonous      flat      smooth     brown     yes
## 968     edible    convex     fibrous     brown     yes
## 969     edible    convex      smooth     brown      no
## 970     edible    convex     fibrous     white      no
## 971     edible      flat     fibrous     brown      no
## 972     edible    convex     fibrous     brown     yes
## 973     edible      flat     fibrous     brown     yes
## 974     edible    convex     fibrous      gray      no
## 975     edible      flat     fibrous     brown     yes
## 976     edible    convex      smooth      gray      no
## 977     edible      bell       scaly     white     yes
## 978     edible    convex     fibrous     brown     yes
## 979     edible    convex       scaly    yellow     yes
## 980     edible      flat     fibrous      gray      no
## 981     edible      flat     fibrous     brown     yes
## 982     edible    convex      smooth    yellow     yes
## 983     edible      flat     fibrous      gray      no
## 984     edible    convex     fibrous     brown      no
## 985  poisonous    convex      smooth     white     yes
## 986     edible    convex     fibrous     white      no
## 987     edible      flat     fibrous     white      no
## 988     edible    convex      smooth     white      no
## 989     edible    convex      smooth      gray      no
## 990     edible    convex       scaly    yellow     yes
## 991     edible    convex      smooth    yellow     yes
## 992     edible    convex      smooth      gray      no
## 993     edible    convex      smooth     brown      no
## 994     edible      flat     fibrous     brown      no
## 995     edible      flat      smooth     white      no
## 996     edible      flat      smooth     white      no
## 997     edible    convex       scaly    yellow     yes
## 998     edible      flat      smooth     white     yes
## 999     edible      bell      smooth     white     yes
## 1000 poisonous      flat       scaly     white     yes
print(df_new_fungus[1001:2000, ])
##            eat cap_shape cap_surface cap_color bruises
## 1001    edible    convex     fibrous      gray     yes
## 1002    edible      flat       scaly     brown     yes
## 1003    edible      flat      smooth     brown      no
## 1004 poisonous    convex      smooth     white     yes
## 1005    edible    convex       scaly     brown     yes
## 1006    edible    convex      smooth      gray      no
## 1007    edible    convex      smooth     white      no
## 1008    edible      flat     fibrous     white      no
## 1009    edible    convex     fibrous     brown      no
## 1010    edible    convex      smooth     white     yes
## 1011    edible    convex       scaly     white     yes
## 1012    edible    convex      smooth     white      no
## 1013    edible      flat       scaly    yellow     yes
## 1014    edible      flat      smooth     brown      no
## 1015    edible      flat     fibrous      gray      no
## 1016    edible      flat     fibrous    yellow     yes
## 1017    edible      flat       scaly     brown     yes
## 1018    edible    convex     fibrous     brown     yes
## 1019 poisonous      flat      smooth     brown     yes
## 1020    edible    convex     fibrous     brown     yes
## 1021    edible      flat     fibrous     brown      no
## 1022    edible      bell      smooth    yellow     yes
## 1023    edible      bell       scaly     white     yes
## 1024    edible    convex       scaly     white     yes
## 1025 poisonous      flat       scaly     white     yes
## 1026 poisonous      flat       scaly     white     yes
## 1027    edible    convex     fibrous     brown      no
## 1028    edible      flat      smooth    yellow     yes
## 1029    edible    convex       scaly    yellow     yes
## 1030    edible    convex      smooth     white      no
## 1031    edible    convex     fibrous      gray     yes
## 1032 poisonous    convex       scaly     brown     yes
## 1033    edible    convex     fibrous      gray      no
## 1034    edible      flat     fibrous     brown      no
## 1035    edible    convex      smooth     white      no
## 1036    edible      flat     fibrous     white      no
## 1037    edible    convex       scaly    yellow     yes
## 1038    edible      flat     fibrous    yellow     yes
## 1039    edible    convex     fibrous      gray      no
## 1040 poisonous    convex      smooth     brown     yes
## 1041    edible    convex       scaly    yellow     yes
## 1042    edible      flat       scaly     brown     yes
## 1043    edible    convex     fibrous     white      no
## 1044    edible    convex       scaly     brown     yes
## 1045    edible    convex      smooth      gray      no
## 1046    edible    convex      smooth     white     yes
## 1047    edible    convex     fibrous      gray      no
## 1048 poisonous      flat       scaly     brown     yes
## 1049    edible    convex     fibrous     brown     yes
## 1050    edible    convex     fibrous      gray      no
## 1051    edible    convex     fibrous       red     yes
## 1052    edible    convex     fibrous     brown     yes
## 1053    edible    convex     fibrous      gray      no
## 1054    edible    convex       scaly    yellow     yes
## 1055    edible    convex     fibrous     brown      no
## 1056    edible      bell      smooth    yellow     yes
## 1057    edible    convex     fibrous     white     yes
## 1058    edible      flat      smooth      gray      no
## 1059    edible    convex       scaly    yellow     yes
## 1060    edible    convex     fibrous     brown      no
## 1061    edible      flat      smooth     white      no
## 1062    edible    convex      smooth    yellow     yes
## 1063    edible    convex      smooth      gray      no
## 1064    edible    convex     fibrous      gray      no
## 1065 poisonous      flat       scaly     white     yes
## 1066    edible      flat     fibrous    yellow     yes
## 1067    edible    convex       scaly     white     yes
## 1068    edible      flat     fibrous     white      no
## 1069    edible    convex     fibrous     brown     yes
## 1070    edible    convex       scaly     brown     yes
## 1071    edible    convex      smooth     white      no
## 1072 poisonous      flat       scaly     white     yes
## 1073    edible    convex      smooth    yellow     yes
## 1074    edible    convex     fibrous      gray     yes
## 1075    edible      flat       scaly    yellow     yes
## 1076    edible      flat      smooth      gray      no
## 1077    edible      flat     fibrous     brown      no
## 1078 poisonous      flat       scaly     white     yes
## 1079    edible      flat     fibrous      gray      no
## 1080    edible    convex       scaly     brown     yes
## 1081    edible      flat     fibrous     white      no
## 1082 poisonous      flat       scaly     brown     yes
## 1083    edible      bell      smooth    yellow     yes
## 1084    edible      flat     fibrous      gray      no
## 1085    edible      bell      smooth     white     yes
## 1086    edible      flat     fibrous      gray      no
## 1087    edible      bell       scaly     white     yes
## 1088    edible    convex       scaly     white     yes
## 1089 poisonous      flat       scaly     brown     yes
## 1090    edible    convex       scaly    yellow     yes
## 1091    edible    sunken     fibrous     brown      no
## 1092    edible    convex       scaly     brown     yes
## 1093    edible      flat     fibrous      gray      no
## 1094    edible      flat     fibrous    yellow     yes
## 1095    edible    convex      smooth      gray      no
## 1096 poisonous      flat       scaly     brown     yes
## 1097    edible    convex     fibrous      gray      no
## 1098    edible    convex      smooth      gray      no
## 1099    edible    convex     fibrous      gray      no
## 1100 poisonous    convex       scaly     brown     yes
## 1101    edible    convex     fibrous     brown      no
## 1102    edible      flat      smooth     white      no
## 1103    edible    convex     fibrous      gray      no
## 1104 poisonous    convex       scaly     brown     yes
## 1105    edible      flat     fibrous     brown      no
## 1106    edible      flat      smooth     white      no
## 1107 poisonous    convex       scaly     white     yes
## 1108    edible      flat     fibrous      gray      no
## 1109    edible      bell       scaly    yellow     yes
## 1110    edible    convex      smooth     brown      no
## 1111    edible      flat     fibrous     brown      no
## 1112 poisonous      flat      smooth     white     yes
## 1113    edible    convex       scaly     brown     yes
## 1114    edible      flat     fibrous     white      no
## 1115    edible      flat       scaly     brown     yes
## 1116    edible      flat     fibrous      gray      no
## 1117    edible      flat     fibrous      gray      no
## 1118    edible      flat      smooth      gray      no
## 1119    edible      flat     fibrous     brown      no
## 1120    edible    convex      smooth      gray      no
## 1121    edible    convex     fibrous     white      no
## 1122    edible      flat     fibrous     white      no
## 1123    edible    convex      smooth     brown      no
## 1124    edible    convex     fibrous     brown     yes
## 1125    edible      flat      smooth    yellow     yes
## 1126    edible    convex     fibrous     white      no
## 1127    edible      flat      smooth     white      no
## 1128    edible      bell      smooth    yellow     yes
## 1129    edible    convex     fibrous     white      no
## 1130    edible    convex     fibrous      gray      no
## 1131 poisonous      flat      smooth     brown     yes
## 1132    edible    convex     fibrous      gray      no
## 1133 poisonous    convex      smooth     brown     yes
## 1134    edible      flat      smooth     white      no
## 1135    edible    convex       scaly     white     yes
## 1136    edible    convex     fibrous     brown      no
## 1137    edible    convex     fibrous     brown     yes
## 1138    edible      bell       scaly    yellow     yes
## 1139    edible      flat     fibrous     white      no
## 1140    edible    convex      smooth     brown      no
## 1141    edible      flat     fibrous     white      no
## 1142    edible    convex     fibrous     brown     yes
## 1143    edible      flat     fibrous     white      no
## 1144    edible    convex      smooth     white      no
## 1145    edible    convex      smooth     brown      no
## 1146    edible    convex     fibrous     white      no
## 1147    edible      flat      smooth      gray      no
## 1148    edible    convex     fibrous      gray      no
## 1149    edible    convex     fibrous      gray      no
## 1150    edible      flat      smooth     brown      no
## 1151    edible      flat      smooth     white      no
## 1152    edible      flat       scaly     brown     yes
## 1153 poisonous    convex       scaly     white     yes
## 1154    edible      flat      smooth      gray      no
## 1155 poisonous    convex       scaly     white     yes
## 1156    edible      bell       scaly     white     yes
## 1157    edible    convex      smooth      gray      no
## 1158    edible      flat     fibrous      gray      no
## 1159    edible      flat     fibrous     white      no
## 1160    edible      flat      smooth      gray      no
## 1161    edible      bell       scaly     white     yes
## 1162    edible    convex     fibrous      gray      no
## 1163    edible    convex     fibrous       red     yes
## 1164    edible    convex       scaly    yellow     yes
## 1165    edible    convex      smooth     white      no
## 1166    edible      bell      smooth     white     yes
## 1167 poisonous    convex      smooth     brown     yes
## 1168    edible    convex     fibrous     brown     yes
## 1169    edible      flat      smooth     brown      no
## 1170    edible      bell      smooth     white     yes
## 1171    edible    convex      smooth      gray      no
## 1172    edible    convex     fibrous     brown     yes
## 1173    edible      flat     fibrous     white      no
## 1174    edible    convex     fibrous     brown      no
## 1175    edible    convex     fibrous      gray      no
## 1176    edible    convex     fibrous      gray      no
## 1177    edible      bell       scaly    yellow     yes
## 1178    edible      flat     fibrous     brown      no
## 1179    edible    convex     fibrous     white      no
## 1180    edible      flat       scaly     brown     yes
## 1181    edible    convex       scaly     brown     yes
## 1182    edible    convex       scaly    yellow     yes
## 1183    edible      flat     fibrous      gray      no
## 1184    edible    convex       scaly     white     yes
## 1185    edible    convex       scaly     white     yes
## 1186    edible      flat      smooth     white      no
## 1187    edible      flat      smooth      gray      no
## 1188 poisonous      flat      smooth     brown     yes
## 1189    edible    convex       scaly    yellow     yes
## 1190    edible    convex     fibrous     brown      no
## 1191    edible    convex     fibrous     white      no
## 1192    edible    convex      smooth    yellow     yes
## 1193    edible    convex     fibrous       red     yes
## 1194    edible      flat       scaly     brown     yes
## 1195    edible      bell      smooth     white     yes
## 1196 poisonous    convex      smooth     brown     yes
## 1197    edible    convex     fibrous      gray      no
## 1198    edible      bell       scaly     white     yes
## 1199    edible    convex      smooth     white     yes
## 1200    edible      bell       scaly    yellow     yes
## 1201    edible    convex       scaly     white     yes
## 1202    edible    convex      smooth    yellow     yes
## 1203    edible      bell      smooth     white     yes
## 1204    edible      flat      smooth     brown      no
## 1205 poisonous      flat      smooth     white     yes
## 1206    edible      flat      smooth     brown      no
## 1207    edible      flat     fibrous     brown      no
## 1208 poisonous      flat       scaly     white     yes
## 1209    edible      flat      smooth     white      no
## 1210    edible    convex     fibrous     white      no
## 1211    edible    convex      smooth     brown      no
## 1212    edible      flat      smooth     brown      no
## 1213    edible      flat       scaly    yellow     yes
## 1214    edible    convex     fibrous      gray      no
## 1215    edible    convex     fibrous     brown      no
## 1216 poisonous      flat      smooth     brown     yes
## 1217    edible    convex      smooth     white      no
## 1218    edible      flat     fibrous     brown      no
## 1219    edible      flat     fibrous     white      no
## 1220    edible      flat     fibrous     white      no
## 1221    edible    convex       scaly    yellow     yes
## 1222    edible    convex      smooth      gray      no
## 1223    edible    convex     fibrous      gray      no
## 1224    edible      flat     fibrous     brown      no
## 1225    edible      flat      smooth     brown      no
## 1226    edible    convex     fibrous     white      no
## 1227    edible    convex       scaly       red     yes
## 1228    edible    convex     fibrous     brown      no
## 1229 poisonous    convex      smooth     white     yes
## 1230    edible    convex       scaly     brown     yes
## 1231    edible    convex     fibrous     brown      no
## 1232 poisonous      flat       scaly     white     yes
## 1233    edible      flat     fibrous      gray      no
## 1234    edible    convex     fibrous     white      no
## 1235    edible      flat      smooth     brown      no
## 1236    edible      flat     fibrous      gray      no
## 1237    edible      flat      smooth      gray      no
## 1238    edible      flat     fibrous      gray      no
## 1239    edible    convex      smooth      gray      no
## 1240    edible    convex      smooth     brown      no
## 1241 poisonous      flat      smooth     white     yes
## 1242    edible    convex      smooth      gray      no
## 1243 poisonous    convex      smooth     white     yes
## 1244 poisonous      flat      smooth     white     yes
## 1245    edible      flat      smooth     brown      no
## 1246    edible    convex     fibrous      gray      no
## 1247    edible      flat      smooth      gray      no
## 1248    edible    convex      smooth      gray      no
## 1249    edible      flat     fibrous      gray      no
## 1250    edible      flat     fibrous      gray      no
## 1251    edible    convex       scaly      gray     yes
## 1252    edible    convex     fibrous     brown     yes
## 1253    edible      flat      smooth     white      no
## 1254 poisonous      flat       scaly     white     yes
## 1255 poisonous      flat       scaly     brown     yes
## 1256    edible    convex      smooth     white      no
## 1257 poisonous      flat      smooth     brown     yes
## 1258    edible      flat     fibrous     brown      no
## 1259    edible      flat      smooth     white      no
## 1260 poisonous      flat      smooth     brown     yes
## 1261 poisonous      flat       scaly     white     yes
## 1262 poisonous      flat       scaly     brown     yes
## 1263 poisonous      flat      smooth     white     yes
## 1264    edible    convex      smooth     white      no
## 1265    edible    convex     fibrous     brown     yes
## 1266    edible      flat      smooth     white      no
## 1267    edible      flat     fibrous      gray      no
## 1268 poisonous      flat       scaly     brown     yes
## 1269    edible    convex      smooth     white      no
## 1270    edible    convex       scaly       red     yes
## 1271    edible      flat      smooth      gray      no
## 1272    edible    convex      smooth     white      no
## 1273 poisonous      flat      smooth     white     yes
## 1274    edible      flat     fibrous     brown      no
## 1275    edible    convex     fibrous     white      no
## 1276 poisonous      flat      smooth     white     yes
## 1277    edible    convex     fibrous     brown      no
## 1278    edible      flat     fibrous     white      no
## 1279    edible    convex      smooth     white      no
## 1280    edible      flat      smooth     white      no
## 1281    edible      bell       scaly    yellow     yes
## 1282    edible    convex      smooth      gray      no
## 1283    edible    convex     fibrous     white      no
## 1284    edible    convex      smooth     brown      no
## 1285    edible    convex     fibrous     brown      no
## 1286    edible      flat     fibrous      gray      no
## 1287 poisonous    convex       scaly     brown     yes
## 1288    edible      flat      smooth      gray      no
## 1289    edible    convex     fibrous     brown     yes
## 1290    edible      flat      smooth     white      no
## 1291    edible    convex     fibrous     brown     yes
## 1292    edible    convex     fibrous      gray      no
## 1293    edible    convex     fibrous     white      no
## 1294 poisonous      flat      smooth     white     yes
## 1295 poisonous      flat      smooth     white     yes
## 1296    edible    convex      smooth      gray      no
## 1297    edible    convex     fibrous     brown     yes
## 1298    edible    convex      smooth      gray      no
## 1299    edible    convex       scaly    yellow     yes
## 1300    edible      flat      smooth     white      no
## 1301    edible    convex      smooth     white      no
## 1302    edible    convex     fibrous      gray      no
## 1303    edible      flat      smooth     white      no
## 1304    edible    convex     fibrous     brown     yes
## 1305    edible      flat      smooth      gray      no
## 1306    edible      flat      smooth      gray      no
## 1307    edible      flat     fibrous     brown      no
## 1308    edible      flat      smooth     white      no
## 1309    edible      flat      smooth     white      no
## 1310    edible      flat      smooth      gray      no
## 1311    edible      flat     fibrous     white      no
## 1312    edible      flat      smooth     brown      no
## 1313 poisonous      flat      smooth     white     yes
## 1314    edible    convex     fibrous      gray      no
## 1315    edible      bell       scaly    yellow     yes
## 1316    edible      flat     fibrous     brown      no
## 1317    edible      flat      smooth      gray      no
## 1318    edible    convex     fibrous     brown     yes
## 1319    edible      bell      smooth    yellow     yes
## 1320    edible    convex      smooth     white      no
## 1321    edible      flat     fibrous     brown     yes
## 1322 poisonous    convex      smooth     white     yes
## 1323    edible      flat     fibrous     white      no
## 1324 poisonous      flat       scaly     white     yes
## 1325    edible    convex      smooth     brown      no
## 1326    edible      flat      smooth     brown      no
## 1327    edible      bell      smooth    yellow     yes
## 1328    edible      flat      smooth      gray      no
## 1329    edible    convex      smooth      gray      no
## 1330    edible      flat     fibrous      gray      no
## 1331    edible    convex     fibrous      gray      no
## 1332    edible      flat      smooth     white      no
## 1333 poisonous      flat      smooth     brown     yes
## 1334    edible      flat     fibrous      gray      no
## 1335    edible      flat      smooth     white      no
## 1336    edible    convex     fibrous     brown     yes
## 1337    edible    convex      smooth     brown      no
## 1338    edible    convex     fibrous       red     yes
## 1339    edible    convex       scaly    yellow     yes
## 1340    edible      flat     fibrous     white      no
## 1341    edible    convex      smooth     white      no
## 1342    edible      flat     fibrous     brown      no
## 1343 poisonous      flat      smooth     white     yes
## 1344    edible      flat     fibrous      gray     yes
## 1345    edible      flat      smooth     white      no
## 1346    edible      flat     fibrous     white      no
## 1347 poisonous      flat       scaly     brown     yes
## 1348    edible    convex      smooth     white      no
## 1349    edible    convex     fibrous     brown     yes
## 1350    edible    convex       scaly      gray     yes
## 1351    edible    convex       scaly      gray     yes
## 1352    edible      flat      smooth     brown      no
## 1353    edible      flat      smooth     white      no
## 1354    edible      flat      smooth     brown      no
## 1355    edible    convex      smooth     brown      no
## 1356    edible      flat     fibrous     white      no
## 1357    edible    convex     fibrous     brown      no
## 1358    edible      flat     fibrous     white      no
## 1359    edible      flat     fibrous     brown      no
## 1360    edible      flat      smooth     white      no
## 1361    edible      flat     fibrous     brown      no
## 1362 poisonous      flat       scaly     brown     yes
## 1363    edible      flat     fibrous     white      no
## 1364    edible      flat      smooth     white      no
## 1365    edible    convex     fibrous     brown      no
## 1366    edible      flat     fibrous     white      no
## 1367    edible    convex     fibrous      gray      no
## 1368    edible      flat      smooth     brown      no
## 1369    edible    convex     fibrous      gray     yes
## 1370    edible      flat     fibrous     white      no
## 1371    edible      flat     fibrous     brown      no
## 1372    edible    convex      smooth     brown      no
## 1373    edible    convex     fibrous     white      no
## 1374    edible      bell      smooth    yellow     yes
## 1375 poisonous    convex       scaly     brown     yes
## 1376 poisonous      flat      smooth     brown     yes
## 1377    edible      flat     fibrous     white      no
## 1378    edible      flat     fibrous     brown      no
## 1379 poisonous      flat       scaly     brown     yes
## 1380    edible      flat     fibrous     brown      no
## 1381 poisonous    convex      smooth     white     yes
## 1382    edible      flat      smooth     brown      no
## 1383 poisonous      flat       scaly     white     yes
## 1384    edible      flat      smooth     brown      no
## 1385    edible      flat      smooth      gray      no
## 1386    edible    convex     fibrous      gray      no
## 1387    edible      flat     fibrous     brown      no
## 1388    edible    convex     fibrous      gray     yes
## 1389    edible    convex     fibrous     brown     yes
## 1390    edible    convex     fibrous     brown      no
## 1391    edible    convex     fibrous      gray     yes
## 1392    edible    convex      smooth     white      no
## 1393    edible      flat      smooth     white      no
## 1394    edible    convex      smooth     white      no
## 1395    edible      flat     fibrous      gray      no
## 1396    edible    convex     fibrous     brown     yes
## 1397    edible    convex      smooth     white      no
## 1398    edible    convex      smooth     brown      no
## 1399    edible      flat      smooth      gray      no
## 1400 poisonous      flat       scaly     white     yes
## 1401    edible      flat      smooth     brown      no
## 1402    edible      flat       scaly    yellow     yes
## 1403    edible    convex     fibrous      gray     yes
## 1404    edible      flat      smooth      gray      no
## 1405    edible    convex      smooth      gray      no
## 1406 poisonous      flat       scaly     white     yes
## 1407    edible    convex      smooth     white      no
## 1408    edible    convex      smooth     white      no
## 1409    edible      flat      smooth      gray      no
## 1410    edible      flat      smooth     brown      no
## 1411    edible    convex     fibrous     brown      no
## 1412    edible      flat      smooth     brown      no
## 1413    edible      flat      smooth     brown      no
## 1414    edible    convex     fibrous     white      no
## 1415    edible      flat     fibrous     white      no
## 1416    edible      flat     fibrous     brown      no
## 1417    edible    convex       scaly     white     yes
## 1418    edible    convex      smooth     brown      no
## 1419    edible    convex      smooth      gray      no
## 1420    edible      flat      smooth     white      no
## 1421 poisonous    convex      smooth     white     yes
## 1422    edible    convex      smooth     white      no
## 1423    edible    convex     fibrous     brown     yes
## 1424    edible      flat     fibrous      gray      no
## 1425    edible    convex      smooth      gray      no
## 1426    edible      flat     fibrous     brown      no
## 1427    edible      flat      smooth     brown      no
## 1428    edible    convex      smooth      gray      no
## 1429    edible      flat       scaly     brown     yes
## 1430 poisonous      flat       scaly     brown     yes
## 1431    edible    convex      smooth     brown      no
## 1432    edible    convex     fibrous     brown     yes
## 1433 poisonous      flat       scaly     white     yes
## 1434 poisonous    convex      smooth     white     yes
## 1435 poisonous      flat      smooth     brown     yes
## 1436    edible    convex     fibrous     brown     yes
## 1437    edible      bell       scaly     white     yes
## 1438 poisonous      flat       scaly     white     yes
## 1439    edible      flat     fibrous     white      no
## 1440    edible    convex      smooth     white      no
## 1441    edible    convex     fibrous     brown     yes
## 1442    edible    convex      smooth     brown      no
## 1443    edible      flat     fibrous     brown      no
## 1444    edible      flat     fibrous     brown      no
## 1445 poisonous      flat       scaly     brown     yes
## 1446 poisonous      flat       scaly     white     yes
## 1447    edible    convex      smooth     brown      no
## 1448    edible      flat     fibrous      gray      no
## 1449    edible    convex     fibrous     brown     yes
## 1450    edible      flat      smooth      gray      no
## 1451    edible      flat     fibrous     brown      no
## 1452 poisonous      flat      smooth     brown     yes
## 1453    edible    convex     fibrous     brown      no
## 1454 poisonous      flat       scaly     brown     yes
## 1455    edible    convex      smooth      gray      no
## 1456    edible      flat     fibrous     white      no
## 1457    edible    convex      smooth     white      no
## 1458    edible    convex     fibrous     brown     yes
## 1459    edible    convex      smooth     brown      no
## 1460 poisonous      flat      smooth     white     yes
## 1461    edible    convex     fibrous     brown     yes
## 1462    edible    convex      smooth     white      no
## 1463    edible      flat      smooth     white      no
## 1464    edible    convex      smooth     white     yes
## 1465    edible    convex     fibrous     brown      no
## 1466    edible    convex       scaly      gray     yes
## 1467    edible    convex     fibrous     brown     yes
## 1468    edible    convex      smooth    yellow     yes
## 1469    edible      flat     fibrous      gray      no
## 1470    edible    convex      smooth     brown      no
## 1471    edible    convex       scaly       red     yes
## 1472    edible      flat      smooth      gray      no
## 1473 poisonous      flat      smooth     white     yes
## 1474    edible      flat     fibrous     white      no
## 1475    edible    convex     fibrous      gray      no
## 1476    edible      flat     fibrous     brown      no
## 1477    edible      flat      smooth     brown      no
## 1478    edible    convex     fibrous     white      no
## 1479 poisonous      flat       scaly     white     yes
## 1480    edible    convex     fibrous     white      no
## 1481    edible      flat      smooth     brown      no
## 1482    edible    convex      smooth     brown      no
## 1483    edible    convex     fibrous      gray      no
## 1484    edible    convex      smooth     brown      no
## 1485    edible      flat       scaly    yellow     yes
## 1486 poisonous    convex       scaly     brown     yes
## 1487    edible    convex     fibrous     white      no
## 1488    edible      flat      smooth     white      no
## 1489    edible    convex      smooth     brown      no
## 1490 poisonous      flat       scaly     brown     yes
## 1491    edible      flat     fibrous      gray      no
## 1492 poisonous      flat      smooth     white     yes
## 1493    edible      flat      smooth     brown      no
## 1494    edible    convex      smooth      gray      no
## 1495    edible    convex     fibrous      gray      no
## 1496    edible      flat     fibrous     brown      no
## 1497    edible      flat      smooth      gray      no
## 1498    edible    convex      smooth     white      no
## 1499    edible    convex     fibrous     brown      no
## 1500    edible    convex     fibrous      gray      no
## 1501    edible      flat     fibrous     brown      no
## 1502    edible      bell       scaly    yellow     yes
## 1503    edible      flat     fibrous      gray      no
## 1504    edible    convex     fibrous      gray      no
## 1505    edible      flat     fibrous     white      no
## 1506    edible    convex     fibrous     brown     yes
## 1507 poisonous      flat      smooth     brown     yes
## 1508    edible    convex     fibrous     brown     yes
## 1509    edible    convex     fibrous     brown      no
## 1510    edible    convex     fibrous     brown     yes
## 1511    edible    convex     fibrous     white      no
## 1512    edible      flat      smooth      gray      no
## 1513    edible      flat      smooth     brown      no
## 1514    edible    convex       scaly    yellow     yes
## 1515    edible    convex     fibrous     white     yes
## 1516    edible      flat     fibrous      gray      no
## 1517    edible      flat     fibrous     brown      no
## 1518    edible      flat     fibrous     brown      no
## 1519    edible      bell       scaly    yellow     yes
## 1520    edible    convex     fibrous     brown      no
## 1521    edible    convex       scaly     white     yes
## 1522    edible      flat      smooth     white      no
## 1523    edible    convex      smooth     white      no
## 1524    edible    convex     fibrous     brown      no
## 1525    edible    convex      smooth     brown      no
## 1526    edible    convex      smooth     brown      no
## 1527    edible    convex       scaly     brown     yes
## 1528    edible      flat      smooth      gray      no
## 1529    edible    convex       scaly    yellow     yes
## 1530    edible    convex      smooth     white      no
## 1531 poisonous      flat       scaly     white     yes
## 1532    edible      flat      smooth     white      no
## 1533 poisonous      flat      smooth     white     yes
## 1534    edible      flat      smooth      gray      no
## 1535    edible      flat     fibrous      gray      no
## 1536 poisonous    convex      smooth     white     yes
## 1537    edible    convex      smooth      gray      no
## 1538 poisonous    convex      smooth     white     yes
## 1539    edible    convex      smooth      gray      no
## 1540    edible      flat      smooth     white      no
## 1541 poisonous      flat       scaly     white     yes
## 1542    edible    convex     fibrous     white      no
## 1543    edible    convex      smooth     brown      no
## 1544    edible    convex     fibrous     white      no
## 1545    edible    convex     fibrous     white      no
## 1546    edible    convex       scaly       red     yes
## 1547 poisonous      flat      smooth     brown     yes
## 1548    edible      flat     fibrous      gray      no
## 1549    edible    convex       scaly    yellow     yes
## 1550    edible    convex     fibrous     brown      no
## 1551    edible      flat     fibrous     brown      no
## 1552    edible      bell      smooth     white     yes
## 1553    edible      flat      smooth      gray      no
## 1554    edible      flat     fibrous     white      no
## 1555    edible      flat     fibrous     brown      no
## 1556 poisonous      flat      smooth     brown     yes
## 1557    edible    convex      smooth     brown      no
## 1558    edible      bell       scaly    yellow     yes
## 1559    edible      flat      smooth      gray      no
## 1560    edible      flat      smooth     brown      no
## 1561    edible    convex     fibrous      gray      no
## 1562    edible      flat      smooth      gray      no
## 1563    edible    convex     fibrous     brown      no
## 1564    edible    convex     fibrous     brown     yes
## 1565    edible      bell       scaly     white     yes
## 1566    edible    convex     fibrous      gray     yes
## 1567 poisonous      flat       scaly     brown     yes
## 1568    edible    convex      smooth     white      no
## 1569 poisonous      flat      smooth     brown     yes
## 1570    edible      flat      smooth     brown      no
## 1571    edible      flat     fibrous     brown      no
## 1572    edible    convex     fibrous     white      no
## 1573    edible    convex     fibrous     brown      no
## 1574    edible      flat      smooth     brown      no
## 1575    edible    convex      smooth    yellow     yes
## 1576    edible      flat      smooth     white      no
## 1577    edible    convex      smooth     white      no
## 1578 poisonous    convex       scaly     brown     yes
## 1579    edible      flat     fibrous      gray      no
## 1580 poisonous      flat       scaly     brown     yes
## 1581    edible      flat     fibrous     white      no
## 1582    edible    convex     fibrous     brown     yes
## 1583    edible    convex     fibrous      gray      no
## 1584 poisonous      flat      smooth     brown     yes
## 1585    edible      flat      smooth      gray      no
## 1586 poisonous    convex      smooth     white     yes
## 1587    edible    convex     fibrous     brown     yes
## 1588    edible    convex     fibrous     brown      no
## 1589    edible    convex       scaly    yellow     yes
## 1590    edible      flat     fibrous     white      no
## 1591    edible      flat      smooth     white      no
## 1592    edible    convex     fibrous      gray      no
## 1593    edible      flat     fibrous      gray      no
## 1594    edible      flat     fibrous     white      no
## 1595    edible    convex     fibrous      gray      no
## 1596    edible      flat     fibrous      gray      no
## 1597    edible    convex     fibrous      gray     yes
## 1598    edible    convex      smooth      gray      no
## 1599    edible      flat      smooth      gray      no
## 1600    edible    convex       scaly     brown     yes
## 1601    edible    convex       scaly      gray     yes
## 1602    edible      flat      smooth      gray      no
## 1603    edible      flat     fibrous     white      no
## 1604    edible      flat      smooth     brown      no
## 1605    edible      flat     fibrous     white      no
## 1606    edible      flat     fibrous     brown      no
## 1607    edible      flat      smooth      gray      no
## 1608    edible    convex      smooth     brown      no
## 1609    edible    convex     fibrous     brown     yes
## 1610    edible    convex      smooth     brown      no
## 1611    edible    convex     fibrous     brown      no
## 1612    edible      flat      smooth     white      no
## 1613    edible    convex     fibrous     brown      no
## 1614 poisonous      flat      smooth     white     yes
## 1615 poisonous      flat      smooth     brown     yes
## 1616    edible    convex     fibrous     brown     yes
## 1617    edible    convex      smooth     white      no
## 1618    edible      flat     fibrous      gray      no
## 1619    edible    convex      smooth     brown      no
## 1620    edible    convex     fibrous     brown      no
## 1621    edible    convex      smooth      gray      no
## 1622    edible      flat     fibrous      gray      no
## 1623    edible      flat      smooth     brown      no
## 1624    edible      flat      smooth      gray      no
## 1625    edible    convex     fibrous       red     yes
## 1626 poisonous      flat       scaly     white     yes
## 1627    edible    convex     fibrous     brown      no
## 1628    edible    convex     fibrous     brown     yes
## 1629 poisonous      flat      smooth     brown     yes
## 1630 poisonous      flat      smooth     white     yes
## 1631 poisonous      flat      smooth     white     yes
## 1632    edible      flat     fibrous     white      no
## 1633    edible      flat      smooth     brown      no
## 1634    edible      flat     fibrous     brown      no
## 1635    edible    convex      smooth     brown      no
## 1636    edible      flat      smooth     brown      no
## 1637 poisonous      flat      smooth     white     yes
## 1638 poisonous      flat      smooth     white     yes
## 1639    edible      flat      smooth      gray      no
## 1640    edible    convex      smooth     brown      no
## 1641    edible    convex      smooth     brown      no
## 1642    edible    convex     fibrous     brown     yes
## 1643    edible    convex     fibrous     brown     yes
## 1644    edible      flat     fibrous     white      no
## 1645    edible      flat     fibrous     white      no
## 1646    edible    convex     fibrous     white      no
## 1647    edible    convex      smooth    yellow     yes
## 1648    edible      flat      smooth      gray      no
## 1649    edible    convex      smooth     white      no
## 1650    edible    convex     fibrous     brown      no
## 1651    edible    convex     fibrous     brown      no
## 1652    edible    convex      smooth     white      no
## 1653    edible    convex      smooth     brown      no
## 1654    edible    convex      smooth      gray      no
## 1655    edible    convex      smooth      gray      no
## 1656    edible      flat      smooth     white      no
## 1657    edible    convex      smooth     brown      no
## 1658    edible      flat     fibrous      gray      no
## 1659    edible      flat     fibrous     white      no
## 1660    edible    convex     fibrous     white      no
## 1661    edible      flat     fibrous      gray      no
## 1662    edible    convex     fibrous      gray      no
## 1663    edible    convex       scaly    yellow     yes
## 1664    edible    convex      smooth    yellow     yes
## 1665    edible    convex      smooth     white      no
## 1666 poisonous    convex       scaly     brown     yes
## 1667    edible    convex     fibrous     white      no
## 1668 poisonous    convex      smooth     white     yes
## 1669    edible    convex       scaly      gray     yes
## 1670 poisonous      flat      smooth     white     yes
## 1671    edible    convex       scaly    yellow     yes
## 1672    edible    convex       scaly     white     yes
## 1673    edible      flat       scaly     brown     yes
## 1674    edible    convex      smooth     white      no
## 1675    edible      flat      smooth     brown      no
## 1676    edible    convex      smooth      gray      no
## 1677    edible    convex      smooth     white      no
## 1678    edible      flat      smooth     brown      no
## 1679    edible      flat      smooth     brown      no
## 1680    edible    convex      smooth      gray      no
## 1681    edible      bell      smooth     white     yes
## 1682    edible    convex      smooth      gray      no
## 1683    edible    convex      smooth    yellow     yes
## 1684 poisonous      flat       scaly     white     yes
## 1685    edible      flat      smooth     white      no
## 1686    edible      flat      smooth     brown      no
## 1687    edible      flat      smooth      gray      no
## 1688    edible      flat     fibrous      gray      no
## 1689    edible    convex       scaly     brown     yes
## 1690    edible    convex     fibrous     brown     yes
## 1691    edible    convex       scaly    yellow     yes
## 1692    edible    convex     fibrous      gray     yes
## 1693    edible      flat     fibrous      gray      no
## 1694    edible      flat      smooth     brown      no
## 1695    edible      flat      smooth     white      no
## 1696    edible    convex     fibrous      gray      no
## 1697    edible      flat      smooth     white      no
## 1698    edible      flat     fibrous      gray      no
## 1699    edible    convex     fibrous      gray      no
## 1700    edible    convex      smooth     brown      no
## 1701    edible    convex     fibrous     brown     yes
## 1702    edible      flat      smooth     white      no
## 1703    edible      flat     fibrous     brown      no
## 1704 poisonous      flat       scaly     brown     yes
## 1705    edible    convex     fibrous     brown     yes
## 1706    edible    convex     fibrous     brown      no
## 1707    edible      flat     fibrous     white      no
## 1708 poisonous      flat       scaly     brown     yes
## 1709    edible      flat     fibrous      gray      no
## 1710    edible    convex     fibrous      gray     yes
## 1711    edible    convex     fibrous     white      no
## 1712    edible    convex     fibrous      gray      no
## 1713    edible    convex     fibrous     brown     yes
## 1714    edible    convex      smooth      gray      no
## 1715    edible      flat     fibrous     white      no
## 1716    edible    convex     fibrous      gray     yes
## 1717    edible    convex       scaly     white     yes
## 1718    edible    convex       scaly     white     yes
## 1719    edible      flat      smooth      gray      no
## 1720    edible      flat      smooth     white      no
## 1721    edible      flat      smooth     brown      no
## 1722    edible      flat      smooth     white      no
## 1723    edible    convex     fibrous     brown      no
## 1724    edible    convex      smooth     brown      no
## 1725    edible      bell       scaly    yellow     yes
## 1726 poisonous      flat       scaly     white     yes
## 1727    edible    convex      smooth     brown      no
## 1728    edible      flat      smooth     brown      no
## 1729    edible    convex       scaly     brown     yes
## 1730    edible    convex      smooth      gray      no
## 1731    edible      flat      smooth     white      no
## 1732 poisonous    convex      smooth     brown     yes
## 1733    edible      flat      smooth      gray      no
## 1734    edible    convex     fibrous     white      no
## 1735 poisonous      flat      smooth     brown     yes
## 1736    edible    convex     fibrous     brown      no
## 1737    edible    convex      smooth     brown      no
## 1738    edible    convex     fibrous     brown     yes
## 1739    edible      flat      smooth     white      no
## 1740 poisonous      flat      smooth     white     yes
## 1741    edible    convex     fibrous     white      no
## 1742    edible      flat     fibrous     brown      no
## 1743    edible      flat      smooth      gray      no
## 1744    edible    convex     fibrous     white      no
## 1745    edible      flat       scaly     brown     yes
## 1746 poisonous      flat      smooth     white     yes
## 1747    edible    convex     fibrous     white      no
## 1748    edible      flat     fibrous     brown      no
## 1749 poisonous      flat       scaly     brown     yes
## 1750    edible      flat      smooth     white      no
## 1751    edible    convex     fibrous      gray      no
## 1752    edible      flat       scaly    yellow     yes
## 1753    edible    convex     fibrous     white      no
## 1754    edible    convex     fibrous     white      no
## 1755 poisonous      flat       scaly     brown     yes
## 1756    edible      flat     fibrous     brown      no
## 1757    edible      flat     fibrous      gray      no
## 1758    edible    convex     fibrous     brown      no
## 1759    edible    convex     fibrous     brown     yes
## 1760    edible    convex      smooth      gray      no
## 1761    edible    convex      smooth      gray      no
## 1762    edible    convex     fibrous     white      no
## 1763    edible      flat     fibrous      gray      no
## 1764    edible    convex     fibrous     brown     yes
## 1765    edible    convex      smooth     white      no
## 1766 poisonous    convex      smooth     white     yes
## 1767    edible      flat      smooth      gray      no
## 1768    edible    convex      smooth     brown      no
## 1769    edible    convex     fibrous     brown     yes
## 1770    edible    convex       scaly    yellow     yes
## 1771    edible    convex      smooth      gray      no
## 1772    edible    convex     fibrous     brown      no
## 1773    edible    convex     fibrous     white      no
## 1774    edible    convex       scaly    yellow     yes
## 1775    edible    convex     fibrous     brown     yes
## 1776    edible    convex     fibrous     white      no
## 1777    edible    convex     fibrous     white      no
## 1778 poisonous      flat      smooth     brown     yes
## 1779 poisonous      flat      smooth     white     yes
## 1780    edible    convex      smooth     brown      no
## 1781    edible    convex     fibrous      gray      no
## 1782    edible      flat      smooth     brown      no
## 1783    edible    convex      smooth     white      no
## 1784 poisonous      flat      smooth     white     yes
## 1785    edible      bell      smooth    yellow     yes
## 1786    edible    convex     fibrous     brown      no
## 1787 poisonous      flat       scaly     brown     yes
## 1788    edible    convex      smooth      gray      no
## 1789    edible    convex      smooth      gray      no
## 1790    edible    convex      smooth     white      no
## 1791 poisonous      flat      smooth     white     yes
## 1792    edible      flat      smooth     white      no
## 1793    edible    convex     fibrous     brown      no
## 1794    edible      flat     fibrous     brown      no
## 1795    edible    convex     fibrous     brown      no
## 1796 poisonous      flat       scaly     brown     yes
## 1797    edible    convex     fibrous     white      no
## 1798    edible      flat      smooth     white      no
## 1799 poisonous      flat       scaly     white     yes
## 1800    edible      flat      smooth      gray      no
## 1801    edible      flat       scaly     brown     yes
## 1802    edible    convex     fibrous      gray      no
## 1803    edible    convex     fibrous      gray     yes
## 1804    edible    convex       scaly     brown     yes
## 1805    edible      flat     fibrous     brown     yes
## 1806    edible      flat       scaly       red     yes
## 1807    edible      flat      smooth      gray      no
## 1808    edible    convex     fibrous      gray     yes
## 1809    edible    convex       scaly      gray     yes
## 1810    edible    convex     fibrous      gray      no
## 1811 poisonous      flat      smooth     brown     yes
## 1812    edible      flat     fibrous     brown     yes
## 1813 poisonous    convex      smooth     brown     yes
## 1814    edible    convex      smooth     white     yes
## 1815    edible    convex      smooth     white      no
## 1816    edible    convex       scaly    yellow     yes
## 1817 poisonous    convex     fibrous      gray      no
## 1818    edible      flat      smooth     brown      no
## 1819    edible      flat      smooth     white      no
## 1820    edible    convex     fibrous     brown     yes
## 1821    edible      flat      smooth     brown      no
## 1822    edible    convex     fibrous     brown      no
## 1823 poisonous    convex      smooth     white     yes
## 1824    edible      flat     fibrous     brown     yes
## 1825    edible    convex       scaly     white     yes
## 1826    edible      flat     fibrous      gray      no
## 1827    edible    convex       scaly       red     yes
## 1828    edible      flat     fibrous     white      no
## 1829    edible    convex      smooth      gray      no
## 1830    edible    convex       scaly     brown     yes
## 1831    edible    convex       scaly      gray     yes
## 1832    edible    convex     fibrous      gray     yes
## 1833    edible      flat      smooth     white      no
## 1834    edible    convex     fibrous      gray     yes
## 1835    edible    convex     fibrous     brown     yes
## 1836    edible    convex     fibrous       red     yes
## 1837    edible    convex       scaly     brown     yes
## 1838    edible      flat     fibrous     white      no
## 1839    edible    convex       scaly     brown     yes
## 1840    edible    convex      smooth      gray      no
## 1841    edible    convex     fibrous      gray      no
## 1842    edible      flat     fibrous     white      no
## 1843    edible    convex       scaly      gray     yes
## 1844 poisonous      flat       scaly     brown     yes
## 1845    edible    convex       scaly       red     yes
## 1846    edible      flat     fibrous     white      no
## 1847    edible      flat      smooth      gray      no
## 1848    edible    convex       scaly      gray     yes
## 1849    edible      flat     fibrous      gray     yes
## 1850    edible    convex     fibrous     brown     yes
## 1851    edible      flat     fibrous       red     yes
## 1852    edible    convex      smooth     white      no
## 1853    edible    convex     fibrous       red     yes
## 1854    edible    convex     fibrous     brown     yes
## 1855    edible    convex     fibrous      gray     yes
## 1856    edible    convex     fibrous     brown     yes
## 1857    edible    convex     fibrous    yellow     yes
## 1858    edible    convex     fibrous       red     yes
## 1859 poisonous      flat      smooth     white     yes
## 1860    edible    convex      smooth     white      no
## 1861    edible    convex     fibrous       red     yes
## 1862    edible    convex       scaly     brown     yes
## 1863    edible    convex     fibrous     white      no
## 1864    edible    convex     fibrous      gray     yes
## 1865    edible    convex      smooth      gray      no
## 1866    edible    convex       scaly       red     yes
## 1867    edible    convex       scaly     brown     yes
## 1868    edible    convex      smooth     white      no
## 1869    edible    convex      smooth     brown      no
## 1870    edible    convex      smooth     white      no
## 1871    edible    convex      smooth     brown      no
## 1872    edible      flat     fibrous       red     yes
## 1873    edible      flat     fibrous     white      no
## 1874    edible      flat     fibrous      gray      no
## 1875    edible    convex       scaly       red     yes
## 1876    edible    convex     fibrous       red     yes
## 1877    edible    convex       scaly      gray     yes
## 1878    edible    convex     fibrous       red     yes
## 1879    edible      flat      smooth     brown      no
## 1880    edible    convex      smooth     white      no
## 1881    edible    convex      smooth     white      no
## 1882    edible    convex     fibrous     white      no
## 1883    edible    convex     fibrous       red     yes
## 1884    edible    convex     fibrous     brown     yes
## 1885    edible      flat     fibrous     brown     yes
## 1886    edible      flat     fibrous     white     yes
## 1887    edible      flat     fibrous     white      no
## 1888 poisonous      flat       scaly     white     yes
## 1889    edible      flat     fibrous      gray     yes
## 1890    edible    convex     fibrous     brown     yes
## 1891    edible    convex      smooth     white      no
## 1892    edible    convex     fibrous     white      no
## 1893    edible    convex      smooth     brown      no
## 1894    edible    convex     fibrous     brown      no
## 1895    edible    convex      smooth      gray      no
## 1896    edible    convex       scaly     brown     yes
## 1897    edible    convex     fibrous     brown     yes
## 1898    edible      flat      smooth      gray      no
## 1899    edible      flat      smooth     brown      no
## 1900    edible    convex      smooth      gray      no
## 1901    edible      flat     fibrous      gray     yes
## 1902    edible    convex      smooth     white      no
## 1903    edible      flat     fibrous     brown      no
## 1904    edible      flat      smooth     white      no
## 1905    edible    convex     fibrous      gray      no
## 1906    edible      flat     fibrous     brown      no
## 1907    edible      flat     fibrous     brown      no
## 1908    edible    convex     fibrous     brown     yes
## 1909    edible      flat      smooth      gray      no
## 1910    edible      flat      smooth     white      no
## 1911    edible    convex       scaly       red     yes
## 1912    edible    convex       scaly      gray     yes
## 1913    edible    convex       scaly       red     yes
## 1914    edible    convex     fibrous      gray      no
## 1915    edible      flat     fibrous      gray      no
## 1916    edible      flat       scaly    yellow     yes
## 1917 poisonous      flat       scaly     white     yes
## 1918    edible      flat      smooth     brown      no
## 1919    edible      flat     fibrous     brown      no
## 1920    edible      flat     fibrous     brown     yes
## 1921    edible    convex     fibrous       red     yes
## 1922    edible      flat     fibrous      gray      no
## 1923    edible    convex     fibrous     brown      no
## 1924    edible    convex     fibrous      gray      no
## 1925    edible    convex       scaly       red     yes
## 1926    edible      flat     fibrous     brown     yes
## 1927    edible    convex     fibrous     brown      no
## 1928    edible    convex     fibrous     brown      no
## 1929    edible      flat      smooth     white      no
## 1930    edible      flat      smooth      gray      no
## 1931 poisonous      flat       scaly     white     yes
## 1932    edible      bell      smooth     white     yes
## 1933    edible    convex     fibrous     brown     yes
## 1934    edible      flat     fibrous      gray      no
## 1935    edible    convex     fibrous     brown      no
## 1936    edible    convex      smooth     brown      no
## 1937    edible      flat      smooth     white     yes
## 1938    edible    convex     fibrous     white      no
## 1939    edible    convex      smooth     white      no
## 1940    edible    convex      smooth      gray      no
## 1941    edible    convex       scaly       red     yes
## 1942    edible      flat     fibrous     brown     yes
## 1943    edible    convex     fibrous     brown     yes
## 1944    edible      flat     fibrous     white      no
## 1945    edible      flat      smooth     brown      no
## 1946 poisonous      flat      smooth     white     yes
## 1947    edible      flat     fibrous     brown      no
## 1948    edible    convex       scaly      gray     yes
## 1949    edible    convex       scaly      gray     yes
## 1950    edible    convex     fibrous      gray      no
## 1951    edible    convex     fibrous      gray     yes
## 1952    edible    convex       scaly       red     yes
## 1953    edible    convex     fibrous      gray     yes
## 1954    edible    convex     fibrous      gray     yes
## 1955    edible    convex     fibrous     brown     yes
## 1956 poisonous    convex      smooth     white     yes
## 1957    edible    convex     fibrous     brown      no
## 1958    edible    convex       scaly     brown     yes
## 1959    edible    convex     fibrous      gray     yes
## 1960 poisonous      flat       scaly     brown     yes
## 1961    edible    convex     fibrous      gray     yes
## 1962    edible    convex     fibrous      gray      no
## 1963    edible    convex     fibrous       red     yes
## 1964    edible      flat     fibrous     brown      no
## 1965    edible      flat      smooth     white      no
## 1966    edible      flat      smooth     brown      no
## 1967    edible    convex       scaly       red     yes
## 1968    edible      flat      smooth     brown      no
## 1969    edible      flat     fibrous     brown     yes
## 1970    edible      flat      smooth     white      no
## 1971    edible    convex     fibrous     brown      no
## 1972    edible      flat     fibrous     brown      no
## 1973 poisonous    convex      smooth     brown     yes
## 1974    edible    convex     fibrous     brown     yes
## 1975    edible      flat      smooth     brown      no
## 1976 poisonous      flat       scaly     white     yes
## 1977    edible    convex     fibrous     brown     yes
## 1978    edible    convex     fibrous      gray     yes
## 1979    edible      flat     fibrous     brown      no
## 1980    edible    convex     fibrous       red     yes
## 1981    edible      flat     fibrous     white      no
## 1982    edible    convex     fibrous     white      no
## 1983    edible    convex       scaly     white     yes
## 1984    edible    convex      smooth     white      no
## 1985    edible    convex       scaly      gray     yes
## 1986    edible    convex     fibrous      gray     yes
## 1987    edible    convex      smooth      gray      no
## 1988 poisonous      flat       scaly     white     yes
## 1989    edible    convex     fibrous       red     yes
## 1990 poisonous      flat      smooth     brown     yes
## 1991 poisonous      flat       scaly     brown     yes
## 1992    edible    convex     fibrous      gray     yes
## 1993    edible      flat      smooth     brown      no
## 1994    edible    convex     fibrous      gray     yes
## 1995    edible    convex     fibrous     brown      no
## 1996    edible    convex     fibrous     brown     yes
## 1997    edible      flat      smooth     brown      no
## 1998    edible      flat     fibrous     brown      no
## 1999    edible    convex      smooth     brown      no
## 2000    edible    convex      smooth     brown      no
print(df_new_fungus[2001:3000, ])
##            eat cap_shape cap_surface cap_color bruises
## 2001    edible    convex     fibrous     brown     yes
## 2002    edible    convex       scaly       red     yes
## 2003    edible      flat      smooth     brown      no
## 2004    edible    convex     fibrous     brown     yes
## 2005 poisonous      flat       scaly     white     yes
## 2006    edible    convex       scaly    yellow     yes
## 2007 poisonous      flat      smooth     brown     yes
## 2008    edible      flat     fibrous     white      no
## 2009    edible      flat     fibrous     brown      no
## 2010 poisonous      flat      smooth     brown     yes
## 2011    edible    convex      smooth     brown      no
## 2012    edible    convex     fibrous     brown      no
## 2013    edible    convex     fibrous       red     yes
## 2014    edible      flat     fibrous     brown      no
## 2015    edible    convex     fibrous     white      no
## 2016    edible      flat      smooth      gray      no
## 2017    edible      flat     fibrous     white      no
## 2018    edible      flat      smooth    yellow     yes
## 2019    edible      flat     fibrous     white     yes
## 2020    edible      flat     fibrous     brown      no
## 2021    edible    convex     fibrous     brown     yes
## 2022    edible    convex       scaly      gray     yes
## 2023    edible    convex     fibrous     brown     yes
## 2024    edible    convex     fibrous     brown      no
## 2025    edible    convex     fibrous      gray     yes
## 2026    edible    convex     fibrous     brown     yes
## 2027    edible    convex     fibrous      gray      no
## 2028    edible    convex     fibrous     brown     yes
## 2029    edible    convex      smooth     brown      no
## 2030    edible      bell       scaly     white     yes
## 2031    edible    convex       scaly       red     yes
## 2032    edible      flat      smooth     brown      no
## 2033    edible    convex     fibrous       red     yes
## 2034    edible      flat       scaly     brown     yes
## 2035    edible    convex       scaly      gray     yes
## 2036    edible    convex      smooth      gray      no
## 2037    edible    convex      smooth     brown      no
## 2038    edible    convex     fibrous      gray      no
## 2039    edible    convex      smooth      gray      no
## 2040    edible    convex       scaly       red     yes
## 2041    edible      flat     fibrous      gray     yes
## 2042    edible      flat     fibrous     brown     yes
## 2043    edible    convex     fibrous     brown      no
## 2044    edible      flat      smooth     brown      no
## 2045    edible    convex     fibrous     white      no
## 2046    edible    convex       scaly    yellow     yes
## 2047    edible    convex     fibrous       red     yes
## 2048    edible    convex     fibrous     brown      no
## 2049    edible    convex       scaly     brown     yes
## 2050    edible      flat     fibrous      gray     yes
## 2051    edible    convex     fibrous     white      no
## 2052    edible    convex       scaly     white     yes
## 2053    edible    convex      smooth     brown      no
## 2054    edible      flat      smooth     white      no
## 2055    edible      flat     fibrous     brown     yes
## 2056    edible      flat     fibrous     white      no
## 2057    edible    convex     fibrous      gray     yes
## 2058    edible    convex     fibrous     brown     yes
## 2059    edible    convex     fibrous     white      no
## 2060    edible    convex      smooth     white     yes
## 2061    edible      flat      smooth      gray      no
## 2062 poisonous      flat       scaly     brown     yes
## 2063    edible      flat     fibrous      gray      no
## 2064    edible    convex     fibrous     brown     yes
## 2065    edible    convex     fibrous     white      no
## 2066    edible    convex       scaly     brown     yes
## 2067    edible    convex       scaly       red     yes
## 2068 poisonous      flat      smooth     brown     yes
## 2069    edible      flat      smooth      gray      no
## 2070    edible    convex     fibrous      gray     yes
## 2071    edible      flat     fibrous      gray     yes
## 2072    edible    convex     fibrous      gray     yes
## 2073    edible    convex     fibrous      gray     yes
## 2074    edible    convex     fibrous     brown     yes
## 2075 poisonous    convex      smooth     white     yes
## 2076    edible    convex      smooth    yellow     yes
## 2077    edible    convex     fibrous     brown     yes
## 2078    edible      flat       scaly     brown     yes
## 2079    edible    convex      smooth      gray      no
## 2080    edible    convex       scaly       red     yes
## 2081    edible    convex     fibrous      gray      no
## 2082    edible      flat      smooth     white      no
## 2083    edible    convex     fibrous     brown     yes
## 2084    edible      flat     fibrous     brown     yes
## 2085    edible      flat     fibrous      gray      no
## 2086    edible      flat     fibrous      gray      no
## 2087    edible      flat     fibrous     brown      no
## 2088    edible    convex     fibrous      gray     yes
## 2089    edible    convex     fibrous       red     yes
## 2090 poisonous      flat       scaly     brown     yes
## 2091    edible    convex       scaly      gray     yes
## 2092    edible    convex      smooth     white      no
## 2093    edible      bell      smooth     white     yes
## 2094    edible    convex      smooth     white      no
## 2095    edible      flat     fibrous     brown      no
## 2096    edible    convex       scaly      gray     yes
## 2097    edible      flat     fibrous      gray     yes
## 2098    edible    convex     fibrous      gray      no
## 2099 poisonous    convex      smooth     white     yes
## 2100    edible    convex      smooth     brown      no
## 2101    edible    convex       scaly      gray     yes
## 2102    edible      flat     fibrous      gray     yes
## 2103    edible    convex       scaly     brown     yes
## 2104    edible    convex     fibrous       red     yes
## 2105    edible      flat     fibrous     brown     yes
## 2106    edible    convex     fibrous       red     yes
## 2107    edible      flat     fibrous     brown     yes
## 2108    edible    convex       scaly       red     yes
## 2109    edible    convex     fibrous      gray     yes
## 2110    edible      flat     fibrous      gray     yes
## 2111    edible    convex     fibrous       red     yes
## 2112    edible    convex       scaly       red     yes
## 2113 poisonous    convex      smooth     white     yes
## 2114    edible    convex     fibrous       red     yes
## 2115    edible    convex       scaly      gray     yes
## 2116    edible    convex     fibrous     brown     yes
## 2117    edible    convex       scaly       red     yes
## 2118    edible    convex       scaly      gray     yes
## 2119    edible    convex     fibrous      gray     yes
## 2120    edible    convex       scaly      gray     yes
## 2121    edible    convex     fibrous       red     yes
## 2122    edible      flat       scaly       red     yes
## 2123    edible      flat     fibrous     brown     yes
## 2124    edible    convex     fibrous     brown     yes
## 2125    edible      flat       scaly      gray     yes
## 2126    edible    convex       scaly       red     yes
## 2127    edible    convex     fibrous      gray     yes
## 2128    edible    convex       scaly      gray     yes
## 2129 poisonous    convex     fibrous      gray      no
## 2130 poisonous      flat      smooth     white     yes
## 2131    edible    convex     fibrous       red     yes
## 2132    edible    convex     fibrous     white      no
## 2133    edible    convex       scaly     brown     yes
## 2134    edible      flat     fibrous     brown     yes
## 2135    edible    convex     fibrous     brown     yes
## 2136    edible    convex       scaly      gray     yes
## 2137    edible    convex       scaly      gray     yes
## 2138    edible    convex     fibrous       red     yes
## 2139    edible    convex       scaly     brown     yes
## 2140    edible    convex     fibrous      gray     yes
## 2141    edible    convex     fibrous       red     yes
## 2142    edible    convex       scaly       red     yes
## 2143    edible    convex       scaly     brown     yes
## 2144    edible    convex       scaly       red     yes
## 2145    edible      flat       scaly     brown     yes
## 2146    edible      flat       scaly     brown     yes
## 2147    edible    convex       scaly     brown     yes
## 2148 poisonous      flat      smooth     brown     yes
## 2149    edible      flat     fibrous       red     yes
## 2150 poisonous    convex      smooth     white     yes
## 2151    edible    convex     fibrous       red     yes
## 2152    edible      flat     fibrous     brown     yes
## 2153    edible    convex       scaly     brown     yes
## 2154    edible      flat     fibrous       red     yes
## 2155    edible    convex     fibrous       red     yes
## 2156    edible    convex     fibrous      gray     yes
## 2157    edible    convex       scaly     brown     yes
## 2158    edible      flat     fibrous     brown     yes
## 2159    edible      flat     fibrous     brown     yes
## 2160    edible    convex     fibrous       red     yes
## 2161    edible    convex     fibrous     brown     yes
## 2162    edible    convex     fibrous       red     yes
## 2163    edible      flat     fibrous      gray     yes
## 2164    edible    convex       scaly     brown     yes
## 2165    edible      flat     fibrous     brown     yes
## 2166    edible    convex     fibrous       red     yes
## 2167    edible    convex       scaly       red     yes
## 2168    edible    convex     fibrous      gray     yes
## 2169    edible    convex       scaly      gray     yes
## 2170    edible    convex       scaly       red     yes
## 2171    edible    convex       scaly      gray     yes
## 2172    edible    convex     fibrous      gray     yes
## 2173    edible      flat     fibrous      gray     yes
## 2174    edible    convex       scaly      gray     yes
## 2175    edible    convex       scaly       red     yes
## 2176    edible      flat     fibrous     brown     yes
## 2177    edible      flat     fibrous     brown     yes
## 2178    edible    convex       scaly       red     yes
## 2179 poisonous    convex     fibrous      gray      no
## 2180    edible    convex       scaly      gray     yes
## 2181    edible    convex     fibrous       red     yes
## 2182    edible    convex       scaly     brown     yes
## 2183    edible      flat     fibrous     brown     yes
## 2184    edible    convex       scaly       red     yes
## 2185    edible      flat     fibrous     brown     yes
## 2186    edible      flat       scaly     brown     yes
## 2187    edible      flat     fibrous      gray     yes
## 2188    edible    convex     fibrous       red     yes
## 2189    edible    convex     fibrous      gray     yes
## 2190    edible    convex     fibrous      gray     yes
## 2191    edible    convex     fibrous     brown     yes
## 2192    edible    convex     fibrous      gray     yes
## 2193    edible    convex      smooth      gray      no
## 2194    edible    convex       scaly       red     yes
## 2195    edible      flat     fibrous      gray     yes
## 2196    edible    convex       scaly       red     yes
## 2197    edible      flat     fibrous      gray     yes
## 2198    edible    convex     fibrous      gray     yes
## 2199    edible    convex     fibrous      gray     yes
## 2200    edible      flat     fibrous      gray     yes
## 2201    edible    convex      smooth     white      no
## 2202    edible    convex     fibrous     brown     yes
## 2203    edible      flat     fibrous     brown     yes
## 2204    edible      flat     fibrous      gray     yes
## 2205    edible    convex       scaly      gray     yes
## 2206    edible    convex     fibrous       red     yes
## 2207    edible    convex       scaly       red     yes
## 2208    edible    convex     fibrous     brown     yes
## 2209    edible      flat       scaly      gray     yes
## 2210    edible    convex       scaly      gray     yes
## 2211 poisonous    convex      smooth      pink      no
## 2212    edible    convex       scaly     brown     yes
## 2213    edible      flat     fibrous      gray     yes
## 2214    edible    convex       scaly       red     yes
## 2215    edible      flat     fibrous     brown     yes
## 2216    edible    convex       scaly     brown     yes
## 2217    edible    convex     fibrous      gray     yes
## 2218    edible      flat     fibrous     brown     yes
## 2219    edible    convex       scaly     brown     yes
## 2220    edible    convex       scaly     brown     yes
## 2221    edible    convex     fibrous       red     yes
## 2222    edible      flat     fibrous      gray     yes
## 2223    edible    convex       scaly       red     yes
## 2224    edible    convex       scaly       red     yes
## 2225    edible      flat     fibrous     brown     yes
## 2226    edible    convex     fibrous       red     yes
## 2227    edible    convex     fibrous       red     yes
## 2228    edible    convex     fibrous     white      no
## 2229    edible    convex       scaly      gray     yes
## 2230    edible    convex     fibrous       red     yes
## 2231    edible    convex       scaly      gray     yes
## 2232    edible    convex     fibrous       red     yes
## 2233    edible    convex     fibrous      gray     yes
## 2234    edible      flat       scaly       red     yes
## 2235    edible      flat       scaly      gray     yes
## 2236    edible    convex       scaly       red     yes
## 2237    edible    convex       scaly      gray     yes
## 2238    edible      flat     fibrous      gray      no
## 2239 poisonous    convex     fibrous      gray      no
## 2240    edible    convex     fibrous       red     yes
## 2241    edible    convex       scaly       red     yes
## 2242 poisonous      flat      smooth     white     yes
## 2243    edible      flat       scaly     brown     yes
## 2244    edible    convex     fibrous       red     yes
## 2245    edible    convex       scaly       red     yes
## 2246    edible    convex     fibrous      gray     yes
## 2247    edible    convex       scaly      gray     yes
## 2248    edible    convex     fibrous      gray      no
## 2249    edible    convex     fibrous     brown     yes
## 2250    edible      flat     fibrous       red     yes
## 2251    edible    convex       scaly      gray     yes
## 2252    edible      flat     fibrous     brown     yes
## 2253    edible      flat     fibrous      gray      no
## 2254    edible      flat     fibrous      gray     yes
## 2255    edible    convex       scaly     brown     yes
## 2256    edible      flat     fibrous      gray     yes
## 2257    edible      flat       scaly     brown     yes
## 2258    edible    convex     fibrous      gray     yes
## 2259    edible    convex       scaly       red     yes
## 2260    edible    convex       scaly     brown     yes
## 2261    edible      flat      smooth      gray      no
## 2262    edible    convex     fibrous     brown     yes
## 2263    edible      flat     fibrous     brown     yes
## 2264    edible    convex       scaly       red     yes
## 2265    edible    convex       scaly       red     yes
## 2266    edible    convex       scaly     brown     yes
## 2267    edible      flat      smooth     white      no
## 2268    edible    convex       scaly     brown     yes
## 2269    edible    convex       scaly       red     yes
## 2270    edible    convex     fibrous      gray     yes
## 2271    edible      flat     fibrous      gray     yes
## 2272    edible      flat     fibrous     brown      no
## 2273    edible      flat     fibrous      gray     yes
## 2274    edible    convex       scaly       red     yes
## 2275    edible      flat     fibrous      gray     yes
## 2276    edible    convex       scaly     brown     yes
## 2277    edible    convex     fibrous       red     yes
## 2278    edible    convex     fibrous     brown     yes
## 2279    edible    convex     fibrous      gray     yes
## 2280    edible      flat     fibrous      gray     yes
## 2281    edible    convex     fibrous     brown     yes
## 2282    edible    convex       scaly     brown     yes
## 2283    edible    convex     fibrous       red     yes
## 2284    edible      flat     fibrous      gray     yes
## 2285    edible    convex       scaly     brown     yes
## 2286 poisonous    convex      smooth      pink      no
## 2287    edible      flat       scaly      gray     yes
## 2288    edible      flat     fibrous     brown     yes
## 2289 poisonous      flat      smooth     brown     yes
## 2290    edible    convex       scaly     brown     yes
## 2291    edible    convex       scaly      gray     yes
## 2292    edible    convex       scaly       red     yes
## 2293    edible    convex       scaly       red     yes
## 2294    edible    convex       scaly       red     yes
## 2295    edible    convex     fibrous      gray     yes
## 2296    edible      flat      smooth     white      no
## 2297    edible    convex       scaly      gray     yes
## 2298    edible    convex     fibrous     brown      no
## 2299    edible    convex     fibrous     brown     yes
## 2300    edible    convex       scaly      gray     yes
## 2301    edible    convex       scaly       red     yes
## 2302    edible    convex       scaly     brown     yes
## 2303    edible    convex     fibrous      gray     yes
## 2304    edible    convex     fibrous      gray     yes
## 2305    edible    convex       scaly      gray     yes
## 2306    edible    convex       scaly      gray     yes
## 2307    edible      flat       scaly      gray     yes
## 2308    edible    convex     fibrous       red     yes
## 2309    edible    convex       scaly       red     yes
## 2310    edible    convex     fibrous     brown     yes
## 2311    edible    convex     fibrous     brown     yes
## 2312    edible      flat     fibrous     brown     yes
## 2313    edible      flat     fibrous     brown     yes
## 2314    edible    convex       scaly      gray     yes
## 2315    edible    convex     fibrous       red     yes
## 2316    edible      flat       scaly     brown     yes
## 2317    edible    convex       scaly       red     yes
## 2318    edible      flat       scaly     brown     yes
## 2319    edible    convex       scaly      gray     yes
## 2320    edible      flat     fibrous     brown     yes
## 2321    edible    convex       scaly      gray     yes
## 2322    edible    convex       scaly       red     yes
## 2323    edible    convex       scaly     brown     yes
## 2324    edible    convex     fibrous      gray     yes
## 2325    edible    convex     fibrous       red     yes
## 2326    edible    convex     fibrous     brown     yes
## 2327    edible      flat     fibrous     brown     yes
## 2328    edible      flat       scaly      gray     yes
## 2329    edible    convex     fibrous     brown     yes
## 2330    edible    convex       scaly       red     yes
## 2331    edible      flat     fibrous     brown     yes
## 2332    edible    convex       scaly     brown     yes
## 2333    edible      flat     fibrous     brown     yes
## 2334    edible    convex       scaly       red     yes
## 2335    edible    convex       scaly       red     yes
## 2336    edible    convex     fibrous      gray     yes
## 2337    edible    convex     fibrous      gray     yes
## 2338    edible      flat     fibrous       red     yes
## 2339    edible    convex     fibrous     brown     yes
## 2340    edible    convex       scaly       red     yes
## 2341    edible    convex       scaly      gray     yes
## 2342    edible    convex       scaly      gray     yes
## 2343    edible    convex     fibrous       red     yes
## 2344    edible      flat     fibrous     brown     yes
## 2345    edible    convex       scaly     brown     yes
## 2346    edible    convex       scaly      gray     yes
## 2347    edible    convex     fibrous     white      no
## 2348    edible      flat       scaly      gray     yes
## 2349    edible      flat      smooth      gray      no
## 2350    edible      flat     fibrous     brown     yes
## 2351    edible    convex       scaly       red     yes
## 2352 poisonous      flat       scaly     white     yes
## 2353    edible    convex       scaly      gray     yes
## 2354    edible      flat     fibrous     brown     yes
## 2355    edible    convex     fibrous      gray     yes
## 2356    edible    convex     fibrous       red     yes
## 2357    edible      flat     fibrous      gray     yes
## 2358    edible    convex       scaly     brown     yes
## 2359    edible    convex       scaly       red     yes
## 2360    edible    convex       scaly     brown     yes
## 2361    edible    convex       scaly     brown     yes
## 2362    edible      flat     fibrous     brown     yes
## 2363    edible    convex       scaly      gray     yes
## 2364    edible    convex       scaly     brown     yes
## 2365    edible    convex     fibrous       red     yes
## 2366    edible      flat     fibrous     brown     yes
## 2367    edible    convex     fibrous       red     yes
## 2368    edible      flat      smooth     white      no
## 2369    edible    convex       scaly     brown     yes
## 2370    edible    convex     fibrous      gray     yes
## 2371    edible    convex     fibrous     brown     yes
## 2372    edible    convex     fibrous       red     yes
## 2373    edible      flat     fibrous     brown     yes
## 2374    edible    convex     fibrous     brown     yes
## 2375    edible    convex       scaly     brown     yes
## 2376 poisonous      flat      smooth     white     yes
## 2377    edible    convex     fibrous      gray     yes
## 2378    edible      flat      smooth     white      no
## 2379    edible    convex      smooth      gray      no
## 2380    edible    convex     fibrous      gray     yes
## 2381    edible      flat     fibrous     brown     yes
## 2382    edible    convex     fibrous       red     yes
## 2383    edible    convex       scaly      gray     yes
## 2384    edible      flat     fibrous     brown     yes
## 2385    edible    convex     fibrous     brown     yes
## 2386 poisonous    convex     fibrous      gray      no
## 2387    edible    convex       scaly       red     yes
## 2388    edible    convex     fibrous     brown      no
## 2389 poisonous    convex      smooth     white     yes
## 2390    edible    convex       scaly      gray     yes
## 2391    edible      flat     fibrous     brown     yes
## 2392    edible    convex     fibrous     brown     yes
## 2393    edible    convex       scaly      gray     yes
## 2394    edible    convex       scaly      gray     yes
## 2395    edible      flat     fibrous     brown     yes
## 2396    edible      flat     fibrous     brown     yes
## 2397    edible    convex     fibrous      gray     yes
## 2398    edible      flat     fibrous      gray     yes
## 2399    edible    convex       scaly       red     yes
## 2400    edible    convex     fibrous       red     yes
## 2401 poisonous    convex      smooth     white     yes
## 2402    edible      flat     fibrous      gray     yes
## 2403    edible    convex     fibrous      gray     yes
## 2404    edible      flat       scaly       red     yes
## 2405    edible      flat       scaly      gray     yes
## 2406    edible    convex       scaly     brown     yes
## 2407    edible    convex       scaly       red     yes
## 2408    edible    convex     fibrous       red     yes
## 2409    edible    convex       scaly       red     yes
## 2410    edible      flat     fibrous      gray     yes
## 2411    edible    convex     fibrous      gray     yes
## 2412    edible      flat     fibrous     brown     yes
## 2413    edible    convex       scaly     brown     yes
## 2414    edible    convex       scaly      gray     yes
## 2415    edible    convex     fibrous      gray     yes
## 2416    edible    convex       scaly     brown     yes
## 2417    edible      flat     fibrous     brown     yes
## 2418    edible    convex       scaly     brown     yes
## 2419    edible    convex       scaly     brown     yes
## 2420    edible      flat     fibrous     brown     yes
## 2421    edible    convex     fibrous     brown     yes
## 2422    edible    convex     fibrous     brown     yes
## 2423    edible    convex       scaly     brown     yes
## 2424    edible      flat     fibrous      gray     yes
## 2425    edible    convex     fibrous       red     yes
## 2426    edible      flat     fibrous     brown     yes
## 2427 poisonous    convex      smooth      pink      no
## 2428    edible    convex     fibrous       red     yes
## 2429    edible      flat     fibrous     brown     yes
## 2430    edible    convex     fibrous     brown     yes
## 2431    edible      flat     fibrous       red     yes
## 2432    edible    convex       scaly       red     yes
## 2433    edible    convex     fibrous      gray     yes
## 2434    edible    convex     fibrous      gray     yes
## 2435    edible    convex     fibrous      gray     yes
## 2436    edible    convex     fibrous      gray     yes
## 2437    edible      flat     fibrous      gray     yes
## 2438    edible    convex     fibrous       red     yes
## 2439    edible      flat       scaly     brown     yes
## 2440    edible      flat       scaly       red     yes
## 2441    edible    convex       scaly      gray     yes
## 2442    edible    convex       scaly      gray     yes
## 2443    edible    convex     fibrous      gray     yes
## 2444 poisonous    convex     fibrous      gray      no
## 2445    edible    convex       scaly     brown     yes
## 2446    edible    convex       scaly       red     yes
## 2447    edible    convex     fibrous     brown     yes
## 2448    edible      flat     fibrous     brown     yes
## 2449    edible      flat     fibrous     brown     yes
## 2450    edible      flat     fibrous      gray     yes
## 2451    edible      flat     fibrous      gray     yes
## 2452    edible    convex       scaly      gray     yes
## 2453    edible    convex     fibrous      gray      no
## 2454    edible    convex       scaly      gray     yes
## 2455    edible    convex     fibrous       red     yes
## 2456    edible      flat     fibrous     brown     yes
## 2457    edible    convex       scaly       red     yes
## 2458    edible    convex     fibrous      gray     yes
## 2459    edible    convex     fibrous     brown     yes
## 2460    edible    convex       scaly       red     yes
## 2461    edible    convex     fibrous     brown     yes
## 2462    edible      flat     fibrous      gray     yes
## 2463    edible    convex       scaly      gray     yes
## 2464    edible    convex       scaly      gray     yes
## 2465    edible      flat     fibrous     brown     yes
## 2466    edible    convex     fibrous      gray     yes
## 2467    edible      flat     fibrous     brown     yes
## 2468    edible    convex       scaly       red     yes
## 2469    edible    convex     fibrous     brown     yes
## 2470    edible    convex       scaly      gray     yes
## 2471    edible      flat     fibrous      gray     yes
## 2472    edible    convex     fibrous      gray     yes
## 2473    edible    convex     fibrous     brown     yes
## 2474    edible    convex       scaly      gray     yes
## 2475    edible    convex       scaly      gray     yes
## 2476    edible    convex       scaly       red     yes
## 2477    edible    convex       scaly     brown     yes
## 2478    edible    convex       scaly      gray     yes
## 2479 poisonous      flat       scaly     brown     yes
## 2480    edible    convex      smooth      gray      no
## 2481    edible    convex     fibrous      gray     yes
## 2482    edible    convex     fibrous       red     yes
## 2483 poisonous    convex      smooth      pink      no
## 2484    edible    convex       scaly     brown     yes
## 2485    edible    convex     fibrous       red     yes
## 2486    edible    convex       scaly     brown     yes
## 2487    edible    convex       scaly       red     yes
## 2488    edible    convex      smooth     white      no
## 2489    edible      flat     fibrous      gray     yes
## 2490    edible    convex       scaly      gray     yes
## 2491    edible    convex       scaly      gray     yes
## 2492    edible    convex     fibrous       red     yes
## 2493    edible    convex       scaly      gray     yes
## 2494    edible    convex       scaly      gray     yes
## 2495    edible    convex     fibrous       red     yes
## 2496 poisonous      flat       scaly     white     yes
## 2497    edible      flat     fibrous     brown     yes
## 2498    edible    convex     fibrous       red     yes
## 2499    edible    convex     fibrous       red     yes
## 2500    edible    convex       scaly      gray     yes
## 2501    edible      flat      smooth     white      no
## 2502    edible    convex     fibrous     brown      no
## 2503    edible    convex     fibrous     brown     yes
## 2504    edible      flat     fibrous     brown     yes
## 2505    edible    convex       scaly       red     yes
## 2506    edible    convex       scaly       red     yes
## 2507    edible    convex       scaly       red     yes
## 2508    edible      flat     fibrous     brown     yes
## 2509    edible    convex     fibrous      gray     yes
## 2510    edible      flat     fibrous     brown     yes
## 2511    edible      flat     fibrous       red     yes
## 2512    edible    convex       scaly       red     yes
## 2513 poisonous    convex      smooth     white      no
## 2514    edible      flat     fibrous     brown     yes
## 2515    edible      flat     fibrous      gray     yes
## 2516    edible      flat     fibrous     brown     yes
## 2517    edible    convex       scaly     brown     yes
## 2518    edible    convex     fibrous       red     yes
## 2519    edible      flat      smooth     white      no
## 2520    edible    convex       scaly      gray     yes
## 2521    edible    convex     fibrous       red     yes
## 2522    edible      flat     fibrous     brown     yes
## 2523    edible      flat     fibrous     brown     yes
## 2524    edible    convex       scaly     brown     yes
## 2525    edible    convex       scaly      gray     yes
## 2526    edible    convex       scaly     brown     yes
## 2527    edible    convex     fibrous      gray     yes
## 2528    edible    convex       scaly     brown     yes
## 2529    edible    convex       scaly     brown     yes
## 2530    edible      flat     fibrous     brown     yes
## 2531    edible    convex       scaly      gray     yes
## 2532    edible    convex       scaly       red     yes
## 2533    edible    convex       scaly     brown     yes
## 2534 poisonous    convex     fibrous      gray      no
## 2535    edible      flat     fibrous      gray     yes
## 2536    edible    convex       scaly       red     yes
## 2537 poisonous    convex     fibrous      gray      no
## 2538    edible    convex       scaly       red     yes
## 2539    edible    convex     fibrous       red     yes
## 2540 poisonous    convex     fibrous      gray      no
## 2541 poisonous    convex     fibrous      pink      no
## 2542    edible    convex     fibrous      gray     yes
## 2543    edible      flat     fibrous      gray     yes
## 2544    edible    convex     fibrous      gray     yes
## 2545    edible    convex       scaly      gray     yes
## 2546    edible    convex       scaly      gray     yes
## 2547    edible      flat     fibrous      gray     yes
## 2548    edible    convex     fibrous      gray     yes
## 2549    edible    convex     fibrous       red     yes
## 2550    edible    convex     fibrous     brown     yes
## 2551    edible    convex       scaly     brown     yes
## 2552    edible      flat     fibrous     brown     yes
## 2553    edible      flat     fibrous     brown     yes
## 2554    edible      flat     fibrous      gray     yes
## 2555    edible    convex     fibrous      gray     yes
## 2556    edible    convex       scaly     brown     yes
## 2557    edible    convex       scaly       red     yes
## 2558    edible      flat     fibrous     brown     yes
## 2559    edible    convex       scaly      gray     yes
## 2560    edible    convex       scaly     brown     yes
## 2561 poisonous    convex     fibrous     white      no
## 2562    edible      flat     fibrous     brown     yes
## 2563    edible    convex       scaly       red     yes
## 2564    edible    convex       scaly     brown     yes
## 2565    edible      flat     fibrous      gray     yes
## 2566    edible    convex     fibrous       red     yes
## 2567 poisonous    convex     fibrous      gray      no
## 2568    edible    convex       scaly       red     yes
## 2569    edible      flat     fibrous      gray     yes
## 2570    edible      flat       scaly       red     yes
## 2571    edible    convex     fibrous       red     yes
## 2572 poisonous    convex     fibrous      gray      no
## 2573    edible    convex       scaly     brown     yes
## 2574    edible    convex       scaly     brown     yes
## 2575    edible    convex       scaly     brown     yes
## 2576    edible    convex       scaly     brown     yes
## 2577    edible    convex       scaly      gray     yes
## 2578    edible    convex       scaly     brown     yes
## 2579    edible    convex     fibrous      gray     yes
## 2580    edible    convex       scaly       red     yes
## 2581    edible    convex       scaly       red     yes
## 2582    edible    convex       scaly      gray     yes
## 2583    edible      flat     fibrous       red     yes
## 2584    edible      flat     fibrous     brown     yes
## 2585    edible      flat     fibrous     brown     yes
## 2586    edible    convex       scaly      gray     yes
## 2587    edible    convex       scaly      gray     yes
## 2588    edible    convex     fibrous       red     yes
## 2589    edible      flat     fibrous     brown     yes
## 2590    edible      flat     fibrous     brown     yes
## 2591    edible    convex       scaly       red     yes
## 2592    edible    convex       scaly     brown     yes
## 2593    edible      flat     fibrous     brown     yes
## 2594    edible      flat     fibrous     brown     yes
## 2595 poisonous    convex     fibrous      gray      no
## 2596    edible    convex     fibrous      gray     yes
## 2597    edible    convex       scaly     brown     yes
## 2598    edible    convex     fibrous      gray     yes
## 2599    edible    convex     fibrous      gray     yes
## 2600    edible    convex       scaly      gray     yes
## 2601    edible      flat     fibrous     brown     yes
## 2602    edible      flat     fibrous      gray     yes
## 2603    edible    convex       scaly     brown     yes
## 2604    edible    convex     fibrous       red     yes
## 2605    edible      flat     fibrous     brown     yes
## 2606 poisonous    convex     fibrous      gray      no
## 2607    edible    convex     fibrous       red     yes
## 2608    edible      flat     fibrous     brown     yes
## 2609    edible    convex     fibrous       red     yes
## 2610    edible    convex     fibrous       red     yes
## 2611    edible    convex       scaly       red     yes
## 2612    edible      flat       scaly      gray     yes
## 2613    edible      flat     fibrous     brown     yes
## 2614    edible    convex     fibrous      gray     yes
## 2615    edible      flat     fibrous      gray     yes
## 2616    edible    convex       scaly     brown     yes
## 2617    edible    convex       scaly      gray     yes
## 2618    edible    convex       scaly      gray     yes
## 2619    edible    convex     fibrous     brown     yes
## 2620    edible    convex       scaly       red     yes
## 2621    edible      flat     fibrous     brown     yes
## 2622    edible    convex       scaly       red     yes
## 2623    edible    convex     fibrous     brown     yes
## 2624    edible      flat     fibrous     brown     yes
## 2625    edible    convex       scaly       red     yes
## 2626    edible    convex     fibrous      gray     yes
## 2627    edible    convex       scaly     brown     yes
## 2628 poisonous    convex     fibrous      gray      no
## 2629    edible      flat     fibrous      gray     yes
## 2630    edible    convex     fibrous     brown     yes
## 2631    edible      flat      smooth     brown      no
## 2632    edible      flat     fibrous     brown     yes
## 2633    edible    convex       scaly      gray     yes
## 2634    edible      flat       scaly      gray     yes
## 2635    edible    convex       scaly      gray     yes
## 2636    edible      flat       scaly       red     yes
## 2637    edible    convex       scaly      gray     yes
## 2638    edible    convex     fibrous      gray     yes
## 2639    edible      flat     fibrous      gray     yes
## 2640    edible    convex       scaly     brown     yes
## 2641    edible      flat     fibrous     brown     yes
## 2642    edible    convex       scaly       red     yes
## 2643    edible    convex       scaly       red     yes
## 2644    edible      flat       scaly     brown     yes
## 2645    edible    convex       scaly     brown     yes
## 2646    edible    convex     fibrous      gray     yes
## 2647    edible      flat     fibrous      gray     yes
## 2648    edible      flat     fibrous     white      no
## 2649    edible    convex       scaly     brown     yes
## 2650    edible    convex     fibrous      gray     yes
## 2651    edible      flat       scaly       red     yes
## 2652    edible    convex     fibrous       red     yes
## 2653    edible    convex       scaly     brown     yes
## 2654    edible      flat       scaly     brown     yes
## 2655    edible    convex       scaly      gray     yes
## 2656    edible      flat     fibrous     brown     yes
## 2657    edible    convex       scaly       red     yes
## 2658    edible    convex       scaly       red     yes
## 2659    edible    convex       scaly       red     yes
## 2660    edible    convex     fibrous       red     yes
## 2661    edible    convex     fibrous       red     yes
## 2662    edible    convex     fibrous       red     yes
## 2663    edible      flat     fibrous     brown     yes
## 2664    edible    convex     fibrous      gray     yes
## 2665    edible    convex     fibrous      gray     yes
## 2666    edible    convex       scaly      gray     yes
## 2667    edible    convex       scaly     brown     yes
## 2668    edible    convex     fibrous       red     yes
## 2669    edible    convex     fibrous       red     yes
## 2670    edible    convex     fibrous      gray     yes
## 2671    edible    convex     fibrous       red     yes
## 2672    edible      flat     fibrous     brown     yes
## 2673    edible    convex     fibrous       red     yes
## 2674    edible      flat     fibrous     brown     yes
## 2675    edible      flat     fibrous     brown     yes
## 2676    edible      flat     fibrous     brown     yes
## 2677    edible    convex     fibrous      gray     yes
## 2678    edible    convex     fibrous       red     yes
## 2679    edible    convex       scaly       red     yes
## 2680    edible      flat     fibrous      gray     yes
## 2681    edible      flat     fibrous     brown     yes
## 2682    edible    convex       scaly     brown     yes
## 2683    edible      flat     fibrous     brown     yes
## 2684 poisonous    convex     fibrous      pink      no
## 2685    edible    convex     fibrous       red     yes
## 2686    edible    convex     fibrous     brown     yes
## 2687    edible    convex       scaly       red     yes
## 2688    edible      flat     fibrous     brown     yes
## 2689    edible      flat     fibrous     brown     yes
## 2690    edible    convex       scaly      gray     yes
## 2691    edible      flat      smooth     brown      no
## 2692    edible    convex       scaly      gray     yes
## 2693    edible    convex       scaly     brown     yes
## 2694    edible    convex       scaly     brown     yes
## 2695    edible      flat     fibrous      gray     yes
## 2696    edible    convex     fibrous       red     yes
## 2697    edible      flat     fibrous     brown     yes
## 2698 poisonous    convex     fibrous      gray      no
## 2699    edible    convex       scaly       red     yes
## 2700    edible    convex     fibrous      gray     yes
## 2701    edible    convex     fibrous       red     yes
## 2702    edible    convex     fibrous       red     yes
## 2703    edible    convex       scaly       red     yes
## 2704    edible      flat     fibrous     brown     yes
## 2705    edible      flat     fibrous     brown     yes
## 2706    edible    convex       scaly     brown     yes
## 2707    edible    convex     fibrous       red     yes
## 2708    edible    convex       scaly       red     yes
## 2709    edible    convex       scaly     brown     yes
## 2710    edible    convex       scaly      gray     yes
## 2711    edible    convex       scaly     brown     yes
## 2712    edible    convex       scaly       red     yes
## 2713    edible    convex     fibrous       red     yes
## 2714    edible    convex     fibrous       red     yes
## 2715    edible    convex       scaly       red     yes
## 2716    edible    convex       scaly     brown     yes
## 2717    edible    convex     fibrous       red     yes
## 2718    edible      flat     fibrous       red     yes
## 2719    edible      flat     fibrous     brown     yes
## 2720    edible    convex       scaly       red     yes
## 2721    edible    convex     fibrous     brown     yes
## 2722    edible    convex       scaly       red     yes
## 2723    edible      flat     fibrous      gray     yes
## 2724    edible    convex       scaly     brown     yes
## 2725    edible      flat       scaly       red     yes
## 2726    edible    convex       scaly     brown     yes
## 2727    edible    convex       scaly       red     yes
## 2728    edible    convex       scaly      gray     yes
## 2729    edible      flat       scaly      gray     yes
## 2730    edible    convex       scaly     brown     yes
## 2731    edible    convex      smooth      gray      no
## 2732    edible      flat     fibrous     brown     yes
## 2733    edible    convex       scaly      gray     yes
## 2734    edible    convex       scaly      gray     yes
## 2735    edible    convex     fibrous     brown     yes
## 2736    edible    convex     fibrous       red     yes
## 2737    edible    convex       scaly       red     yes
## 2738    edible    convex       scaly     brown     yes
## 2739    edible    convex     fibrous       red     yes
## 2740    edible    convex       scaly       red     yes
## 2741    edible    convex       scaly     brown     yes
## 2742    edible      flat     fibrous      gray     yes
## 2743    edible    convex     fibrous       red     yes
## 2744    edible      flat       scaly     brown     yes
## 2745    edible    convex       scaly     brown     yes
## 2746    edible    convex     fibrous       red     yes
## 2747    edible    convex     fibrous      gray     yes
## 2748    edible    convex       scaly     brown     yes
## 2749    edible    convex       scaly      gray     yes
## 2750 poisonous    convex     fibrous      gray      no
## 2751    edible    convex       scaly     brown     yes
## 2752    edible    convex     fibrous      gray     yes
## 2753    edible    convex       scaly     brown     yes
## 2754    edible    convex       scaly      gray     yes
## 2755    edible    convex       scaly     brown     yes
## 2756    edible      flat     fibrous     brown     yes
## 2757    edible      flat     fibrous     brown     yes
## 2758    edible    convex       scaly     brown     yes
## 2759    edible      flat     fibrous     brown     yes
## 2760    edible      flat     fibrous     brown     yes
## 2761    edible      flat       scaly      gray     yes
## 2762    edible    convex     fibrous      gray     yes
## 2763    edible    convex       scaly      gray     yes
## 2764    edible    convex       scaly      gray     yes
## 2765    edible      flat     fibrous     brown     yes
## 2766    edible    convex     fibrous      gray     yes
## 2767 poisonous    convex     fibrous      gray      no
## 2768    edible      flat     fibrous     brown     yes
## 2769    edible    convex       scaly      gray     yes
## 2770    edible    convex     fibrous      gray     yes
## 2771 poisonous    convex     fibrous      gray      no
## 2772    edible      flat     fibrous     brown     yes
## 2773    edible    convex       scaly       red     yes
## 2774    edible    convex       scaly     brown     yes
## 2775    edible    convex     fibrous       red     yes
## 2776    edible    convex     fibrous       red     yes
## 2777    edible    convex       scaly     brown     yes
## 2778    edible      flat     fibrous     brown     yes
## 2779    edible    convex     fibrous       red     yes
## 2780    edible    convex     fibrous      gray     yes
## 2781    edible      flat     fibrous     brown     yes
## 2782    edible    convex       scaly       red     yes
## 2783    edible    convex     fibrous      gray     yes
## 2784    edible      flat     fibrous      gray     yes
## 2785    edible      flat     fibrous      gray     yes
## 2786    edible      flat     fibrous     brown     yes
## 2787    edible    convex     fibrous     brown     yes
## 2788    edible    convex       scaly       red     yes
## 2789    edible      flat      smooth      gray      no
## 2790    edible    convex       scaly       red     yes
## 2791    edible      flat     fibrous      gray     yes
## 2792    edible    convex       scaly       red     yes
## 2793    edible    convex     fibrous      gray     yes
## 2794    edible      flat     fibrous     brown     yes
## 2795    edible    convex     fibrous       red     yes
## 2796    edible    convex     fibrous       red     yes
## 2797    edible    convex     fibrous      gray     yes
## 2798 poisonous    convex     fibrous     white      no
## 2799    edible    convex       scaly       red     yes
## 2800    edible    convex     fibrous       red     yes
## 2801    edible    convex       scaly     brown     yes
## 2802    edible      flat     fibrous     white      no
## 2803    edible    convex     fibrous      gray     yes
## 2804    edible      flat     fibrous      gray     yes
## 2805    edible    convex     fibrous      gray     yes
## 2806    edible      flat       scaly       red     yes
## 2807    edible    convex     fibrous       red     yes
## 2808    edible    convex       scaly     brown     yes
## 2809    edible    convex       scaly       red     yes
## 2810    edible    convex     fibrous       red     yes
## 2811    edible      flat       scaly       red     yes
## 2812    edible      flat     fibrous     brown     yes
## 2813    edible    convex       scaly      gray     yes
## 2814    edible    convex       scaly      gray     yes
## 2815    edible    convex     fibrous      gray     yes
## 2816    edible    convex     fibrous       red     yes
## 2817    edible    convex     fibrous     brown     yes
## 2818    edible      flat     fibrous     brown      no
## 2819    edible    convex     fibrous       red     yes
## 2820    edible    convex       scaly      gray     yes
## 2821    edible    convex       scaly     brown     yes
## 2822    edible    convex     fibrous      gray     yes
## 2823    edible    convex       scaly       red     yes
## 2824    edible      flat     fibrous     brown     yes
## 2825    edible    convex       scaly      gray     yes
## 2826    edible      flat     fibrous      gray     yes
## 2827    edible    convex     fibrous       red     yes
## 2828    edible      flat     fibrous     brown     yes
## 2829    edible    convex       scaly      gray     yes
## 2830    edible    convex       scaly     brown     yes
## 2831    edible    convex       scaly       red     yes
## 2832    edible    convex     fibrous       red     yes
## 2833    edible    convex     fibrous     brown     yes
## 2834    edible      flat     fibrous     brown     yes
## 2835    edible    convex       scaly      gray     yes
## 2836    edible    convex     fibrous       red     yes
## 2837    edible      flat     fibrous     brown     yes
## 2838    edible      flat     fibrous     brown     yes
## 2839    edible    convex       scaly       red     yes
## 2840    edible    convex     fibrous      gray     yes
## 2841    edible    convex     fibrous      gray     yes
## 2842 poisonous    convex     fibrous      pink      no
## 2843    edible    convex       scaly     brown     yes
## 2844    edible    convex     fibrous       red     yes
## 2845    edible      flat      smooth     brown      no
## 2846    edible    convex       scaly      gray     yes
## 2847    edible    convex       scaly      gray     yes
## 2848    edible    convex     fibrous     brown     yes
## 2849    edible      flat     fibrous      gray     yes
## 2850    edible    convex     fibrous      gray     yes
## 2851    edible    convex       scaly     brown     yes
## 2852    edible    convex     fibrous       red     yes
## 2853    edible    convex     fibrous     brown     yes
## 2854    edible      flat     fibrous      gray     yes
## 2855    edible      flat     fibrous     brown     yes
## 2856    edible    convex       scaly      gray     yes
## 2857    edible    convex       scaly       red     yes
## 2858    edible    convex       scaly      gray     yes
## 2859    edible      flat     fibrous      gray     yes
## 2860    edible    convex     fibrous       red     yes
## 2861 poisonous    convex      smooth      pink      no
## 2862    edible      flat       scaly     brown     yes
## 2863    edible    convex       scaly       red     yes
## 2864    edible    convex       scaly      gray     yes
## 2865    edible    convex       scaly      gray     yes
## 2866    edible    convex     fibrous      gray     yes
## 2867    edible    convex     fibrous       red     yes
## 2868    edible    convex       scaly     brown     yes
## 2869    edible    convex       scaly      gray     yes
## 2870    edible    convex       scaly       red     yes
## 2871    edible    convex       scaly     brown     yes
## 2872    edible    convex       scaly      gray     yes
## 2873    edible    convex       scaly     brown     yes
## 2874    edible    convex     fibrous       red     yes
## 2875    edible    convex     fibrous       red     yes
## 2876    edible    convex       scaly      gray     yes
## 2877    edible      flat     fibrous      gray     yes
## 2878    edible      flat     fibrous       red     yes
## 2879    edible      flat     fibrous      gray     yes
## 2880    edible    convex       scaly       red     yes
## 2881    edible    convex       scaly       red     yes
## 2882    edible    convex      smooth     white      no
## 2883    edible    convex       scaly     brown     yes
## 2884    edible    convex       scaly       red     yes
## 2885    edible      flat     fibrous       red     yes
## 2886    edible    convex     fibrous      gray     yes
## 2887    edible      flat     fibrous     brown     yes
## 2888 poisonous    convex      smooth      gray      no
## 2889    edible      flat       scaly       red     yes
## 2890    edible    convex       scaly      gray     yes
## 2891    edible    convex     fibrous     brown      no
## 2892    edible    convex       scaly       red     yes
## 2893 poisonous    convex     fibrous     white      no
## 2894    edible    convex       scaly       red     yes
## 2895    edible      flat     fibrous      gray     yes
## 2896    edible      flat     fibrous     brown     yes
## 2897    edible    convex       scaly     brown     yes
## 2898    edible      flat     fibrous     brown     yes
## 2899    edible    convex     fibrous      gray     yes
## 2900    edible      flat       scaly     brown     yes
## 2901    edible    convex       scaly      gray     yes
## 2902    edible      flat       scaly     brown     yes
## 2903    edible    convex     fibrous      gray     yes
## 2904 poisonous    convex     fibrous      gray      no
## 2905    edible    convex       scaly      gray     yes
## 2906    edible    convex       scaly      gray     yes
## 2907    edible    convex     fibrous      gray     yes
## 2908    edible    convex     fibrous       red     yes
## 2909    edible    convex     fibrous      gray     yes
## 2910    edible    convex     fibrous      gray     yes
## 2911    edible      flat     fibrous      gray     yes
## 2912    edible    convex       scaly       red     yes
## 2913    edible    convex     fibrous      gray     yes
## 2914    edible    convex       scaly       red     yes
## 2915    edible    convex     fibrous     brown     yes
## 2916    edible    convex       scaly      gray     yes
## 2917    edible    convex       scaly       red     yes
## 2918    edible      flat     fibrous     brown     yes
## 2919    edible    convex     fibrous       red     yes
## 2920    edible      flat       scaly     brown     yes
## 2921    edible    convex       scaly     brown     yes
## 2922    edible    convex       scaly      gray     yes
## 2923    edible      flat     fibrous       red     yes
## 2924    edible    convex     fibrous      gray     yes
## 2925    edible    convex       scaly      gray     yes
## 2926    edible    convex       scaly      gray     yes
## 2927 poisonous    convex     fibrous      gray      no
## 2928    edible    convex     fibrous      gray     yes
## 2929    edible    convex     fibrous      gray     yes
## 2930    edible    convex     fibrous     brown     yes
## 2931    edible    convex     fibrous      gray     yes
## 2932    edible      flat     fibrous     brown     yes
## 2933    edible    convex       scaly     brown     yes
## 2934    edible    convex     fibrous       red     yes
## 2935    edible    convex       scaly     brown     yes
## 2936    edible      flat       scaly      gray     yes
## 2937    edible      flat     fibrous      gray     yes
## 2938 poisonous    convex     fibrous      gray      no
## 2939    edible    convex     fibrous     brown     yes
## 2940    edible    convex       scaly     brown     yes
## 2941    edible    convex     fibrous       red     yes
## 2942    edible    convex     fibrous     brown     yes
## 2943    edible      flat     fibrous     brown     yes
## 2944    edible    convex       scaly      gray     yes
## 2945    edible    convex       scaly     brown     yes
## 2946    edible    convex       scaly       red     yes
## 2947    edible      flat     fibrous      gray     yes
## 2948    edible    convex     fibrous      gray     yes
## 2949    edible    convex       scaly       red     yes
## 2950    edible    convex       scaly       red     yes
## 2951    edible    convex     fibrous      gray     yes
## 2952    edible    convex       scaly     brown     yes
## 2953    edible    convex     fibrous       red     yes
## 2954    edible      flat     fibrous     brown     yes
## 2955    edible    convex     fibrous       red     yes
## 2956    edible      flat     fibrous     brown     yes
## 2957    edible    convex       scaly       red     yes
## 2958    edible    convex     fibrous     brown     yes
## 2959    edible    convex     fibrous       red     yes
## 2960    edible    convex     fibrous       red     yes
## 2961    edible    convex     fibrous     brown     yes
## 2962    edible    convex       scaly     brown     yes
## 2963    edible    convex       scaly       red     yes
## 2964    edible      flat     fibrous     brown     yes
## 2965    edible    convex       scaly     brown     yes
## 2966    edible    convex       scaly       red     yes
## 2967    edible      flat     fibrous      gray      no
## 2968    edible    convex       scaly       red     yes
## 2969    edible    convex       scaly       red     yes
## 2970    edible      flat     fibrous     brown     yes
## 2971    edible      flat     fibrous     brown     yes
## 2972    edible    convex     fibrous      gray     yes
## 2973    edible    convex       scaly      gray     yes
## 2974    edible    convex     fibrous     brown     yes
## 2975    edible      flat     fibrous     brown     yes
## 2976    edible    convex       scaly     brown     yes
## 2977    edible    convex       scaly      gray     yes
## 2978    edible    convex     fibrous      gray     yes
## 2979    edible    convex       scaly       red     yes
## 2980    edible    convex     fibrous      gray     yes
## 2981    edible    convex       scaly       red     yes
## 2982    edible    convex     fibrous      gray     yes
## 2983    edible    convex     fibrous       red     yes
## 2984    edible    convex     fibrous       red     yes
## 2985    edible    convex     fibrous       red     yes
## 2986    edible      flat       scaly      gray     yes
## 2987    edible    convex     fibrous      gray     yes
## 2988    edible    convex     fibrous       red     yes
## 2989    edible    convex     fibrous      gray     yes
## 2990    edible      flat     fibrous     brown     yes
## 2991 poisonous    convex     fibrous      gray      no
## 2992    edible    convex     fibrous     brown     yes
## 2993    edible    convex       scaly      gray     yes
## 2994    edible      flat     fibrous     brown     yes
## 2995    edible    convex     fibrous       red     yes
## 2996    edible      flat     fibrous      gray     yes
## 2997    edible    convex       scaly     brown     yes
## 2998    edible    convex       scaly       red     yes
## 2999    edible    convex       scaly       red     yes
## 3000    edible    convex       scaly     brown     yes
print(df_new_fungus[3001:4000, ])
##            eat cap_shape cap_surface cap_color bruises
## 3001    edible    convex       scaly     brown     yes
## 3002 poisonous    convex       scaly    yellow      no
## 3003    edible      flat       scaly     brown     yes
## 3004 poisonous    convex     fibrous      gray      no
## 3005 poisonous    convex     fibrous      gray      no
## 3006    edible      flat     fibrous      gray     yes
## 3007    edible      flat     fibrous       red     yes
## 3008    edible      flat       scaly     brown     yes
## 3009    edible      flat     fibrous       red     yes
## 3010 poisonous    convex     fibrous      gray      no
## 3011    edible      flat     fibrous      gray     yes
## 3012    edible      flat       scaly       red     yes
## 3013    edible      flat       scaly       red     yes
## 3014 poisonous    convex     fibrous     white      no
## 3015    edible    convex     fibrous       red     yes
## 3016    edible      flat       scaly     brown     yes
## 3017 poisonous    convex     fibrous      gray      no
## 3018 poisonous    convex     fibrous      gray      no
## 3019    edible      flat       scaly       red     yes
## 3020    edible      flat       scaly       red     yes
## 3021    edible      flat     fibrous     brown     yes
## 3022    edible      flat     fibrous      gray     yes
## 3023    edible      flat     fibrous       red     yes
## 3024    edible      flat       scaly       red     yes
## 3025    edible      flat       scaly       red     yes
## 3026    edible      flat       scaly       red     yes
## 3027 poisonous    convex     fibrous      pink      no
## 3028 poisonous    convex     fibrous      gray      no
## 3029    edible      flat     fibrous       red     yes
## 3030    edible      flat       scaly      gray     yes
## 3031    edible      flat       scaly      gray     yes
## 3032    edible      flat     fibrous      gray     yes
## 3033    edible      flat     fibrous       red     yes
## 3034    edible      flat       scaly       red     yes
## 3035 poisonous      flat     fibrous      gray      no
## 3036    edible      flat       scaly     brown     yes
## 3037    edible      flat       scaly       red     yes
## 3038 poisonous    convex     fibrous      gray      no
## 3039    edible      flat     fibrous       red     yes
## 3040    edible      flat       scaly       red     yes
## 3041 poisonous    convex       scaly    yellow      no
## 3042 poisonous      flat     fibrous    yellow      no
## 3043    edible      flat       scaly     brown     yes
## 3044    edible      flat       scaly     brown     yes
## 3045    edible      flat       scaly      gray     yes
## 3046    edible      flat       scaly     brown     yes
## 3047    edible    convex       scaly       red     yes
## 3048 poisonous    convex      smooth      pink      no
## 3049    edible      flat       scaly     brown     yes
## 3050    edible    convex       scaly       red     yes
## 3051    edible      flat     fibrous       red     yes
## 3052    edible      flat       scaly     brown     yes
## 3053 poisonous    convex      smooth     white      no
## 3054    edible      flat     fibrous      gray     yes
## 3055    edible      flat       scaly      gray     yes
## 3056    edible      flat       scaly      gray     yes
## 3057    edible      flat       scaly     brown     yes
## 3058 poisonous    convex      smooth      gray      no
## 3059 poisonous    convex     fibrous      pink      no
## 3060    edible      flat       scaly       red     yes
## 3061 poisonous    convex     fibrous      gray      no
## 3062 poisonous    convex      smooth     white      no
## 3063 poisonous    convex     fibrous      gray      no
## 3064    edible      flat       scaly     brown     yes
## 3065 poisonous    convex       scaly    yellow      no
## 3066    edible      flat       scaly      gray     yes
## 3067    edible      flat       scaly     brown     yes
## 3068    edible      flat       scaly      gray     yes
## 3069 poisonous    convex      smooth     white      no
## 3070 poisonous    convex     fibrous      gray      no
## 3071    edible      flat       scaly      gray     yes
## 3072    edible    convex       scaly     brown     yes
## 3073    edible      flat       scaly      gray     yes
## 3074 poisonous    convex     fibrous      gray      no
## 3075    edible      flat       scaly     brown     yes
## 3076 poisonous      flat     fibrous      gray      no
## 3077    edible      flat     fibrous       red     yes
## 3078    edible    convex     fibrous     brown     yes
## 3079 poisonous      flat     fibrous      gray      no
## 3080    edible      flat       scaly      gray     yes
## 3081    edible      flat       scaly      gray     yes
## 3082    edible      flat       scaly       red     yes
## 3083 poisonous    convex     fibrous      gray      no
## 3084    edible      flat     fibrous       red     yes
## 3085    edible      flat       scaly     brown     yes
## 3086 poisonous    convex     fibrous      gray      no
## 3087    edible      flat       scaly       red     yes
## 3088 poisonous    convex     fibrous      gray      no
## 3089    edible      flat       scaly       red     yes
## 3090 poisonous    convex     fibrous      gray      no
## 3091 poisonous    convex     fibrous      gray      no
## 3092 poisonous    convex     fibrous      gray      no
## 3093    edible      flat       scaly       red     yes
## 3094 poisonous    convex     fibrous      gray      no
## 3095    edible      flat     fibrous       red     yes
## 3096 poisonous    convex      smooth      gray      no
## 3097    edible      flat       scaly      gray     yes
## 3098 poisonous    convex      smooth      pink      no
## 3099    edible      flat     fibrous       red     yes
## 3100    edible      flat     fibrous       red     yes
## 3101    edible      flat       scaly       red     yes
## 3102    edible      flat       scaly     brown     yes
## 3103 poisonous    convex     fibrous      gray      no
## 3104 poisonous      flat     fibrous    yellow      no
## 3105 poisonous    convex      smooth      gray      no
## 3106    edible      flat     fibrous       red     yes
## 3107    edible      flat     fibrous       red     yes
## 3108    edible      flat       scaly       red     yes
## 3109    edible      flat       scaly     brown     yes
## 3110 poisonous    convex     fibrous      gray      no
## 3111 poisonous    convex     fibrous      gray      no
## 3112    edible      flat     fibrous      gray     yes
## 3113    edible      flat       scaly       red     yes
## 3114    edible      flat       scaly       red     yes
## 3115    edible      flat     fibrous      gray     yes
## 3116    edible      flat       scaly     brown     yes
## 3117    edible      flat       scaly     brown     yes
## 3118    edible      flat     fibrous       red     yes
## 3119 poisonous    convex      smooth      gray      no
## 3120 poisonous    convex     fibrous     white      no
## 3121    edible      flat     fibrous      gray     yes
## 3122    edible      flat       scaly      gray     yes
## 3123 poisonous    convex     fibrous      gray      no
## 3124    edible    convex       scaly       red     yes
## 3125 poisonous    convex      smooth     white      no
## 3126    edible      flat       scaly      gray     yes
## 3127    edible      flat       scaly      gray     yes
## 3128    edible      flat       scaly      gray     yes
## 3129    edible      flat     fibrous       red     yes
## 3130    edible      flat       scaly     brown     yes
## 3131    edible      flat       scaly      gray     yes
## 3132    edible      flat       scaly     brown     yes
## 3133    edible      flat       scaly      gray     yes
## 3134    edible      flat       scaly      gray     yes
## 3135    edible    convex     fibrous     brown     yes
## 3136    edible      flat       scaly       red     yes
## 3137    edible      flat     fibrous       red     yes
## 3138    edible      flat       scaly       red     yes
## 3139 poisonous    convex     fibrous    yellow      no
## 3140    edible      flat       scaly      gray     yes
## 3141    edible      flat       scaly     brown     yes
## 3142 poisonous    convex     fibrous      gray      no
## 3143    edible      flat       scaly      gray     yes
## 3144    edible      flat       scaly      gray     yes
## 3145    edible      flat       scaly      gray     yes
## 3146    edible      flat       scaly       red     yes
## 3147    edible      flat       scaly      gray     yes
## 3148 poisonous    convex      smooth     white      no
## 3149 poisonous    convex     fibrous     white      no
## 3150    edible      flat     fibrous     brown     yes
## 3151    edible      flat     fibrous       red     yes
## 3152    edible      flat       scaly       red     yes
## 3153 poisonous    convex     fibrous      gray      no
## 3154    edible      flat     fibrous      gray     yes
## 3155    edible      flat     fibrous      gray     yes
## 3156    edible      flat     fibrous      gray     yes
## 3157 poisonous    convex      smooth     white      no
## 3158    edible    convex       scaly       red     yes
## 3159    edible      flat       scaly       red     yes
## 3160 poisonous    convex     fibrous      gray      no
## 3161    edible      flat     fibrous       red     yes
## 3162 poisonous    convex     fibrous      gray      no
## 3163 poisonous    convex     fibrous      pink      no
## 3164    edible      flat       scaly      gray     yes
## 3165 poisonous    convex     fibrous      gray      no
## 3166 poisonous    convex     fibrous     white      no
## 3167 poisonous    convex     fibrous      gray      no
## 3168    edible      flat       scaly       red     yes
## 3169 poisonous    convex       scaly      gray      no
## 3170 poisonous    convex      smooth      gray      no
## 3171    edible      flat       scaly      gray     yes
## 3172    edible      flat       scaly     brown     yes
## 3173    edible      flat     fibrous       red     yes
## 3174 poisonous    convex     fibrous      gray      no
## 3175 poisonous    convex     fibrous      pink      no
## 3176    edible    convex       scaly     brown     yes
## 3177    edible      flat     fibrous       red     yes
## 3178    edible      flat       scaly     brown     yes
## 3179    edible      flat       scaly      gray     yes
## 3180 poisonous    convex       scaly      gray      no
## 3181    edible      flat       scaly     brown     yes
## 3182 poisonous    convex     fibrous      pink      no
## 3183 poisonous    convex     fibrous     white      no
## 3184    edible      flat     fibrous       red     yes
## 3185    edible      flat       scaly     brown     yes
## 3186    edible      flat       scaly       red     yes
## 3187    edible      flat       scaly      gray     yes
## 3188 poisonous    convex     fibrous      gray      no
## 3189 poisonous    convex     fibrous      gray      no
## 3190    edible      flat     fibrous       red     yes
## 3191 poisonous    convex       scaly    yellow      no
## 3192 poisonous    convex      smooth      pink      no
## 3193    edible      flat     fibrous       red     yes
## 3194 poisonous      flat     fibrous    yellow      no
## 3195    edible      flat       scaly       red     yes
## 3196    edible      flat       scaly       red     yes
## 3197    edible    convex     fibrous     brown     yes
## 3198    edible      flat     fibrous       red     yes
## 3199    edible      flat     fibrous      gray     yes
## 3200 poisonous    convex     fibrous      gray      no
## 3201    edible      flat       scaly       red     yes
## 3202 poisonous      flat     fibrous      gray      no
## 3203    edible      flat       scaly       red     yes
## 3204    edible      flat     fibrous       red     yes
## 3205    edible      flat     fibrous      gray     yes
## 3206 poisonous    convex     fibrous      gray      no
## 3207    edible      flat       scaly      gray     yes
## 3208    edible      flat       scaly      gray     yes
## 3209 poisonous    convex     fibrous      gray      no
## 3210 poisonous    convex     fibrous     white      no
## 3211    edible      flat     fibrous       red     yes
## 3212 poisonous    convex     fibrous    yellow      no
## 3213    edible      flat       scaly       red     yes
## 3214    edible      flat       scaly      gray     yes
## 3215    edible      flat     fibrous       red     yes
## 3216    edible      flat     fibrous      gray     yes
## 3217    edible      flat       scaly      gray     yes
## 3218    edible      flat     fibrous       red     yes
## 3219 poisonous    convex      smooth      gray      no
## 3220    edible      flat       scaly      gray     yes
## 3221    edible      flat       scaly     brown     yes
## 3222    edible      flat       scaly      gray     yes
## 3223    edible      flat       scaly      gray     yes
## 3224    edible      flat       scaly     brown     yes
## 3225    edible    convex     fibrous      gray     yes
## 3226    edible      flat     fibrous      gray     yes
## 3227 poisonous    convex     fibrous      gray      no
## 3228 poisonous    convex      smooth     white      no
## 3229    edible      flat     fibrous      gray     yes
## 3230    edible      flat     fibrous      gray     yes
## 3231    edible      flat       scaly      gray     yes
## 3232 poisonous    convex     fibrous      gray      no
## 3233 poisonous    convex      smooth     white      no
## 3234 poisonous    convex     fibrous      gray      no
## 3235    edible    convex       scaly      gray     yes
## 3236 poisonous    convex     fibrous      gray      no
## 3237    edible      flat       scaly       red     yes
## 3238    edible      flat       scaly      gray     yes
## 3239    edible    convex     fibrous      gray     yes
## 3240 poisonous    convex     fibrous      gray      no
## 3241    edible      flat       scaly      gray     yes
## 3242    edible      flat       scaly      gray     yes
## 3243 poisonous    convex      smooth     white      no
## 3244 poisonous    convex       scaly    yellow      no
## 3245    edible      flat     fibrous       red     yes
## 3246 poisonous    convex     fibrous      gray      no
## 3247 poisonous    convex     fibrous      gray      no
## 3248    edible    convex       scaly     brown     yes
## 3249 poisonous    convex     fibrous      gray      no
## 3250    edible      flat       scaly     brown     yes
## 3251    edible      flat     fibrous      gray     yes
## 3252    edible      flat       scaly      gray     yes
## 3253    edible      flat       scaly      gray     yes
## 3254 poisonous    convex      smooth      gray      no
## 3255    edible      flat     fibrous      gray     yes
## 3256    edible      flat       scaly       red     yes
## 3257    edible      flat       scaly     brown     yes
## 3258    edible      flat       scaly      gray     yes
## 3259 poisonous    convex     fibrous      pink      no
## 3260 poisonous    convex     fibrous      gray      no
## 3261    edible      flat       scaly      gray     yes
## 3262    edible      flat     fibrous      gray     yes
## 3263 poisonous    convex      smooth      pink      no
## 3264    edible    convex       scaly      gray     yes
## 3265 poisonous    convex     fibrous      gray      no
## 3266 poisonous    convex     fibrous      gray      no
## 3267    edible      flat       scaly     brown     yes
## 3268    edible      flat       scaly     brown     yes
## 3269 poisonous    convex      smooth      gray      no
## 3270 poisonous      flat     fibrous      gray      no
## 3271 poisonous    convex     fibrous      pink      no
## 3272    edible      flat       scaly       red     yes
## 3273    edible      flat       scaly      gray     yes
## 3274    edible      flat     fibrous       red     yes
## 3275 poisonous    convex     fibrous    yellow      no
## 3276    edible      flat     fibrous      gray     yes
## 3277 poisonous    convex     fibrous     white      no
## 3278 poisonous    convex     fibrous      gray      no
## 3279    edible      flat     fibrous       red     yes
## 3280    edible      flat       scaly      gray     yes
## 3281 poisonous    convex     fibrous      gray      no
## 3282 poisonous    convex     fibrous      gray      no
## 3283 poisonous    convex      smooth      pink      no
## 3284    edible    convex       scaly      gray     yes
## 3285 poisonous    convex     fibrous      gray      no
## 3286    edible      flat       scaly     brown     yes
## 3287    edible    convex       scaly     brown     yes
## 3288    edible      flat       scaly       red     yes
## 3289    edible      flat       scaly      gray     yes
## 3290    edible      flat     fibrous       red     yes
## 3291    edible      flat       scaly      gray     yes
## 3292    edible      flat     fibrous      gray     yes
## 3293 poisonous    convex     fibrous      pink      no
## 3294    edible      flat     fibrous       red     yes
## 3295    edible      flat     fibrous       red     yes
## 3296 poisonous    convex      smooth     white      no
## 3297    edible      flat     fibrous      gray     yes
## 3298    edible      flat       scaly     brown     yes
## 3299 poisonous    convex     fibrous      gray      no
## 3300    edible      flat     fibrous       red     yes
## 3301 poisonous    convex     fibrous      gray      no
## 3302    edible      flat     fibrous       red     yes
## 3303    edible      flat       scaly      gray     yes
## 3304    edible      flat     fibrous      gray     yes
## 3305 poisonous    convex     fibrous      gray      no
## 3306    edible      flat       scaly       red     yes
## 3307 poisonous    convex     fibrous     white      no
## 3308    edible      flat       scaly     brown     yes
## 3309    edible    convex       scaly      gray     yes
## 3310    edible      flat       scaly     brown     yes
## 3311    edible      flat       scaly       red     yes
## 3312    edible      flat       scaly      gray     yes
## 3313    edible      flat       scaly       red     yes
## 3314 poisonous    convex     fibrous      gray      no
## 3315    edible      flat       scaly      gray     yes
## 3316    edible      flat       scaly      gray     yes
## 3317    edible      flat     fibrous      gray     yes
## 3318    edible      flat       scaly      gray     yes
## 3319    edible      flat     fibrous       red     yes
## 3320    edible      flat     fibrous       red     yes
## 3321    edible      flat       scaly     brown     yes
## 3322    edible      flat     fibrous     brown     yes
## 3323 poisonous    convex     fibrous      pink      no
## 3324 poisonous    convex     fibrous      gray      no
## 3325    edible      flat       scaly      gray     yes
## 3326    edible      flat       scaly       red     yes
## 3327 poisonous    convex      smooth     white      no
## 3328 poisonous    convex     fibrous      pink      no
## 3329 poisonous    convex     fibrous      gray      no
## 3330    edible    convex     fibrous      gray     yes
## 3331    edible      flat       scaly       red     yes
## 3332 poisonous    convex      smooth      pink      no
## 3333    edible      flat       scaly      gray     yes
## 3334    edible      flat       scaly     brown     yes
## 3335 poisonous    convex     fibrous      gray      no
## 3336    edible      flat       scaly     brown     yes
## 3337    edible    convex     fibrous       red     yes
## 3338 poisonous    convex     fibrous     white      no
## 3339    edible      flat       scaly     brown     yes
## 3340 poisonous    convex     fibrous      gray      no
## 3341    edible      flat       scaly       red     yes
## 3342 poisonous    convex     fibrous    yellow      no
## 3343    edible      flat     fibrous      gray     yes
## 3344    edible    convex     fibrous       red     yes
## 3345    edible      flat       scaly       red     yes
## 3346    edible      flat       scaly      gray     yes
## 3347 poisonous    convex     fibrous      gray      no
## 3348    edible      flat       scaly      gray     yes
## 3349    edible      flat     fibrous       red     yes
## 3350 poisonous    convex     fibrous      gray      no
## 3351    edible      flat       scaly     brown     yes
## 3352 poisonous    convex      smooth      gray      no
## 3353 poisonous    convex     fibrous      gray      no
## 3354    edible      flat     fibrous       red     yes
## 3355    edible      flat       scaly     brown     yes
## 3356    edible      flat       scaly      gray     yes
## 3357    edible      flat     fibrous      gray     yes
## 3358 poisonous    convex     fibrous     white      no
## 3359 poisonous    convex     fibrous      gray      no
## 3360 poisonous    convex     fibrous      gray      no
## 3361    edible      flat     fibrous       red     yes
## 3362    edible      flat       scaly       red     yes
## 3363 poisonous      flat       scaly      gray      no
## 3364 poisonous    convex     fibrous      gray      no
## 3365    edible      flat       scaly       red     yes
## 3366 poisonous    convex     fibrous      pink      no
## 3367 poisonous    convex      smooth      gray      no
## 3368    edible      flat       scaly       red     yes
## 3369    edible      flat     fibrous       red     yes
## 3370    edible      flat       scaly       red     yes
## 3371    edible      flat       scaly     brown     yes
## 3372 poisonous    convex      smooth      pink      no
## 3373 poisonous    convex     fibrous      gray      no
## 3374    edible      flat     fibrous       red     yes
## 3375    edible      flat       scaly       red     yes
## 3376    edible      flat     fibrous      gray     yes
## 3377    edible      flat     fibrous       red     yes
## 3378    edible      flat       scaly     brown     yes
## 3379    edible      flat       scaly       red     yes
## 3380 poisonous      flat     fibrous    yellow      no
## 3381    edible    convex     fibrous      gray     yes
## 3382 poisonous    convex      smooth      pink      no
## 3383    edible    convex       scaly       red     yes
## 3384    edible      flat     fibrous      gray     yes
## 3385    edible      flat     fibrous       red     yes
## 3386    edible    convex     fibrous       red     yes
## 3387    edible      flat       scaly      gray     yes
## 3388    edible      flat     fibrous       red     yes
## 3389 poisonous    convex      smooth     white      no
## 3390 poisonous    convex       scaly      gray      no
## 3391 poisonous    convex     fibrous      pink      no
## 3392    edible      flat       scaly      gray     yes
## 3393    edible    convex       scaly     brown     yes
## 3394 poisonous    convex     fibrous      gray      no
## 3395    edible      flat       scaly     brown     yes
## 3396 poisonous    convex     fibrous      pink      no
## 3397    edible      flat     fibrous       red     yes
## 3398 poisonous    convex      smooth     white      no
## 3399    edible    convex       scaly     brown     yes
## 3400 poisonous    convex     fibrous      gray      no
## 3401 poisonous    convex      smooth      gray      no
## 3402    edible      flat       scaly     brown     yes
## 3403 poisonous    convex     fibrous      gray      no
## 3404 poisonous    convex      smooth      pink      no
## 3405    edible      flat       scaly       red     yes
## 3406 poisonous    convex      smooth      gray      no
## 3407    edible    convex       scaly      gray     yes
## 3408    edible    convex       scaly      gray     yes
## 3409    edible      flat       scaly     brown     yes
## 3410    edible      flat       scaly     brown     yes
## 3411    edible      flat     fibrous     brown     yes
## 3412 poisonous    convex      smooth      gray      no
## 3413    edible      flat     fibrous      gray     yes
## 3414    edible    convex     fibrous       red     yes
## 3415    edible      flat     fibrous      gray     yes
## 3416    edible      flat       scaly       red     yes
## 3417    edible      flat       scaly     brown     yes
## 3418 poisonous    convex     fibrous      gray      no
## 3419 poisonous    convex      smooth      gray      no
## 3420    edible      flat       scaly       red     yes
## 3421    edible    convex       scaly      gray     yes
## 3422 poisonous    convex     fibrous      gray      no
## 3423    edible      flat       scaly     brown     yes
## 3424    edible      flat       scaly      gray     yes
## 3425    edible      flat     fibrous       red     yes
## 3426 poisonous    convex     fibrous    yellow      no
## 3427 poisonous    convex      smooth      gray      no
## 3428    edible      flat       scaly      gray     yes
## 3429    edible      flat       scaly     brown     yes
## 3430    edible      flat       scaly     brown     yes
## 3431    edible      flat       scaly      gray     yes
## 3432    edible      flat       scaly      gray     yes
## 3433 poisonous    convex     fibrous      gray      no
## 3434    edible      flat       scaly      gray     yes
## 3435    edible      flat     fibrous       red     yes
## 3436 poisonous    convex     fibrous      gray      no
## 3437    edible      flat       scaly      gray     yes
## 3438 poisonous      flat       scaly      gray      no
## 3439    edible      flat     fibrous       red     yes
## 3440 poisonous    convex     fibrous      gray      no
## 3441    edible      flat       scaly      gray     yes
## 3442 poisonous    convex     fibrous      pink      no
## 3443    edible      flat     fibrous       red     yes
## 3444 poisonous    convex     fibrous      pink      no
## 3445 poisonous    convex      smooth     white      no
## 3446    edible      flat       scaly      gray     yes
## 3447 poisonous    convex      smooth      pink      no
## 3448 poisonous    convex     fibrous      gray      no
## 3449    edible    convex     fibrous     brown     yes
## 3450    edible      flat       scaly      gray     yes
## 3451    edible      flat       scaly       red     yes
## 3452 poisonous    convex     fibrous      gray      no
## 3453 poisonous    convex     fibrous      gray      no
## 3454 poisonous    convex     fibrous      gray      no
## 3455 poisonous    convex     fibrous     white      no
## 3456    edible      flat       scaly     brown     yes
## 3457    edible      flat       scaly      gray     yes
## 3458 poisonous    convex     fibrous     white      no
## 3459    edible    convex       scaly      gray     yes
## 3460    edible      flat       scaly     brown     yes
## 3461    edible      flat     fibrous      gray     yes
## 3462    edible    convex       scaly       red     yes
## 3463    edible      flat       scaly       red     yes
## 3464 poisonous    convex     fibrous     white      no
## 3465    edible      flat     fibrous       red     yes
## 3466 poisonous    convex       scaly    yellow      no
## 3467    edible      flat     fibrous      gray     yes
## 3468    edible      flat       scaly     brown     yes
## 3469 poisonous    convex     fibrous      gray      no
## 3470 poisonous    convex      smooth      pink      no
## 3471    edible      flat     fibrous       red     yes
## 3472    edible    convex     fibrous      gray     yes
## 3473    edible      flat       scaly      gray     yes
## 3474 poisonous    convex     fibrous      gray      no
## 3475    edible    convex       scaly     brown     yes
## 3476    edible      flat       scaly      gray     yes
## 3477    edible      flat     fibrous      gray     yes
## 3478 poisonous    convex     fibrous      gray      no
## 3479    edible      flat       scaly     brown     yes
## 3480 poisonous    convex     fibrous      gray      no
## 3481    edible      flat       scaly      gray     yes
## 3482    edible      flat     fibrous       red     yes
## 3483    edible      flat     fibrous       red     yes
## 3484 poisonous    convex      smooth     white      no
## 3485 poisonous    convex     fibrous     white      no
## 3486    edible      flat     fibrous       red     yes
## 3487    edible      flat     fibrous       red     yes
## 3488    edible      flat       scaly     brown     yes
## 3489 poisonous    convex     fibrous      gray      no
## 3490    edible      flat       scaly      gray     yes
## 3491 poisonous    convex     fibrous      gray      no
## 3492    edible      flat     fibrous       red     yes
## 3493 poisonous    convex     fibrous      gray      no
## 3494    edible      flat       scaly      gray     yes
## 3495    edible      flat     fibrous       red     yes
## 3496    edible      flat       scaly     brown     yes
## 3497 poisonous    convex     fibrous      gray      no
## 3498    edible      flat     fibrous       red     yes
## 3499    edible    convex     fibrous      gray     yes
## 3500    edible      flat       scaly      gray     yes
## 3501 poisonous    convex     fibrous     white      no
## 3502    edible      flat     fibrous       red     yes
## 3503    edible      flat     fibrous       red     yes
## 3504    edible      flat       scaly       red     yes
## 3505    edible    convex     fibrous       red     yes
## 3506    edible      flat       scaly     brown     yes
## 3507 poisonous    convex     fibrous      gray      no
## 3508    edible    convex     fibrous      gray     yes
## 3509 poisonous    convex     fibrous      gray      no
## 3510    edible      flat       scaly      gray     yes
## 3511    edible      flat       scaly     brown     yes
## 3512 poisonous    convex       scaly      gray      no
## 3513    edible      flat       scaly      gray     yes
## 3514 poisonous      flat     fibrous      gray      no
## 3515    edible      flat       scaly       red     yes
## 3516 poisonous    convex      smooth      gray      no
## 3517    edible      flat       scaly       red     yes
## 3518    edible      flat       scaly     brown     yes
## 3519    edible    convex     fibrous       red     yes
## 3520    edible      flat       scaly       red     yes
## 3521    edible      flat       scaly      gray     yes
## 3522 poisonous    convex      smooth      pink      no
## 3523 poisonous      flat     fibrous      gray      no
## 3524    edible      flat     fibrous      gray     yes
## 3525    edible      flat     fibrous       red     yes
## 3526 poisonous    convex     fibrous      pink      no
## 3527    edible      flat     fibrous     brown     yes
## 3528    edible      flat       scaly      gray     yes
## 3529    edible      flat       scaly       red     yes
## 3530    edible      flat       scaly       red     yes
## 3531    edible    convex     fibrous      gray     yes
## 3532 poisonous    convex      smooth     white      no
## 3533    edible      flat       scaly      gray     yes
## 3534 poisonous    convex       scaly      gray      no
## 3535    edible      flat       scaly     brown     yes
## 3536    edible      flat       scaly     brown     yes
## 3537 poisonous    convex      smooth      gray      no
## 3538    edible      flat       scaly      gray     yes
## 3539    edible      flat       scaly       red     yes
## 3540 poisonous    convex     fibrous      gray      no
## 3541    edible    convex       scaly     brown     yes
## 3542    edible      flat       scaly       red     yes
## 3543    edible      flat     fibrous       red     yes
## 3544 poisonous    convex      smooth      pink      no
## 3545 poisonous    convex     fibrous      gray      no
## 3546    edible      flat       scaly       red     yes
## 3547    edible      flat       scaly      gray     yes
## 3548 poisonous    convex      smooth      pink      no
## 3549    edible      flat     fibrous      gray     yes
## 3550    edible      flat     fibrous       red     yes
## 3551    edible      flat     fibrous     brown     yes
## 3552    edible    convex       scaly      gray     yes
## 3553    edible    convex       scaly     brown     yes
## 3554    edible      flat       scaly     brown     yes
## 3555 poisonous    convex     fibrous      pink      no
## 3556    edible      flat     fibrous       red     yes
## 3557 poisonous    convex       scaly    yellow      no
## 3558 poisonous    convex      smooth      gray      no
## 3559    edible      flat       scaly     brown     yes
## 3560 poisonous      flat     fibrous      gray      no
## 3561 poisonous    convex     fibrous      gray      no
## 3562    edible      flat       scaly      gray     yes
## 3563    edible      flat       scaly      gray     yes
## 3564    edible      flat       scaly      gray     yes
## 3565    edible    convex       scaly     brown     yes
## 3566 poisonous    convex     fibrous    yellow      no
## 3567    edible      flat     fibrous      gray     yes
## 3568 poisonous    convex     fibrous      gray      no
## 3569    edible      flat       scaly       red     yes
## 3570    edible      flat     fibrous       red     yes
## 3571 poisonous      flat     fibrous      gray      no
## 3572    edible      flat     fibrous       red     yes
## 3573 poisonous    convex     fibrous    yellow      no
## 3574    edible      flat     fibrous       red     yes
## 3575    edible      flat     fibrous      gray     yes
## 3576    edible      flat     fibrous       red     yes
## 3577    edible      flat       scaly       red     yes
## 3578    edible      flat       scaly       red     yes
## 3579    edible      flat       scaly     brown     yes
## 3580    edible      flat     fibrous      gray     yes
## 3581    edible      flat     fibrous       red     yes
## 3582 poisonous    convex     fibrous      gray      no
## 3583    edible      flat       scaly     brown     yes
## 3584 poisonous    convex     fibrous      gray      no
## 3585    edible      flat       scaly     brown     yes
## 3586    edible      flat       scaly      gray     yes
## 3587    edible    convex     fibrous       red     yes
## 3588    edible      flat       scaly       red     yes
## 3589    edible      flat     fibrous      gray     yes
## 3590    edible    convex       scaly      gray     yes
## 3591 poisonous    convex     fibrous      pink      no
## 3592    edible    convex       scaly     brown     yes
## 3593    edible      flat       scaly     brown     yes
## 3594    edible      flat       scaly      gray     yes
## 3595 poisonous      flat     fibrous      gray      no
## 3596    edible      flat       scaly      gray     yes
## 3597    edible      flat       scaly       red     yes
## 3598 poisonous    convex     fibrous      gray      no
## 3599    edible      flat       scaly     brown     yes
## 3600 poisonous    convex     fibrous      gray      no
## 3601    edible      flat     fibrous       red     yes
## 3602    edible    convex       scaly     brown     yes
## 3603    edible    convex       scaly      gray     yes
## 3604    edible      flat       scaly       red     yes
## 3605 poisonous    convex       scaly      gray      no
## 3606 poisonous    convex      smooth      gray      no
## 3607 poisonous    convex     fibrous      gray      no
## 3608 poisonous    convex     fibrous      gray      no
## 3609 poisonous      flat     fibrous      gray      no
## 3610    edible      flat     fibrous      gray     yes
## 3611 poisonous    convex     fibrous      gray      no
## 3612    edible      flat       scaly       red     yes
## 3613    edible      flat       scaly     brown     yes
## 3614    edible      flat       scaly     brown     yes
## 3615 poisonous    convex       scaly    yellow      no
## 3616    edible      flat       scaly      gray     yes
## 3617 poisonous    convex     fibrous      pink      no
## 3618    edible      flat     fibrous       red     yes
## 3619    edible      flat       scaly     brown     yes
## 3620    edible    convex       scaly     brown     yes
## 3621    edible      flat     fibrous       red     yes
## 3622 poisonous    convex     fibrous      gray      no
## 3623 poisonous    convex     fibrous      gray      no
## 3624    edible      flat     fibrous      gray     yes
## 3625    edible    convex     fibrous     brown     yes
## 3626 poisonous    convex     fibrous      gray      no
## 3627    edible      flat     fibrous      gray     yes
## 3628 poisonous    convex     fibrous      pink      no
## 3629    edible      flat       scaly     brown     yes
## 3630    edible      flat       scaly      gray     yes
## 3631 poisonous    convex     fibrous      gray      no
## 3632    edible    convex     fibrous       red     yes
## 3633 poisonous    convex      smooth      gray      no
## 3634 poisonous    convex     fibrous      gray      no
## 3635    edible      flat       scaly     brown     yes
## 3636 poisonous    convex     fibrous      gray      no
## 3637    edible      flat       scaly       red     yes
## 3638    edible      flat     fibrous      gray     yes
## 3639    edible      flat     fibrous      gray     yes
## 3640    edible      flat       scaly     brown     yes
## 3641    edible      flat       scaly       red     yes
## 3642    edible      flat       scaly      gray     yes
## 3643    edible      flat       scaly       red     yes
## 3644    edible      flat       scaly     brown     yes
## 3645 poisonous    convex       scaly    yellow      no
## 3646    edible      flat     fibrous      gray     yes
## 3647    edible      flat       scaly     brown     yes
## 3648 poisonous    convex     fibrous      gray      no
## 3649 poisonous    convex     fibrous      gray      no
## 3650 poisonous    convex     fibrous      gray      no
## 3651    edible      flat       scaly       red     yes
## 3652    edible      flat       scaly     brown     yes
## 3653 poisonous    convex       scaly      gray      no
## 3654 poisonous    convex     fibrous      gray      no
## 3655 poisonous      flat       scaly      gray      no
## 3656    edible      flat       scaly     brown     yes
## 3657 poisonous    convex     fibrous      gray      no
## 3658    edible      flat     fibrous       red     yes
## 3659 poisonous      flat     fibrous    yellow      no
## 3660    edible      flat       scaly     brown     yes
## 3661    edible    convex       scaly       red     yes
## 3662 poisonous    convex     fibrous      gray      no
## 3663    edible    convex       scaly     brown     yes
## 3664 poisonous    convex      smooth     white      no
## 3665    edible      flat       scaly      gray     yes
## 3666    edible      flat     fibrous       red     yes
## 3667    edible      flat       scaly      gray     yes
## 3668 poisonous    convex     fibrous      gray      no
## 3669    edible      flat       scaly       red     yes
## 3670    edible      flat       scaly       red     yes
## 3671 poisonous    convex      smooth      pink      no
## 3672    edible      flat     fibrous       red     yes
## 3673    edible      flat     fibrous      gray     yes
## 3674    edible      flat     fibrous      gray     yes
## 3675    edible      flat     fibrous      gray     yes
## 3676 poisonous    convex     fibrous      gray      no
## 3677    edible      flat       scaly     brown     yes
## 3678    edible      flat       scaly      gray     yes
## 3679    edible      flat       scaly     brown     yes
## 3680 poisonous    convex      smooth      pink      no
## 3681    edible      flat       scaly       red     yes
## 3682    edible      flat       scaly      gray     yes
## 3683    edible      flat       scaly       red     yes
## 3684 poisonous    convex      smooth     white      no
## 3685 poisonous    convex     fibrous      gray      no
## 3686    edible      flat       scaly     brown     yes
## 3687 poisonous    convex     fibrous      gray      no
## 3688 poisonous    convex     fibrous     white      no
## 3689    edible      flat       scaly     brown     yes
## 3690    edible      flat       scaly      gray     yes
## 3691    edible      flat       scaly      gray     yes
## 3692    edible      flat       scaly      gray     yes
## 3693 poisonous    convex     fibrous     white      no
## 3694    edible      flat     fibrous       red     yes
## 3695 poisonous    convex     fibrous      gray      no
## 3696    edible      flat       scaly     brown     yes
## 3697    edible      flat       scaly     brown     yes
## 3698 poisonous    convex      smooth      pink      no
## 3699    edible      flat       scaly      gray     yes
## 3700 poisonous    convex      smooth      pink      no
## 3701    edible    convex       scaly     brown     yes
## 3702 poisonous    convex       scaly      gray      no
## 3703    edible      flat       scaly       red     yes
## 3704 poisonous    convex     fibrous      pink      no
## 3705 poisonous    convex     fibrous      gray      no
## 3706    edible      flat     fibrous       red     yes
## 3707    edible      flat     fibrous       red     yes
## 3708 poisonous    convex     fibrous      gray      no
## 3709 poisonous    convex     fibrous      gray      no
## 3710    edible      flat       scaly      gray     yes
## 3711 poisonous    convex     fibrous      gray      no
## 3712    edible      flat     fibrous       red     yes
## 3713    edible      flat       scaly     brown     yes
## 3714 poisonous      flat       scaly    yellow      no
## 3715    edible      flat       scaly       red     yes
## 3716    edible      flat       scaly       red     yes
## 3717    edible      flat       scaly     brown     yes
## 3718    edible    convex     fibrous     brown     yes
## 3719 poisonous      flat       scaly      gray      no
## 3720    edible      flat       scaly      gray     yes
## 3721    edible      flat     fibrous       red     yes
## 3722    edible      flat       scaly     brown     yes
## 3723    edible    convex       scaly      gray     yes
## 3724    edible    convex       scaly     brown     yes
## 3725 poisonous    convex     fibrous      gray      no
## 3726 poisonous    convex      smooth     white      no
## 3727 poisonous      flat     fibrous    yellow      no
## 3728    edible      flat       scaly     brown     yes
## 3729    edible      flat       scaly       red     yes
## 3730    edible      flat     fibrous       red     yes
## 3731    edible      flat     fibrous       red     yes
## 3732    edible      flat       scaly       red     yes
## 3733    edible      flat       scaly     brown     yes
## 3734    edible      flat       scaly       red     yes
## 3735 poisonous    convex       scaly      gray      no
## 3736    edible      flat       scaly       red     yes
## 3737    edible      flat       scaly     brown     yes
## 3738 poisonous    convex     fibrous      gray      no
## 3739 poisonous    convex     fibrous     white      no
## 3740 poisonous    convex     fibrous      gray      no
## 3741    edible    convex       scaly     brown     yes
## 3742 poisonous      flat     fibrous    yellow      no
## 3743 poisonous    convex      smooth      gray      no
## 3744    edible      flat       scaly       red     yes
## 3745    edible      flat       scaly       red     yes
## 3746    edible      flat     fibrous       red     yes
## 3747 poisonous    convex     fibrous    yellow      no
## 3748    edible      flat       scaly     brown     yes
## 3749    edible      flat     fibrous       red     yes
## 3750    edible      flat       scaly       red     yes
## 3751 poisonous    convex     fibrous    yellow      no
## 3752 poisonous    convex     fibrous      gray      no
## 3753    edible      flat     fibrous       red     yes
## 3754 poisonous    convex      smooth      gray      no
## 3755 poisonous    convex     fibrous     white      no
## 3756 poisonous    convex     fibrous      gray      no
## 3757    edible      flat       scaly      gray     yes
## 3758    edible      flat     fibrous       red     yes
## 3759 poisonous      flat     fibrous    yellow      no
## 3760    edible      flat     fibrous       red     yes
## 3761    edible      flat       scaly       red     yes
## 3762    edible      flat     fibrous      gray     yes
## 3763    edible      flat       scaly       red     yes
## 3764    edible      flat     fibrous      gray     yes
## 3765    edible      flat       scaly     brown     yes
## 3766    edible      flat       scaly       red     yes
## 3767    edible      flat       scaly     brown     yes
## 3768    edible      flat     fibrous       red     yes
## 3769    edible      flat       scaly       red     yes
## 3770    edible      flat     fibrous      gray     yes
## 3771    edible    convex     fibrous      gray     yes
## 3772    edible      flat       scaly     brown     yes
## 3773    edible      flat       scaly     brown     yes
## 3774    edible    convex     fibrous       red     yes
## 3775    edible      flat     fibrous     brown     yes
## 3776 poisonous    convex     fibrous      gray      no
## 3777    edible      flat       scaly       red     yes
## 3778    edible    convex       scaly      gray     yes
## 3779    edible      flat       scaly     brown     yes
## 3780    edible      flat       scaly     brown     yes
## 3781    edible      flat       scaly      gray     yes
## 3782 poisonous    convex     fibrous      gray      no
## 3783    edible      flat     fibrous       red     yes
## 3784 poisonous      flat     fibrous      gray      no
## 3785    edible      flat       scaly      gray     yes
## 3786    edible      flat       scaly      gray     yes
## 3787    edible      flat     fibrous      gray     yes
## 3788 poisonous      flat     fibrous    yellow      no
## 3789    edible    convex       scaly     brown     yes
## 3790    edible      flat       scaly      gray     yes
## 3791 poisonous      flat     fibrous      gray      no
## 3792    edible      flat       scaly     brown     yes
## 3793 poisonous    convex     fibrous      gray      no
## 3794    edible      flat       scaly       red     yes
## 3795 poisonous    convex      smooth     white      no
## 3796    edible      flat       scaly     brown     yes
## 3797 poisonous    convex      smooth     white      no
## 3798    edible      flat       scaly       red     yes
## 3799    edible      flat     fibrous      gray     yes
## 3800    edible      flat     fibrous       red     yes
## 3801    edible      flat       scaly       red     yes
## 3802 poisonous    convex      smooth      gray      no
## 3803    edible      flat       scaly       red     yes
## 3804    edible      flat       scaly       red     yes
## 3805 poisonous    convex     fibrous      pink      no
## 3806    edible      flat     fibrous       red     yes
## 3807 poisonous    convex      smooth      pink      no
## 3808    edible      flat     fibrous       red     yes
## 3809 poisonous      flat     fibrous      gray      no
## 3810    edible      flat       scaly      gray     yes
## 3811 poisonous    convex     fibrous      gray      no
## 3812    edible      flat       scaly     brown     yes
## 3813    edible      flat       scaly       red     yes
## 3814    edible      flat       scaly     brown     yes
## 3815 poisonous    convex      smooth      pink      no
## 3816 poisonous    convex       scaly      gray      no
## 3817    edible      flat     fibrous       red     yes
## 3818    edible      flat     fibrous      gray     yes
## 3819    edible      flat       scaly      gray     yes
## 3820    edible      flat       scaly       red     yes
## 3821    edible      flat       scaly       red     yes
## 3822    edible    convex     fibrous      gray     yes
## 3823 poisonous    convex     fibrous      gray      no
## 3824    edible    convex       scaly     brown     yes
## 3825    edible      flat       scaly       red     yes
## 3826    edible      flat     fibrous       red     yes
## 3827 poisonous    convex     fibrous     white      no
## 3828    edible      flat       scaly       red     yes
## 3829    edible      flat       scaly      gray     yes
## 3830 poisonous    convex     fibrous      gray      no
## 3831    edible      flat       scaly      gray     yes
## 3832 poisonous    convex      smooth     white      no
## 3833    edible      flat     fibrous       red     yes
## 3834 poisonous    convex      smooth     white      no
## 3835 poisonous    convex     fibrous      gray      no
## 3836 poisonous    convex     fibrous      gray      no
## 3837    edible      flat       scaly      gray     yes
## 3838    edible      flat       scaly      gray     yes
## 3839    edible      flat       scaly       red     yes
## 3840    edible      flat       scaly       red     yes
## 3841 poisonous    convex     fibrous      gray      no
## 3842    edible      flat     fibrous       red     yes
## 3843    edible      flat     fibrous       red     yes
## 3844 poisonous    convex       scaly      gray      no
## 3845    edible      flat     fibrous       red     yes
## 3846 poisonous    convex     fibrous      gray      no
## 3847    edible      flat       scaly      gray     yes
## 3848    edible      flat       scaly       red     yes
## 3849    edible      flat       scaly       red     yes
## 3850    edible      flat       scaly      gray     yes
## 3851    edible    convex     fibrous       red     yes
## 3852    edible      flat       scaly      gray     yes
## 3853 poisonous    convex      smooth      pink      no
## 3854    edible      flat       scaly     brown     yes
## 3855 poisonous    convex     fibrous      gray      no
## 3856    edible      flat       scaly       red     yes
## 3857    edible      flat       scaly      gray     yes
## 3858    edible      flat     fibrous       red     yes
## 3859 poisonous    convex      smooth     white      no
## 3860 poisonous    convex     fibrous     white      no
## 3861    edible    convex       scaly     brown     yes
## 3862    edible      flat     fibrous       red     yes
## 3863    edible      flat       scaly       red     yes
## 3864    edible    convex       scaly      gray     yes
## 3865 poisonous    convex     fibrous      gray      no
## 3866 poisonous    convex     fibrous     white      no
## 3867    edible      flat       scaly     brown     yes
## 3868    edible      flat     fibrous       red     yes
## 3869 poisonous    convex     fibrous     white      no
## 3870 poisonous    convex      smooth      gray      no
## 3871    edible    convex       scaly       red     yes
## 3872 poisonous    convex     fibrous      gray      no
## 3873 poisonous    convex     fibrous      gray      no
## 3874 poisonous    convex     fibrous      gray      no
## 3875 poisonous    convex      smooth      gray      no
## 3876    edible    convex     fibrous      gray     yes
## 3877 poisonous    convex     fibrous      pink      no
## 3878    edible      flat     fibrous       red     yes
## 3879 poisonous    convex      smooth      pink      no
## 3880 poisonous    convex     fibrous      gray      no
## 3881    edible      flat       scaly       red     yes
## 3882 poisonous    convex     fibrous      gray      no
## 3883 poisonous    convex      smooth      gray      no
## 3884    edible      flat       scaly      gray     yes
## 3885    edible      flat       scaly     brown     yes
## 3886 poisonous    convex     fibrous      gray      no
## 3887    edible      flat     fibrous       red     yes
## 3888 poisonous    convex      smooth     white      no
## 3889    edible      flat       scaly     brown     yes
## 3890 poisonous    convex     fibrous      gray      no
## 3891 poisonous      flat       scaly      gray      no
## 3892    edible      flat       scaly      gray     yes
## 3893 poisonous    convex     fibrous      gray      no
## 3894    edible      flat       scaly      gray     yes
## 3895 poisonous    convex     fibrous      gray      no
## 3896 poisonous      flat     fibrous      gray      no
## 3897    edible      flat     fibrous       red     yes
## 3898    edible      flat     fibrous      gray     yes
## 3899 poisonous    convex     fibrous     white      no
## 3900    edible      flat     fibrous      gray     yes
## 3901 poisonous    convex     fibrous      gray      no
## 3902 poisonous    convex       scaly    yellow      no
## 3903 poisonous      flat       scaly      gray      no
## 3904 poisonous    convex     fibrous    yellow      no
## 3905 poisonous    convex     fibrous     white      no
## 3906 poisonous    convex       scaly    yellow      no
## 3907 poisonous    convex       scaly    yellow      no
## 3908 poisonous    convex     fibrous    yellow      no
## 3909 poisonous      flat     fibrous    yellow      no
## 3910 poisonous      flat     fibrous    yellow      no
## 3911    edible      flat       scaly      gray     yes
## 3912 poisonous    convex       scaly      gray      no
## 3913 poisonous      flat     fibrous    yellow      no
## 3914 poisonous      flat     fibrous    yellow      no
## 3915    edible    convex     fibrous      gray     yes
## 3916    edible      flat       scaly     brown     yes
## 3917    edible      flat       scaly       red     yes
## 3918 poisonous    convex       scaly    yellow      no
## 3919 poisonous      flat       scaly      gray      no
## 3920 poisonous      flat       scaly      gray      no
## 3921    edible      flat       scaly       red     yes
## 3922 poisonous      flat       scaly      gray      no
## 3923    edible      flat     fibrous       red     yes
## 3924    edible      flat     fibrous      gray     yes
## 3925    edible      flat     fibrous      gray     yes
## 3926 poisonous    convex     fibrous      gray      no
## 3927 poisonous    convex       scaly    yellow      no
## 3928 poisonous      flat     fibrous    yellow      no
## 3929    edible      flat       scaly       red     yes
## 3930 poisonous    convex     fibrous    yellow      no
## 3931 poisonous      flat       scaly      gray      no
## 3932 poisonous      flat     fibrous    yellow      no
## 3933 poisonous      flat       scaly    yellow      no
## 3934 poisonous    convex       scaly      gray      no
## 3935 poisonous      flat     fibrous    yellow      no
## 3936 poisonous    convex      smooth      pink      no
## 3937 poisonous    convex       scaly    yellow      no
## 3938    edible      flat     fibrous       red     yes
## 3939    edible      flat       scaly       red     yes
## 3940 poisonous    convex     fibrous      pink      no
## 3941 poisonous    convex     fibrous    yellow      no
## 3942 poisonous      flat       scaly      gray      no
## 3943    edible    convex       scaly      gray     yes
## 3944    edible      flat     fibrous       red     yes
## 3945 poisonous      flat       scaly      gray      no
## 3946    edible      flat       scaly      gray     yes
## 3947 poisonous    convex     fibrous    yellow      no
## 3948 poisonous      flat       scaly      gray      no
## 3949    edible      flat     fibrous       red     yes
## 3950 poisonous    convex       scaly    yellow      no
## 3951 poisonous      flat     fibrous    yellow      no
## 3952 poisonous    convex       scaly    yellow      no
## 3953 poisonous      flat     fibrous      gray      no
## 3954 poisonous    convex      smooth      pink      no
## 3955 poisonous    convex     fibrous      gray      no
## 3956 poisonous    convex       scaly      gray      no
## 3957 poisonous    convex       scaly    yellow      no
## 3958 poisonous      flat     fibrous      gray      no
## 3959    edible      flat       scaly      gray     yes
## 3960 poisonous    convex      smooth      gray     yes
## 3961 poisonous    convex       scaly    yellow      no
## 3962    edible      flat     fibrous      gray     yes
## 3963 poisonous      flat     fibrous    yellow      no
## 3964 poisonous    convex       scaly      gray      no
## 3965 poisonous      flat     fibrous    yellow      no
## 3966 poisonous    convex       scaly      gray      no
## 3967 poisonous      flat       scaly      gray      no
## 3968 poisonous      flat       scaly    yellow      no
## 3969 poisonous    convex     fibrous    yellow      no
## 3970 poisonous    convex      smooth     white      no
## 3971 poisonous    convex       scaly      gray      no
## 3972 poisonous    convex     fibrous      gray      no
## 3973    edible      flat       scaly     brown     yes
## 3974    edible      flat     fibrous      gray     yes
## 3975 poisonous    convex     fibrous    yellow      no
## 3976 poisonous    convex      smooth      pink      no
## 3977 poisonous      flat     fibrous      gray      no
## 3978 poisonous    convex     fibrous      gray      no
## 3979 poisonous    convex      smooth     white      no
## 3980    edible      flat     fibrous       red     yes
## 3981 poisonous      flat       scaly      gray      no
## 3982 poisonous    convex     fibrous      pink      no
## 3983 poisonous      flat      smooth     white     yes
## 3984 poisonous    convex       scaly    yellow      no
## 3985    edible    convex       scaly      buff     yes
## 3986 poisonous      flat     fibrous      gray      no
## 3987 poisonous    convex     fibrous      gray      no
## 3988 poisonous    convex     fibrous    yellow      no
## 3989 poisonous      flat     fibrous    yellow      no
## 3990    edible      flat     fibrous      gray     yes
## 3991 poisonous    convex     fibrous    yellow      no
## 3992 poisonous    convex       scaly      gray      no
## 3993 poisonous      flat     fibrous      gray      no
## 3994 poisonous    convex     fibrous      gray      no
## 3995 poisonous    convex     fibrous      gray      no
## 3996 poisonous    convex       scaly      gray      no
## 3997 poisonous    convex      smooth      gray     yes
## 3998 poisonous    convex       scaly      gray      no
## 3999    edible      flat       scaly      gray     yes
## 4000 poisonous      flat     fibrous    yellow      no
print(df_new_fungus[4001:5000, ])
##            eat cap_shape cap_surface cap_color bruises
## 4001    edible      flat     fibrous       red     yes
## 4002 poisonous      flat       scaly      gray      no
## 4003    edible      flat       scaly     brown     yes
## 4004    edible      flat     fibrous       red     yes
## 4005 poisonous    convex       scaly      gray      no
## 4006 poisonous    convex       scaly      gray      no
## 4007    edible      flat     fibrous       red     yes
## 4008 poisonous      flat     fibrous      gray      no
## 4009    edible      flat     fibrous      gray     yes
## 4010    edible      flat       scaly       red     yes
## 4011    edible      flat       scaly       red     yes
## 4012 poisonous      flat     fibrous      gray      no
## 4013    edible    convex     fibrous       red     yes
## 4014 poisonous      flat       scaly      gray      no
## 4015 poisonous    convex       scaly    yellow      no
## 4016 poisonous      flat       scaly    yellow      no
## 4017 poisonous    convex     fibrous    yellow      no
## 4018 poisonous    convex       scaly    yellow      no
## 4019    edible    convex     fibrous      gray     yes
## 4020    edible    convex       scaly      gray     yes
## 4021 poisonous      flat       scaly      gray      no
## 4022 poisonous      flat     fibrous    yellow      no
## 4023 poisonous    convex       scaly      gray      no
## 4024 poisonous    convex       scaly       red      no
## 4025 poisonous    convex       scaly      gray      no
## 4026 poisonous    convex       scaly      gray      no
## 4027 poisonous    convex      smooth      gray      no
## 4028 poisonous      flat     fibrous      gray      no
## 4029 poisonous      flat      smooth      buff     yes
## 4030 poisonous    convex       scaly      gray      no
## 4031 poisonous    convex       scaly    yellow      no
## 4032 poisonous    convex      smooth     white      no
## 4033 poisonous    convex       scaly    yellow      no
## 4034    edible      flat     fibrous       red     yes
## 4035 poisonous    convex       scaly      gray      no
## 4036 poisonous    convex     fibrous    yellow      no
## 4037 poisonous    convex     fibrous    yellow      no
## 4038 poisonous      flat     fibrous      gray      no
## 4039 poisonous    convex     fibrous    yellow      no
## 4040    edible      flat     fibrous      gray     yes
## 4041 poisonous    convex     fibrous      gray      no
## 4042    edible      flat       scaly     brown     yes
## 4043 poisonous      flat       scaly      gray      no
## 4044 poisonous      flat     fibrous      gray      no
## 4045 poisonous      flat     fibrous      gray      no
## 4046 poisonous    convex      smooth     white      no
## 4047 poisonous    convex       scaly      gray      no
## 4048    edible      flat       scaly     brown     yes
## 4049 poisonous    convex     fibrous     white      no
## 4050 poisonous    convex     fibrous    yellow      no
## 4051 poisonous    convex     fibrous    yellow      no
## 4052 poisonous    convex     fibrous      pink      no
## 4053 poisonous      flat     fibrous    yellow      no
## 4054 poisonous      flat     fibrous      gray      no
## 4055    edible      flat       scaly       red     yes
## 4056 poisonous    convex       scaly    yellow      no
## 4057 poisonous      flat     fibrous    yellow      no
## 4058 poisonous    convex     fibrous      gray      no
## 4059 poisonous    convex      smooth      pink      no
## 4060    edible    convex     fibrous       red     yes
## 4061 poisonous    convex       scaly    yellow      no
## 4062    edible      flat     fibrous     brown     yes
## 4063    edible      flat       scaly       red     yes
## 4064 poisonous      flat       scaly    yellow      no
## 4065 poisonous    convex     fibrous    yellow      no
## 4066 poisonous    convex       scaly      gray      no
## 4067 poisonous      flat     fibrous      gray      no
## 4068 poisonous      flat     fibrous    yellow      no
## 4069    edible      flat       scaly      gray     yes
## 4070 poisonous    convex       scaly      gray      no
## 4071 poisonous    convex       scaly    yellow      no
## 4072 poisonous      flat     fibrous      gray      no
## 4073 poisonous      flat     fibrous    yellow      no
## 4074    edible      flat     fibrous       red     yes
## 4075    edible      flat       scaly     brown     yes
## 4076 poisonous    convex     fibrous    yellow      no
## 4077    edible      flat       scaly    purple      no
## 4078    edible      flat       scaly     brown     yes
## 4079 poisonous      flat       scaly    yellow      no
## 4080 poisonous      flat     fibrous    yellow      no
## 4081 poisonous    convex       scaly      gray      no
## 4082 poisonous    convex       scaly      gray      no
## 4083 poisonous      flat     fibrous    yellow      no
## 4084 poisonous    convex       scaly    yellow      no
## 4085 poisonous    convex     fibrous    yellow      no
## 4086 poisonous    convex       scaly      gray      no
## 4087 poisonous    convex     fibrous    yellow      no
## 4088    edible    convex     fibrous      gray     yes
## 4089 poisonous      flat       scaly      gray      no
## 4090    edible      flat       scaly       red     yes
## 4091 poisonous    convex     fibrous      gray      no
## 4092 poisonous      flat     fibrous    yellow      no
## 4093    edible      flat       scaly     brown     yes
## 4094    edible      flat     fibrous      gray     yes
## 4095 poisonous      flat       scaly      gray      no
## 4096    edible    convex     fibrous       red     yes
## 4097    edible      flat     fibrous       red     yes
## 4098 poisonous      flat       scaly    yellow      no
## 4099 poisonous    convex     fibrous     white      no
## 4100 poisonous    convex       scaly      gray      no
## 4101 poisonous    convex       scaly       red      no
## 4102 poisonous    convex     fibrous    yellow      no
## 4103 poisonous      flat       scaly      gray      no
## 4104    edible      flat       scaly      gray     yes
## 4105 poisonous    convex       scaly     brown      no
## 4106    edible      flat       scaly       red     yes
## 4107 poisonous      bell      smooth      buff     yes
## 4108    edible      flat     fibrous      gray     yes
## 4109 poisonous      flat     fibrous      gray      no
## 4110    edible      flat       scaly      gray     yes
## 4111 poisonous      flat     fibrous    yellow      no
## 4112 poisonous      flat     fibrous    yellow      no
## 4113 poisonous      flat     fibrous      gray      no
## 4114    edible      flat     fibrous       red     yes
## 4115 poisonous    convex     fibrous      gray      no
## 4116 poisonous      flat     fibrous    yellow      no
## 4117 poisonous    convex     fibrous    yellow      no
## 4118 poisonous    convex     fibrous    yellow      no
## 4119 poisonous      flat     fibrous    yellow      no
## 4120 poisonous      flat     fibrous    yellow      no
## 4121 poisonous    convex       scaly      gray      no
## 4122    edible      flat       scaly       red     yes
## 4123 poisonous      flat     fibrous      gray      no
## 4124 poisonous      flat     fibrous    yellow      no
## 4125    edible      flat     fibrous     brown     yes
## 4126 poisonous    convex       scaly    yellow      no
## 4127 poisonous    convex       scaly    yellow      no
## 4128    edible      flat       scaly     brown     yes
## 4129 poisonous      flat       scaly      gray      no
## 4130    edible      flat     fibrous       red     yes
## 4131 poisonous    convex       scaly    yellow      no
## 4132 poisonous      flat       scaly      gray      no
## 4133 poisonous    convex       scaly    yellow      no
## 4134 poisonous    convex      smooth      gray      no
## 4135    edible      flat     fibrous      gray     yes
## 4136 poisonous      flat       scaly      gray      no
## 4137 poisonous    convex     fibrous      gray      no
## 4138 poisonous      flat       scaly      gray      no
## 4139    edible      flat       scaly     brown     yes
## 4140 poisonous    convex       scaly    yellow      no
## 4141 poisonous      flat     fibrous      gray      no
## 4142    edible      flat       scaly       red     yes
## 4143    edible      flat       scaly       red     yes
## 4144 poisonous      flat      smooth      gray     yes
## 4145 poisonous    convex     fibrous      gray      no
## 4146 poisonous      flat       scaly      gray      no
## 4147 poisonous    convex       scaly      gray      no
## 4148 poisonous    convex     fibrous    yellow      no
## 4149 poisonous      flat       scaly      gray      no
## 4150 poisonous      flat       scaly      gray      no
## 4151    edible      flat       scaly       red     yes
## 4152 poisonous    convex       scaly      gray      no
## 4153 poisonous      flat       scaly      gray      no
## 4154 poisonous    convex       scaly      gray      no
## 4155    edible      flat     fibrous       red     yes
## 4156    edible      flat       scaly       red     yes
## 4157    edible      flat       scaly       red     yes
## 4158 poisonous      flat     fibrous    yellow      no
## 4159 poisonous      flat     fibrous      gray      no
## 4160    edible      flat       scaly     brown     yes
## 4161 poisonous    convex       scaly      gray      no
## 4162    edible      flat     fibrous      gray     yes
## 4163 poisonous    convex     fibrous    yellow      no
## 4164 poisonous    convex       scaly    yellow      no
## 4165 poisonous    convex       scaly    yellow      no
## 4166    edible      flat     fibrous  cinnamon      no
## 4167 poisonous    convex     fibrous      gray      no
## 4168 poisonous      flat     fibrous      gray      no
## 4169 poisonous    convex       scaly      gray      no
## 4170 poisonous      flat       scaly      gray      no
## 4171 poisonous    convex      smooth      buff     yes
## 4172 poisonous      flat     fibrous      gray      no
## 4173 poisonous    convex       scaly      gray      no
## 4174 poisonous      flat     fibrous    yellow      no
## 4175 poisonous      flat     fibrous      gray      no
## 4176 poisonous      flat     fibrous      gray      no
## 4177    edible      flat     fibrous      gray     yes
## 4178 poisonous    convex     fibrous    yellow      no
## 4179 poisonous    convex     fibrous    yellow      no
## 4180    edible      flat       scaly       red     yes
## 4181 poisonous      flat       scaly      gray      no
## 4182 poisonous      flat     fibrous      gray      no
## 4183 poisonous    convex       scaly    yellow      no
## 4184    edible      flat     fibrous      gray     yes
## 4185 poisonous    convex     fibrous      gray      no
## 4186 poisonous    convex     fibrous      gray      no
## 4187    edible      flat       scaly     brown     yes
## 4188    edible      flat     fibrous      gray     yes
## 4189 poisonous    convex       scaly      gray      no
## 4190 poisonous      flat       scaly    yellow      no
## 4191 poisonous      flat     fibrous    yellow      no
## 4192 poisonous      flat     fibrous      gray      no
## 4193 poisonous      flat     fibrous      gray      no
## 4194 poisonous      flat       scaly      gray      no
## 4195 poisonous      flat      smooth      buff     yes
## 4196    edible      flat     fibrous       red     yes
## 4197 poisonous    convex       scaly     brown      no
## 4198    edible    convex       scaly      gray     yes
## 4199 poisonous    convex     fibrous      gray      no
## 4200 poisonous    convex     fibrous      pink      no
## 4201 poisonous    convex       scaly     brown      no
## 4202 poisonous      flat     fibrous      gray      no
## 4203 poisonous    convex     fibrous    yellow      no
## 4204 poisonous    convex      smooth      gray     yes
## 4205 poisonous      flat       scaly      gray      no
## 4206 poisonous    convex     fibrous    yellow      no
## 4207 poisonous      flat       scaly      gray      no
## 4208 poisonous      flat     fibrous      gray      no
## 4209 poisonous      flat       scaly      gray      no
## 4210 poisonous    convex       scaly      gray      no
## 4211 poisonous      flat     fibrous      gray      no
## 4212 poisonous    convex     fibrous    yellow      no
## 4213 poisonous      flat     fibrous    yellow      no
## 4214 poisonous    convex     fibrous    yellow      no
## 4215 poisonous    convex     fibrous    yellow      no
## 4216 poisonous    convex       scaly    yellow      no
## 4217 poisonous      flat      smooth      gray     yes
## 4218 poisonous    convex     fibrous    yellow      no
## 4219 poisonous      flat     fibrous    yellow      no
## 4220 poisonous      flat       scaly      gray      no
## 4221 poisonous      flat     fibrous    yellow      no
## 4222 poisonous      flat     fibrous    yellow      no
## 4223 poisonous    convex       scaly      gray      no
## 4224 poisonous    convex       scaly      gray      no
## 4225    edible      flat       scaly       red     yes
## 4226 poisonous      flat     fibrous    yellow      no
## 4227 poisonous      flat     fibrous      gray      no
## 4228 poisonous      flat       scaly      gray      no
## 4229 poisonous    convex     fibrous    yellow      no
## 4230 poisonous    convex     fibrous    yellow      no
## 4231 poisonous    convex     fibrous      gray      no
## 4232 poisonous    convex       scaly    yellow      no
## 4233 poisonous      flat      smooth     white     yes
## 4234 poisonous      flat     fibrous    yellow      no
## 4235 poisonous      flat     fibrous    yellow      no
## 4236 poisonous      flat       scaly      gray      no
## 4237 poisonous      flat     fibrous    yellow      no
## 4238 poisonous      flat     fibrous    yellow      no
## 4239 poisonous      flat     fibrous      gray      no
## 4240 poisonous    convex       scaly      gray      no
## 4241 poisonous    convex     fibrous    yellow      no
## 4242 poisonous      flat     fibrous      gray      no
## 4243 poisonous    convex     fibrous    yellow      no
## 4244 poisonous      flat       scaly      gray      no
## 4245 poisonous    convex       scaly    yellow      no
## 4246 poisonous    convex      smooth     white     yes
## 4247 poisonous      flat     fibrous      gray      no
## 4248 poisonous    convex      smooth      buff     yes
## 4249 poisonous      flat       scaly      gray      no
## 4250 poisonous    convex       scaly      gray      no
## 4251 poisonous    convex     fibrous    yellow      no
## 4252 poisonous    convex     fibrous    yellow      no
## 4253 poisonous    convex       scaly    yellow      no
## 4254    edible      flat       scaly      gray     yes
## 4255 poisonous      flat       scaly    yellow      no
## 4256 poisonous    convex       scaly      gray      no
## 4257 poisonous      flat     fibrous    yellow      no
## 4258 poisonous      flat       scaly    yellow      no
## 4259 poisonous      flat     fibrous    yellow      no
## 4260 poisonous    convex       scaly      gray      no
## 4261 poisonous      flat     fibrous      gray      no
## 4262 poisonous    convex       scaly      gray      no
## 4263 poisonous    convex     fibrous      pink      no
## 4264 poisonous    convex       scaly    yellow      no
## 4265 poisonous    convex     fibrous    yellow      no
## 4266 poisonous      flat     fibrous    yellow      no
## 4267 poisonous    convex       scaly      gray      no
## 4268 poisonous      flat     fibrous      gray      no
## 4269 poisonous    convex       scaly      gray      no
## 4270 poisonous    convex     fibrous    yellow      no
## 4271 poisonous    convex     fibrous    yellow      no
## 4272 poisonous    convex       scaly      gray      no
## 4273 poisonous    convex       scaly    yellow      no
## 4274 poisonous      flat       scaly      gray      no
## 4275 poisonous      flat       scaly      gray      no
## 4276 poisonous    convex     fibrous    yellow      no
## 4277    edible   knobbed       scaly     brown      no
## 4278 poisonous      flat     fibrous      gray      no
## 4279 poisonous    convex       scaly    yellow      no
## 4280 poisonous      flat     fibrous    yellow      no
## 4281 poisonous    convex       scaly      gray      no
## 4282 poisonous    convex     fibrous      gray      no
## 4283 poisonous      flat     fibrous    yellow      no
## 4284    edible      flat      smooth      pink     yes
## 4285 poisonous      flat     fibrous    yellow      no
## 4286 poisonous    convex     fibrous    yellow      no
## 4287 poisonous    convex       scaly      gray      no
## 4288 poisonous      flat       scaly      gray      no
## 4289 poisonous    convex     fibrous    yellow      no
## 4290 poisonous      flat       scaly      gray      no
## 4291 poisonous      flat       scaly      gray      no
## 4292    edible   knobbed      smooth      pink     yes
## 4293 poisonous    convex     fibrous    yellow      no
## 4294 poisonous      flat     fibrous    yellow      no
## 4295 poisonous      flat     fibrous      gray      no
## 4296 poisonous      flat     fibrous      gray      no
## 4297 poisonous    convex     fibrous    yellow      no
## 4298 poisonous      flat     fibrous      gray      no
## 4299 poisonous    convex       scaly      gray      no
## 4300 poisonous      flat       scaly    yellow      no
## 4301 poisonous      flat     fibrous      gray      no
## 4302 poisonous    convex     fibrous    yellow      no
## 4303 poisonous      flat     fibrous      gray      no
## 4304 poisonous      flat     fibrous      gray      no
## 4305 poisonous      flat     fibrous    yellow      no
## 4306    edible      flat       scaly      gray     yes
## 4307 poisonous      flat       scaly      gray      no
## 4308 poisonous      flat       scaly      gray      no
## 4309 poisonous      flat       scaly      gray      no
## 4310 poisonous    convex       scaly    yellow      no
## 4311 poisonous    convex       scaly      gray      no
## 4312 poisonous    convex       scaly    yellow      no
## 4313 poisonous      flat     fibrous    yellow      no
## 4314 poisonous    convex     fibrous    yellow      no
## 4315 poisonous    convex       scaly    yellow      no
## 4316 poisonous      flat     fibrous      gray      no
## 4317 poisonous    convex     fibrous    yellow      no
## 4318 poisonous      flat     fibrous      gray      no
## 4319 poisonous      flat       scaly      gray      no
## 4320 poisonous      flat     fibrous      gray      no
## 4321 poisonous      flat       scaly    yellow      no
## 4322 poisonous      flat     fibrous      gray      no
## 4323 poisonous    convex     fibrous    yellow      no
## 4324 poisonous      flat       scaly      gray      no
## 4325 poisonous      flat       scaly      gray      no
## 4326 poisonous      flat       scaly      gray      no
## 4327    edible    convex       scaly     green      no
## 4328 poisonous      flat       scaly    yellow      no
## 4329 poisonous    convex     fibrous    yellow      no
## 4330 poisonous    convex       scaly     brown      no
## 4331 poisonous      flat       scaly    yellow      no
## 4332 poisonous   knobbed       scaly     brown      no
## 4333 poisonous      flat     fibrous    yellow      no
## 4334 poisonous    convex       scaly      gray      no
## 4335 poisonous    convex       scaly      gray      no
## 4336 poisonous      flat       scaly      gray      no
## 4337 poisonous    convex     fibrous    yellow      no
## 4338 poisonous    convex     fibrous      gray      no
## 4339 poisonous    convex       scaly      gray      no
## 4340 poisonous    convex       scaly      gray      no
## 4341 poisonous    convex       scaly      gray      no
## 4342    edible      flat       scaly       red     yes
## 4343 poisonous      flat     fibrous    yellow      no
## 4344 poisonous    convex       scaly    yellow      no
## 4345 poisonous      flat     fibrous    yellow      no
## 4346 poisonous    convex     fibrous    yellow      no
## 4347 poisonous      flat     fibrous      gray      no
## 4348 poisonous      flat     fibrous      gray      no
## 4349 poisonous    convex       scaly    yellow      no
## 4350 poisonous      flat      smooth      buff     yes
## 4351 poisonous    convex       scaly      gray      no
## 4352 poisonous    convex       scaly    yellow      no
## 4353 poisonous      flat     fibrous      gray      no
## 4354 poisonous      flat       scaly      gray      no
## 4355 poisonous      flat     fibrous    yellow      no
## 4356 poisonous      flat       scaly      gray      no
## 4357 poisonous    convex       scaly      gray      no
## 4358    edible    convex      smooth       red     yes
## 4359 poisonous      flat     fibrous      gray      no
## 4360 poisonous      flat     fibrous    yellow      no
## 4361 poisonous      flat       scaly      gray      no
## 4362 poisonous    convex       scaly    yellow      no
## 4363 poisonous      flat       scaly      gray      no
## 4364 poisonous    convex     fibrous    yellow      no
## 4365 poisonous      bell       scaly     white     yes
## 4366 poisonous      flat      smooth      buff     yes
## 4367 poisonous    convex       scaly    yellow      no
## 4368 poisonous      flat       scaly      gray      no
## 4369 poisonous      flat       scaly      gray      no
## 4370 poisonous      flat       scaly    yellow      no
## 4371 poisonous      flat     fibrous      gray      no
## 4372 poisonous    convex       scaly    yellow      no
## 4373 poisonous    convex     fibrous    yellow      no
## 4374 poisonous      flat     fibrous      gray      no
## 4375 poisonous    convex      smooth     white     yes
## 4376    edible      flat       scaly      gray     yes
## 4377 poisonous    convex       scaly     brown      no
## 4378 poisonous      flat       scaly      gray      no
## 4379 poisonous      flat     fibrous      gray      no
## 4380    edible      flat       scaly       red     yes
## 4381    edible    convex       scaly      buff     yes
## 4382 poisonous    convex       scaly    yellow      no
## 4383 poisonous    convex       scaly    yellow      no
## 4384 poisonous    convex       scaly    yellow      no
## 4385 poisonous    convex       scaly    yellow      no
## 4386 poisonous      flat     fibrous    yellow      no
## 4387 poisonous      flat       scaly      gray      no
## 4388 poisonous    convex     fibrous      gray      no
## 4389 poisonous      flat       scaly    yellow      no
## 4390 poisonous    convex       scaly      gray      no
## 4391 poisonous    convex       scaly    yellow      no
## 4392 poisonous      flat       scaly      gray      no
## 4393 poisonous      flat       scaly    yellow      no
## 4394 poisonous    convex       scaly      gray      no
## 4395 poisonous      flat       scaly      gray      no
## 4396 poisonous      flat       scaly      gray      no
## 4397    edible    convex       scaly    purple      no
## 4398 poisonous    convex     fibrous      gray      no
## 4399 poisonous      flat     fibrous    yellow      no
## 4400 poisonous      flat     fibrous    yellow      no
## 4401 poisonous    convex     fibrous    yellow      no
## 4402 poisonous      flat     fibrous    yellow      no
## 4403 poisonous      flat     fibrous      gray      no
## 4404 poisonous      flat       scaly      gray      no
## 4405 poisonous      flat     fibrous      gray      no
## 4406 poisonous      flat     fibrous    yellow      no
## 4407 poisonous      flat       scaly    yellow      no
## 4408 poisonous      flat     fibrous      gray      no
## 4409 poisonous      flat       scaly      gray      no
## 4410 poisonous      flat     fibrous    yellow      no
## 4411    edible      flat     fibrous       red     yes
## 4412 poisonous      flat      smooth      buff     yes
## 4413 poisonous      flat       scaly      gray      no
## 4414 poisonous      flat     fibrous      gray      no
## 4415 poisonous    convex       scaly    yellow      no
## 4416 poisonous      flat     fibrous    yellow      no
## 4417 poisonous      flat       scaly    yellow      no
## 4418    edible      flat       scaly     brown     yes
## 4419 poisonous      flat       scaly    yellow      no
## 4420    edible    convex      smooth      buff     yes
## 4421 poisonous    convex       scaly    yellow      no
## 4422 poisonous    convex     fibrous    yellow      no
## 4423 poisonous    convex       scaly    yellow      no
## 4424 poisonous      flat       scaly      gray      no
## 4425    edible      flat     fibrous       red     yes
## 4426 poisonous      flat     fibrous    yellow      no
## 4427 poisonous      flat     fibrous    yellow      no
## 4428 poisonous    convex       scaly    yellow      no
## 4429 poisonous    convex     fibrous    yellow      no
## 4430 poisonous    convex       scaly     brown      no
## 4431 poisonous      flat     fibrous    yellow      no
## 4432 poisonous    convex       scaly    yellow      no
## 4433 poisonous      flat     fibrous    yellow      no
## 4434 poisonous      flat     fibrous    yellow      no
## 4435 poisonous      flat       scaly      gray      no
## 4436 poisonous      flat       scaly      gray      no
## 4437 poisonous      flat       scaly      gray      no
## 4438 poisonous      flat     fibrous      gray      no
## 4439 poisonous    convex      smooth      gray      no
## 4440 poisonous    convex       scaly    yellow      no
## 4441 poisonous      flat      smooth      gray     yes
## 4442 poisonous    convex       scaly      gray      no
## 4443 poisonous    convex       scaly    yellow      no
## 4444 poisonous    convex       scaly    yellow      no
## 4445    edible      flat       scaly      gray     yes
## 4446 poisonous      flat     fibrous      gray      no
## 4447 poisonous      flat       scaly    yellow      no
## 4448 poisonous      flat       scaly      gray      no
## 4449 poisonous    convex       scaly    yellow      no
## 4450 poisonous    convex       scaly      gray      no
## 4451 poisonous    convex     fibrous    yellow      no
## 4452    edible      flat       scaly     brown     yes
## 4453 poisonous    convex       scaly      gray      no
## 4454 poisonous      flat     fibrous    yellow      no
## 4455 poisonous    convex       scaly      gray      no
## 4456 poisonous    convex       scaly    yellow      no
## 4457 poisonous      flat     fibrous      gray      no
## 4458 poisonous      flat     fibrous      gray      no
## 4459 poisonous    convex       scaly    yellow      no
## 4460    edible   knobbed       scaly      buff     yes
## 4461 poisonous    convex       scaly    yellow      no
## 4462 poisonous    convex       scaly     brown      no
## 4463 poisonous      flat       scaly      gray      no
## 4464 poisonous    convex       scaly      gray      no
## 4465 poisonous      flat       scaly    yellow      no
## 4466 poisonous      flat       scaly      gray      no
## 4467 poisonous      flat     fibrous      gray      no
## 4468 poisonous      flat       scaly    yellow      no
## 4469 poisonous    convex     fibrous    yellow      no
## 4470 poisonous    convex      smooth     white     yes
## 4471 poisonous    convex       scaly    yellow      no
## 4472 poisonous      flat     fibrous    yellow      no
## 4473 poisonous    convex     fibrous    yellow      no
## 4474 poisonous    convex       scaly    yellow      no
## 4475 poisonous      flat       scaly    yellow      no
## 4476 poisonous    convex       scaly    yellow      no
## 4477 poisonous    convex       scaly    yellow      no
## 4478 poisonous      flat       scaly      gray      no
## 4479 poisonous      flat     fibrous    yellow      no
## 4480 poisonous      flat     fibrous      gray      no
## 4481    edible      flat       scaly     brown     yes
## 4482 poisonous    convex       scaly    yellow      no
## 4483 poisonous    convex       scaly      gray      no
## 4484 poisonous      flat       scaly      gray      no
## 4485 poisonous      flat       scaly      gray      no
## 4486 poisonous    convex       scaly    yellow      no
## 4487 poisonous      flat     fibrous      gray      no
## 4488 poisonous    convex       scaly      gray      no
## 4489 poisonous    convex       scaly    yellow      no
## 4490 poisonous    convex     fibrous    yellow      no
## 4491 poisonous      flat     fibrous    yellow      no
## 4492    edible      flat     fibrous  cinnamon      no
## 4493 poisonous      flat       scaly      gray      no
## 4494 poisonous    convex       scaly      gray      no
## 4495 poisonous      flat     fibrous    yellow      no
## 4496 poisonous      flat     fibrous    yellow      no
## 4497 poisonous    convex      smooth      gray     yes
## 4498    edible      flat      smooth     brown     yes
## 4499 poisonous    convex       scaly     brown      no
## 4500 poisonous    convex      smooth      gray      no
## 4501 poisonous    convex     fibrous    yellow      no
## 4502 poisonous      flat       scaly      gray      no
## 4503 poisonous      flat       scaly      gray      no
## 4504 poisonous    convex       scaly    yellow      no
## 4505 poisonous    convex       scaly    yellow      no
## 4506 poisonous    convex       scaly      gray      no
## 4507 poisonous      flat       scaly      gray      no
## 4508 poisonous      flat       scaly      gray      no
## 4509 poisonous      flat     fibrous    yellow      no
## 4510 poisonous    convex     fibrous    yellow      no
## 4511 poisonous      flat     fibrous    yellow      no
## 4512 poisonous      flat     fibrous      gray      no
## 4513 poisonous      flat     fibrous    yellow      no
## 4514 poisonous      flat       scaly    yellow      no
## 4515 poisonous      flat     fibrous    yellow      no
## 4516 poisonous      flat     fibrous    yellow      no
## 4517 poisonous    convex       scaly      gray      no
## 4518 poisonous    convex       scaly      gray      no
## 4519 poisonous    convex       scaly      gray      no
## 4520    edible    convex      smooth      buff     yes
## 4521 poisonous      flat     fibrous      gray      no
## 4522 poisonous    convex     fibrous    yellow      no
## 4523 poisonous    convex       scaly     brown      no
## 4524 poisonous    convex       scaly      gray      no
## 4525 poisonous      flat       scaly      gray      no
## 4526 poisonous      flat       scaly      gray      no
## 4527 poisonous      flat     fibrous    yellow      no
## 4528 poisonous    convex       scaly    yellow      no
## 4529 poisonous    convex     fibrous    yellow      no
## 4530 poisonous      flat     fibrous      gray      no
## 4531 poisonous    convex       scaly      gray      no
## 4532 poisonous      flat     fibrous    yellow      no
## 4533 poisonous    convex     fibrous    yellow      no
## 4534    edible    convex       scaly    purple      no
## 4535    edible      flat       scaly      buff     yes
## 4536 poisonous      flat       scaly    yellow      no
## 4537 poisonous    convex       scaly    yellow      no
## 4538 poisonous    convex       scaly      gray      no
## 4539 poisonous      flat     fibrous      gray      no
## 4540 poisonous      flat       scaly      gray      no
## 4541 poisonous      flat     fibrous      gray      no
## 4542 poisonous      flat       scaly      gray      no
## 4543 poisonous    convex     fibrous    yellow      no
## 4544 poisonous      flat     fibrous    yellow      no
## 4545 poisonous      flat     fibrous      gray      no
## 4546 poisonous      flat       scaly    yellow      no
## 4547 poisonous      flat       scaly    yellow      no
## 4548 poisonous      flat     fibrous      gray      no
## 4549 poisonous      flat      smooth      buff     yes
## 4550 poisonous      flat      smooth     white     yes
## 4551 poisonous    convex       scaly    yellow      no
## 4552 poisonous      flat     fibrous    yellow      no
## 4553 poisonous      flat       scaly      gray      no
## 4554 poisonous    convex       scaly    yellow      no
## 4555 poisonous    convex     fibrous    yellow      no
## 4556 poisonous    convex     fibrous    yellow      no
## 4557    edible      flat     fibrous      gray     yes
## 4558    edible    convex       scaly    purple      no
## 4559 poisonous    convex       scaly      gray      no
## 4560 poisonous      flat     fibrous    yellow      no
## 4561 poisonous    convex       scaly    yellow      no
## 4562 poisonous      flat       scaly      gray      no
## 4563 poisonous    convex       scaly    yellow      no
## 4564 poisonous    convex     fibrous    yellow      no
## 4565 poisonous    convex       scaly    yellow      no
## 4566 poisonous      flat     fibrous    yellow      no
## 4567 poisonous    convex       scaly      gray      no
## 4568 poisonous      flat       scaly      gray      no
## 4569 poisonous      flat       scaly      gray      no
## 4570 poisonous    convex     fibrous    yellow      no
## 4571    edible      flat     fibrous       red     yes
## 4572 poisonous    convex       scaly    yellow      no
## 4573 poisonous      flat     fibrous      gray      no
## 4574 poisonous    convex       scaly      gray      no
## 4575 poisonous      flat       scaly      gray      no
## 4576 poisonous      flat     fibrous      gray      no
## 4577 poisonous      flat     fibrous      gray      no
## 4578 poisonous      flat     fibrous      gray      no
## 4579 poisonous      flat       scaly      gray      no
## 4580 poisonous      flat     fibrous    yellow      no
## 4581 poisonous    convex     fibrous    yellow      no
## 4582 poisonous    convex       scaly      gray      no
## 4583 poisonous    convex       scaly      gray      no
## 4584 poisonous    convex     fibrous     white      no
## 4585 poisonous      flat     fibrous      gray      no
## 4586 poisonous    convex     fibrous    yellow      no
## 4587 poisonous      flat       scaly      gray      no
## 4588 poisonous    convex     fibrous    yellow      no
## 4589 poisonous      flat       scaly      gray      no
## 4590 poisonous      flat       scaly      gray      no
## 4591 poisonous      flat     fibrous    yellow      no
## 4592 poisonous    convex       scaly      gray      no
## 4593 poisonous      flat       scaly    yellow      no
## 4594 poisonous      flat     fibrous    yellow      no
## 4595 poisonous    convex     fibrous    yellow      no
## 4596 poisonous      flat     fibrous    yellow      no
## 4597 poisonous    convex       scaly    yellow      no
## 4598 poisonous      flat     fibrous    yellow      no
## 4599 poisonous    convex     fibrous    yellow      no
## 4600 poisonous      flat       scaly      gray      no
## 4601 poisonous      flat     fibrous      gray      no
## 4602 poisonous      flat     fibrous    yellow      no
## 4603 poisonous      flat     fibrous      gray      no
## 4604 poisonous      flat     fibrous      gray      no
## 4605 poisonous      flat     fibrous    yellow      no
## 4606 poisonous    convex       scaly    yellow      no
## 4607 poisonous    convex       scaly    yellow      no
## 4608 poisonous      flat     fibrous    yellow      no
## 4609 poisonous    convex       scaly    yellow      no
## 4610 poisonous    convex       scaly    yellow      no
## 4611 poisonous    convex       scaly     brown      no
## 4612    edible      flat       scaly      buff     yes
## 4613 poisonous    convex     fibrous    yellow      no
## 4614 poisonous    convex       scaly    yellow      no
## 4615 poisonous      flat       scaly      gray      no
## 4616 poisonous    convex       scaly    yellow      no
## 4617 poisonous      flat       scaly      gray      no
## 4618 poisonous      flat       scaly      gray      no
## 4619 poisonous      flat     fibrous      gray      no
## 4620 poisonous    convex     fibrous    yellow      no
## 4621 poisonous      flat     fibrous    yellow      no
## 4622 poisonous      flat     fibrous    yellow      no
## 4623 poisonous      flat       scaly      gray      no
## 4624 poisonous      flat       scaly      gray      no
## 4625 poisonous      flat     fibrous      gray      no
## 4626 poisonous      flat       scaly      gray      no
## 4627 poisonous      flat     fibrous      gray      no
## 4628 poisonous      flat       scaly      gray      no
## 4629 poisonous    convex     fibrous      gray      no
## 4630 poisonous      flat      smooth      buff     yes
## 4631    edible      flat     fibrous       red     yes
## 4632 poisonous    convex       scaly    yellow      no
## 4633 poisonous    convex       scaly      gray      no
## 4634 poisonous      flat       scaly      gray      no
## 4635    edible      flat     fibrous      gray     yes
## 4636 poisonous    convex       scaly    yellow      no
## 4637 poisonous    convex       scaly    yellow      no
## 4638 poisonous      flat     fibrous    yellow      no
## 4639 poisonous    convex     fibrous    yellow      no
## 4640 poisonous    convex     fibrous    yellow      no
## 4641 poisonous    convex       scaly      gray      no
## 4642 poisonous      flat      smooth     white     yes
## 4643 poisonous    convex       scaly      gray      no
## 4644 poisonous    convex     fibrous    yellow      no
## 4645 poisonous      flat       scaly      gray      no
## 4646 poisonous    convex       scaly      gray      no
## 4647 poisonous    convex     fibrous    yellow      no
## 4648    edible      flat       scaly    purple      no
## 4649 poisonous      flat     fibrous    yellow      no
## 4650 poisonous      flat       scaly      gray      no
## 4651 poisonous    convex       scaly    yellow      no
## 4652 poisonous      flat     fibrous      gray      no
## 4653    edible      flat       scaly     brown     yes
## 4654 poisonous    convex     fibrous    yellow      no
## 4655 poisonous      flat     fibrous      gray      no
## 4656 poisonous    convex       scaly      gray      no
## 4657 poisonous      flat     fibrous    yellow      no
## 4658 poisonous    convex     fibrous    yellow      no
## 4659 poisonous    convex       scaly    yellow      no
## 4660 poisonous    convex     fibrous    yellow      no
## 4661 poisonous      flat       scaly      gray      no
## 4662 poisonous    convex      smooth     white     yes
## 4663    edible      flat       scaly       red     yes
## 4664    edible    convex       scaly    purple      no
## 4665 poisonous    convex       scaly    yellow      no
## 4666 poisonous    convex       scaly      gray      no
## 4667 poisonous    convex     fibrous    yellow      no
## 4668 poisonous      flat     fibrous      gray      no
## 4669 poisonous    convex       scaly      gray      no
## 4670 poisonous      flat     fibrous      gray      no
## 4671 poisonous      flat     fibrous    yellow      no
## 4672 poisonous    convex       scaly      gray      no
## 4673 poisonous      flat       scaly      gray      no
## 4674    edible      flat      smooth      pink     yes
## 4675 poisonous      flat     fibrous      gray      no
## 4676 poisonous    convex       scaly    yellow      no
## 4677 poisonous    convex       scaly      gray      no
## 4678 poisonous      flat     fibrous    yellow      no
## 4679 poisonous    convex     fibrous    yellow      no
## 4680 poisonous      flat       scaly      gray      no
## 4681 poisonous      flat       scaly    yellow      no
## 4682 poisonous    convex       scaly      gray      no
## 4683 poisonous    convex       scaly      gray      no
## 4684 poisonous      flat     fibrous    yellow      no
## 4685 poisonous      flat     fibrous      gray      no
## 4686 poisonous    convex       scaly      gray      no
## 4687 poisonous      flat     fibrous    yellow      no
## 4688 poisonous      flat       scaly      gray      no
## 4689 poisonous    convex       scaly      gray      no
## 4690 poisonous      flat     fibrous      gray      no
## 4691 poisonous    convex       scaly      gray      no
## 4692 poisonous      flat     fibrous      gray      no
## 4693 poisonous    convex       scaly    yellow      no
## 4694 poisonous    convex     fibrous    yellow      no
## 4695 poisonous    convex       scaly      gray      no
## 4696 poisonous      flat     fibrous    yellow      no
## 4697    edible      flat       scaly     brown     yes
## 4698 poisonous      flat     fibrous      gray      no
## 4699 poisonous    convex       scaly    yellow      no
## 4700 poisonous    convex      smooth      gray     yes
## 4701 poisonous      flat       scaly    yellow      no
## 4702 poisonous    convex       scaly    yellow      no
## 4703 poisonous    convex     fibrous     white      no
## 4704 poisonous    convex     fibrous    yellow      no
## 4705 poisonous      flat      smooth      buff     yes
## 4706 poisonous    convex       scaly    yellow      no
## 4707 poisonous    convex       scaly      gray      no
## 4708 poisonous      flat     fibrous    yellow      no
## 4709 poisonous      flat      smooth      pink     yes
## 4710 poisonous      flat      smooth      buff     yes
## 4711 poisonous    convex       scaly      gray      no
## 4712 poisonous    convex       scaly      gray      no
## 4713 poisonous    convex       scaly      gray      no
## 4714 poisonous      flat     fibrous      gray      no
## 4715 poisonous      flat     fibrous      gray      no
## 4716 poisonous    convex     fibrous    yellow      no
## 4717 poisonous      flat     fibrous    yellow      no
## 4718    edible      flat       scaly    purple      no
## 4719 poisonous    convex     fibrous    yellow      no
## 4720    edible      flat     fibrous       red     yes
## 4721 poisonous      flat     fibrous    yellow      no
## 4722 poisonous    convex     fibrous    yellow      no
## 4723 poisonous    convex       scaly     brown      no
## 4724 poisonous    convex       scaly      gray      no
## 4725 poisonous    convex     fibrous    yellow      no
## 4726 poisonous      flat     fibrous      gray      no
## 4727 poisonous    convex       scaly      gray      no
## 4728 poisonous    convex       scaly      gray      no
## 4729 poisonous    convex     fibrous    yellow      no
## 4730 poisonous      flat     fibrous    yellow      no
## 4731 poisonous      flat       scaly      gray      no
## 4732 poisonous      flat       scaly      gray      no
## 4733    edible      flat       scaly     brown     yes
## 4734 poisonous    convex       scaly    yellow      no
## 4735    edible      flat     fibrous       red     yes
## 4736 poisonous    convex     fibrous    yellow      no
## 4737 poisonous    convex       scaly      gray      no
## 4738 poisonous      flat       scaly      gray      no
## 4739 poisonous    convex     fibrous    yellow      no
## 4740 poisonous      flat     fibrous      gray      no
## 4741 poisonous      flat     fibrous      gray      no
## 4742 poisonous      flat       scaly      gray      no
## 4743 poisonous      flat       scaly      gray      no
## 4744 poisonous    convex     fibrous    yellow      no
## 4745 poisonous    convex       scaly    yellow      no
## 4746 poisonous      flat     fibrous    yellow      no
## 4747 poisonous    convex       scaly      gray      no
## 4748 poisonous      flat     fibrous    yellow      no
## 4749 poisonous      flat       scaly      gray      no
## 4750 poisonous    convex     fibrous      pink      no
## 4751 poisonous      flat     fibrous    yellow      no
## 4752 poisonous    convex       scaly      gray      no
## 4753 poisonous    convex       scaly    yellow      no
## 4754 poisonous    convex       scaly      gray      no
## 4755 poisonous      flat       scaly    yellow      no
## 4756 poisonous    convex       scaly      gray      no
## 4757 poisonous    convex     fibrous    yellow      no
## 4758 poisonous      flat       scaly      gray      no
## 4759 poisonous      flat       scaly      gray      no
## 4760 poisonous    convex       scaly    yellow      no
## 4761 poisonous      flat     fibrous    yellow      no
## 4762 poisonous    convex       scaly      gray      no
## 4763 poisonous    convex       scaly    yellow      no
## 4764 poisonous    convex       scaly      gray      no
## 4765 poisonous    convex       scaly      gray      no
## 4766 poisonous    convex     fibrous    yellow      no
## 4767 poisonous    convex       scaly      gray      no
## 4768 poisonous      flat     fibrous      gray      no
## 4769 poisonous      flat     fibrous      gray      no
## 4770 poisonous    convex       scaly      gray      no
## 4771 poisonous    convex     fibrous    yellow      no
## 4772 poisonous    convex       scaly      gray      no
## 4773 poisonous      flat     fibrous      gray      no
## 4774 poisonous    convex       scaly    yellow      no
## 4775 poisonous    convex     fibrous    yellow      no
## 4776 poisonous      flat       scaly      gray      no
## 4777 poisonous      flat     fibrous      gray      no
## 4778    edible    convex      smooth      pink     yes
## 4779 poisonous      flat     fibrous    yellow      no
## 4780 poisonous    convex      smooth      pink      no
## 4781 poisonous    convex     fibrous    yellow      no
## 4782 poisonous      flat     fibrous      gray      no
## 4783 poisonous    convex     fibrous    yellow      no
## 4784    edible      flat     fibrous       red     yes
## 4785 poisonous    convex       scaly    yellow      no
## 4786 poisonous    convex     fibrous    yellow      no
## 4787 poisonous      flat       scaly      gray      no
## 4788 poisonous      flat     fibrous    yellow      no
## 4789    edible      flat       scaly     brown     yes
## 4790 poisonous    convex       scaly    yellow      no
## 4791 poisonous      flat     fibrous      gray      no
## 4792 poisonous    convex       scaly    yellow      no
## 4793 poisonous      flat     fibrous    yellow      no
## 4794 poisonous      flat       scaly    yellow      no
## 4795 poisonous      flat       scaly      gray      no
## 4796 poisonous      flat     fibrous      gray      no
## 4797 poisonous    convex       scaly    yellow      no
## 4798 poisonous      flat       scaly      gray      no
## 4799 poisonous    convex       scaly    yellow      no
## 4800    edible      flat     fibrous      gray     yes
## 4801 poisonous    convex      smooth      gray     yes
## 4802 poisonous    convex       scaly     brown      no
## 4803 poisonous      flat      smooth      gray     yes
## 4804 poisonous      flat       scaly      gray      no
## 4805 poisonous      flat       scaly    yellow      no
## 4806 poisonous      flat       scaly      gray      no
## 4807    edible      flat       scaly       red     yes
## 4808 poisonous      flat       scaly      gray      no
## 4809 poisonous    convex     fibrous    yellow      no
## 4810 poisonous      flat     fibrous      gray      no
## 4811 poisonous    convex       scaly    yellow      no
## 4812 poisonous      flat     fibrous    yellow      no
## 4813    edible      flat       scaly     brown     yes
## 4814 poisonous      flat       scaly      gray      no
## 4815 poisonous   knobbed     fibrous     brown      no
## 4816 poisonous      flat     fibrous      gray      no
## 4817 poisonous      flat     fibrous    yellow      no
## 4818 poisonous    convex       scaly     brown      no
## 4819 poisonous      flat     fibrous      gray      no
## 4820 poisonous      flat     fibrous      gray      no
## 4821 poisonous      flat      smooth     white     yes
## 4822 poisonous      flat     fibrous    yellow      no
## 4823 poisonous    convex       scaly      gray      no
## 4824 poisonous    convex     fibrous    yellow      no
## 4825    edible    convex       scaly       red     yes
## 4826 poisonous      flat       scaly    yellow      no
## 4827 poisonous      bell     fibrous    yellow      no
## 4828 poisonous      flat       scaly    yellow      no
## 4829 poisonous    convex      smooth      gray     yes
## 4830 poisonous      flat       scaly    yellow      no
## 4831 poisonous      flat     fibrous    yellow      no
## 4832    edible   knobbed       scaly       red     yes
## 4833 poisonous      flat     fibrous    yellow      no
## 4834 poisonous      flat     fibrous    yellow      no
## 4835    edible   knobbed       scaly     brown      no
## 4836 poisonous    convex      smooth     white      no
## 4837 poisonous    convex     fibrous    yellow      no
## 4838 poisonous    convex     fibrous    yellow      no
## 4839 poisonous    convex     fibrous    yellow      no
## 4840 poisonous      flat       scaly    yellow      no
## 4841 poisonous      bell      smooth      buff     yes
## 4842 poisonous    convex      smooth     white     yes
## 4843    edible      flat       scaly       red     yes
## 4844 poisonous      bell      smooth     white     yes
## 4845    edible      flat       scaly      pink     yes
## 4846 poisonous    convex      smooth     white     yes
## 4847    edible   knobbed       scaly     brown     yes
## 4848 poisonous    convex       scaly    yellow      no
## 4849 poisonous      flat      smooth      buff     yes
## 4850 poisonous      flat       scaly      gray      no
## 4851 poisonous    convex       scaly    yellow      no
## 4852 poisonous    convex       scaly      gray      no
## 4853 poisonous    convex     fibrous    yellow      no
## 4854 poisonous    convex       scaly    yellow      no
## 4855 poisonous    convex       scaly    yellow      no
## 4856 poisonous    convex     fibrous    yellow      no
## 4857 poisonous    convex       scaly      gray      no
## 4858 poisonous      flat     fibrous      gray      no
## 4859    edible   knobbed      smooth       red     yes
## 4860    edible      flat       scaly     brown     yes
## 4861    edible      flat      smooth      buff     yes
## 4862 poisonous    convex       scaly    yellow      no
## 4863    edible      flat     fibrous      gray     yes
## 4864 poisonous      flat     fibrous    yellow      no
## 4865 poisonous      flat       scaly      gray      no
## 4866 poisonous    convex      smooth      gray     yes
## 4867 poisonous      flat     fibrous      gray      no
## 4868 poisonous    convex     fibrous    yellow      no
## 4869 poisonous      flat     fibrous    yellow      no
## 4870 poisonous    convex       scaly     brown      no
## 4871 poisonous      flat     fibrous      gray      no
## 4872    edible      flat       scaly     brown     yes
## 4873    edible      flat       scaly       red     yes
## 4874 poisonous      flat       scaly      gray      no
## 4875 poisonous    convex       scaly    yellow      no
## 4876 poisonous      flat     fibrous      gray      no
## 4877    edible      flat     fibrous       red     yes
## 4878 poisonous    convex       scaly    yellow      no
## 4879 poisonous      flat     fibrous    yellow      no
## 4880 poisonous      flat     fibrous      gray      no
## 4881 poisonous      flat       scaly    yellow      no
## 4882 poisonous    convex       scaly      gray      no
## 4883 poisonous      bell       scaly     white     yes
## 4884 poisonous      flat     fibrous    yellow      no
## 4885 poisonous    convex       scaly     brown      no
## 4886 poisonous      flat     fibrous      gray      no
## 4887 poisonous    convex       scaly    yellow      no
## 4888 poisonous      flat       scaly    yellow      no
## 4889    edible      flat       scaly      pink     yes
## 4890 poisonous    convex      smooth     white     yes
## 4891 poisonous      flat       scaly      gray      no
## 4892 poisonous    convex       scaly      gray      no
## 4893 poisonous    convex     fibrous    yellow      no
## 4894 poisonous      flat      smooth      buff     yes
## 4895 poisonous    convex     fibrous      gray      no
## 4896 poisonous    convex     fibrous    yellow      no
## 4897 poisonous      flat       scaly      gray      no
## 4898 poisonous      flat       scaly    yellow      no
## 4899    edible    convex       scaly     green      no
## 4900    edible      flat       scaly     white      no
## 4901 poisonous    convex     fibrous    yellow      no
## 4902 poisonous      flat       scaly    yellow      no
## 4903 poisonous      flat       scaly    yellow      no
## 4904 poisonous    convex       scaly       red      no
## 4905 poisonous    convex       scaly       red      no
## 4906 poisonous    convex       scaly      gray      no
## 4907 poisonous    convex       scaly    yellow      no
## 4908 poisonous      flat     fibrous      gray      no
## 4909 poisonous    convex       scaly      gray      no
## 4910 poisonous    convex       scaly    yellow      no
## 4911 poisonous      flat     fibrous    yellow      no
## 4912    edible      flat      smooth       red     yes
## 4913 poisonous      flat     fibrous    yellow      no
## 4914 poisonous    convex       scaly    yellow      no
## 4915 poisonous      flat      smooth      gray     yes
## 4916 poisonous      flat     fibrous    yellow      no
## 4917 poisonous    convex       scaly    yellow      no
## 4918 poisonous    convex     fibrous    yellow      no
## 4919 poisonous    convex      smooth      gray     yes
## 4920 poisonous      flat       scaly      gray      no
## 4921 poisonous      flat     fibrous      gray      no
## 4922 poisonous    convex      smooth     white      no
## 4923 poisonous      flat       scaly      gray      no
## 4924    edible      flat       scaly       red     yes
## 4925 poisonous    convex     fibrous    yellow      no
## 4926 poisonous    convex       scaly    yellow      no
## 4927    edible   knobbed      smooth      buff     yes
## 4928 poisonous      flat     fibrous    yellow      no
## 4929 poisonous      flat     fibrous    yellow      no
## 4930 poisonous    convex       scaly    yellow      no
## 4931    edible    convex     fibrous     brown      no
## 4932    edible    convex       scaly       red     yes
## 4933 poisonous    convex       scaly      gray      no
## 4934 poisonous    convex     fibrous    yellow      no
## 4935 poisonous      flat      smooth      gray     yes
## 4936 poisonous    convex       scaly    yellow      no
## 4937 poisonous      flat       scaly      gray      no
## 4938 poisonous    convex       scaly      gray      no
## 4939 poisonous    convex       scaly     brown      no
## 4940    edible   knobbed      smooth      buff     yes
## 4941 poisonous      flat     fibrous    yellow      no
## 4942 poisonous    convex     fibrous      gray      no
## 4943 poisonous      flat       scaly      gray      no
## 4944 poisonous    convex     fibrous    yellow      no
## 4945 poisonous      flat       scaly    yellow      no
## 4946    edible   knobbed      smooth      pink     yes
## 4947 poisonous      flat       scaly     brown      no
## 4948 poisonous    convex       scaly      gray      no
## 4949 poisonous    convex     fibrous    yellow      no
## 4950 poisonous    convex       scaly      gray      no
## 4951 poisonous      flat      smooth      buff     yes
## 4952    edible      flat      smooth      buff     yes
## 4953 poisonous      flat      smooth     white     yes
## 4954 poisonous      flat       scaly      gray      no
## 4955 poisonous    convex     fibrous    yellow      no
## 4956 poisonous      flat       scaly      gray      no
## 4957 poisonous      flat       scaly    yellow      no
## 4958 poisonous      flat     fibrous    yellow      no
## 4959 poisonous    convex      smooth      buff     yes
## 4960 poisonous      flat     fibrous      gray      no
## 4961 poisonous    convex       scaly      gray      no
## 4962 poisonous      flat     fibrous    yellow      no
## 4963 poisonous      flat       scaly    yellow      no
## 4964 poisonous      flat      smooth      gray     yes
## 4965    edible      flat      smooth      buff     yes
## 4966    edible    convex      smooth      pink     yes
## 4967    edible   knobbed      smooth     brown     yes
## 4968 poisonous      flat       scaly      pink     yes
## 4969 poisonous      flat       scaly      gray      no
## 4970 poisonous    convex       scaly    yellow      no
## 4971 poisonous      flat     fibrous      gray      no
## 4972 poisonous      flat     fibrous      gray      no
## 4973 poisonous    convex     fibrous    yellow      no
## 4974 poisonous      flat     fibrous      gray      no
## 4975 poisonous      flat       scaly      gray      no
## 4976 poisonous      flat       scaly    yellow      no
## 4977 poisonous      flat     fibrous    yellow      no
## 4978 poisonous      flat       scaly    yellow      no
## 4979 poisonous    convex       scaly    yellow      no
## 4980 poisonous    convex       scaly    yellow      no
## 4981 poisonous      flat       scaly      gray      no
## 4982 poisonous      flat     fibrous      gray      no
## 4983 poisonous    convex       scaly    yellow      no
## 4984 poisonous    convex       scaly    yellow      no
## 4985    edible      flat       scaly    purple      no
## 4986 poisonous      flat     fibrous      gray      no
## 4987 poisonous    convex       scaly     brown      no
## 4988 poisonous    convex       scaly    yellow      no
## 4989 poisonous    convex       scaly    yellow      no
## 4990 poisonous    convex       scaly      gray      no
## 4991 poisonous      flat     fibrous    yellow      no
## 4992 poisonous    convex     fibrous    yellow      no
## 4993 poisonous    convex       scaly      gray      no
## 4994    edible      flat      smooth      buff     yes
## 4995 poisonous      flat     fibrous      gray      no
## 4996 poisonous      flat       scaly    yellow      no
## 4997    edible    convex      smooth     brown     yes
## 4998 poisonous      flat     fibrous      gray      no
## 4999 poisonous    convex       scaly      gray      no
## 5000 poisonous    convex       scaly     brown      no
print(df_new_fungus[5001:6000, ])
##            eat cap_shape cap_surface cap_color bruises
## 5001 poisonous      flat     fibrous    yellow      no
## 5002 poisonous    convex       scaly     brown      no
## 5003 poisonous      bell      smooth      buff     yes
## 5004 poisonous      flat     fibrous    yellow      no
## 5005 poisonous      flat       scaly      gray      no
## 5006    edible      flat       scaly    purple      no
## 5007 poisonous    convex     fibrous    yellow      no
## 5008 poisonous      flat       scaly    yellow      no
## 5009 poisonous      flat     fibrous    yellow      no
## 5010 poisonous    convex       scaly    yellow      no
## 5011    edible    convex       scaly       red     yes
## 5012 poisonous      flat     fibrous      gray      no
## 5013 poisonous    convex       scaly    yellow      no
## 5014 poisonous    convex       scaly    yellow      no
## 5015 poisonous      flat       scaly      gray      no
## 5016    edible   knobbed      smooth      buff     yes
## 5017 poisonous      flat       scaly    yellow      no
## 5018 poisonous    convex       scaly      gray      no
## 5019 poisonous    convex     fibrous    yellow      no
## 5020 poisonous      flat     fibrous    yellow      no
## 5021 poisonous      flat      smooth     white     yes
## 5022 poisonous    convex      smooth      gray      no
## 5023 poisonous      flat       scaly    yellow      no
## 5024    edible      flat       scaly    purple      no
## 5025 poisonous    convex     fibrous    yellow      no
## 5026 poisonous      flat       scaly      gray      no
## 5027 poisonous    convex     fibrous    yellow      no
## 5028 poisonous    convex     fibrous    yellow      no
## 5029 poisonous    convex      smooth      gray     yes
## 5030 poisonous      flat       scaly      gray      no
## 5031 poisonous      flat     fibrous    yellow      no
## 5032 poisonous      flat     fibrous    yellow      no
## 5033 poisonous    convex       scaly      gray      no
## 5034 poisonous    convex       scaly      gray      no
## 5035 poisonous    convex       scaly      gray      no
## 5036 poisonous    convex     fibrous      gray      no
## 5037 poisonous    convex       scaly    yellow      no
## 5038 poisonous      flat     fibrous      gray      no
## 5039 poisonous      flat     fibrous    yellow      no
## 5040 poisonous    convex       scaly      gray      no
## 5041 poisonous      flat     fibrous    yellow      no
## 5042 poisonous    convex       scaly     brown      no
## 5043 poisonous    convex     fibrous    yellow      no
## 5044 poisonous    convex       scaly    yellow      no
## 5045 poisonous      flat      smooth      buff     yes
## 5046 poisonous      flat     fibrous      gray      no
## 5047 poisonous      flat       scaly    yellow      no
## 5048 poisonous    convex     fibrous    yellow      no
## 5049 poisonous      flat     fibrous      gray      no
## 5050 poisonous    convex       scaly    yellow      no
## 5051 poisonous    convex       scaly      gray      no
## 5052 poisonous    convex       scaly       red      no
## 5053    edible   knobbed       scaly      buff     yes
## 5054    edible      flat       scaly      buff     yes
## 5055 poisonous    convex       scaly      gray      no
## 5056 poisonous      flat     fibrous    yellow      no
## 5057 poisonous    convex       scaly      gray      no
## 5058 poisonous      flat       scaly      gray      no
## 5059 poisonous    convex      smooth      buff     yes
## 5060 poisonous      flat       scaly    yellow      no
## 5061 poisonous    convex      smooth     white     yes
## 5062 poisonous    convex     fibrous    yellow      no
## 5063 poisonous    convex       scaly      gray      no
## 5064 poisonous    convex      smooth     white     yes
## 5065 poisonous      flat      smooth      buff     yes
## 5066 poisonous    convex      smooth     white     yes
## 5067 poisonous      flat     fibrous    yellow      no
## 5068 poisonous      flat       scaly      gray      no
## 5069 poisonous    convex     fibrous    yellow      no
## 5070 poisonous      flat     fibrous      gray      no
## 5071    edible    convex       scaly     white      no
## 5072    edible    convex      smooth       red     yes
## 5073 poisonous    convex       scaly      gray      no
## 5074 poisonous      flat     fibrous      gray      no
## 5075 poisonous    convex       scaly     brown      no
## 5076 poisonous    convex       scaly      gray      no
## 5077 poisonous      flat     fibrous      gray      no
## 5078 poisonous      flat     fibrous    yellow      no
## 5079 poisonous      flat     fibrous    yellow      no
## 5080    edible      flat     fibrous       red     yes
## 5081 poisonous    convex       scaly    yellow      no
## 5082 poisonous      flat       scaly    yellow      no
## 5083 poisonous      flat     fibrous      gray      no
## 5084 poisonous    convex       scaly    yellow      no
## 5085 poisonous    convex     fibrous    yellow      no
## 5086 poisonous   knobbed     fibrous    yellow      no
## 5087 poisonous      flat     fibrous    yellow      no
## 5088    edible   knobbed     fibrous  cinnamon      no
## 5089 poisonous      flat     fibrous      gray      no
## 5090 poisonous      flat       scaly    yellow      no
## 5091 poisonous    convex       scaly      gray      no
## 5092 poisonous    convex       scaly      gray      no
## 5093 poisonous      flat     fibrous    yellow      no
## 5094 poisonous      flat       scaly    yellow      no
## 5095 poisonous    convex     fibrous    yellow      no
## 5096 poisonous      flat     fibrous    yellow      no
## 5097 poisonous    convex       scaly    yellow      no
## 5098 poisonous      bell       scaly      pink     yes
## 5099    edible   knobbed       scaly      pink     yes
## 5100 poisonous    convex       scaly    yellow      no
## 5101 poisonous    convex     fibrous    yellow      no
## 5102    edible   knobbed       scaly      buff     yes
## 5103 poisonous      flat       scaly    yellow      no
## 5104 poisonous    convex      smooth     white     yes
## 5105 poisonous    convex       scaly     brown      no
## 5106 poisonous    convex       scaly     brown      no
## 5107 poisonous    convex       scaly       red      no
## 5108 poisonous      flat     grooves     white     yes
## 5109 poisonous    convex      smooth      gray     yes
## 5110    edible      flat       scaly  cinnamon      no
## 5111 poisonous    convex       scaly      gray      no
## 5112 poisonous      flat       scaly    yellow      no
## 5113 poisonous      flat       scaly    yellow      no
## 5114    edible      flat       scaly      pink     yes
## 5115 poisonous    convex      smooth      buff     yes
## 5116 poisonous    convex      smooth      gray     yes
## 5117 poisonous    convex       scaly       red      no
## 5118    edible   knobbed       scaly  cinnamon      no
## 5119 poisonous    convex      smooth     white     yes
## 5120 poisonous    convex      smooth     white     yes
## 5121 poisonous      flat      smooth      buff     yes
## 5122 poisonous      flat      smooth      buff     yes
## 5123    edible   knobbed       scaly  cinnamon      no
## 5124 poisonous    convex       scaly      gray      no
## 5125 poisonous      flat      smooth     white     yes
## 5126 poisonous      flat      smooth      gray     yes
## 5127 poisonous   conical     grooves     white     yes
## 5128 poisonous    convex      smooth      gray     yes
## 5129 poisonous      bell     grooves     white     yes
## 5130 poisonous    convex      smooth      buff     yes
## 5131 poisonous      flat      smooth     white     yes
## 5132 poisonous      bell     fibrous    yellow      no
## 5133 poisonous    convex       scaly     brown      no
## 5134 poisonous    convex       scaly     brown      no
## 5135    edible   knobbed      smooth     brown     yes
## 5136    edible   knobbed       scaly      buff     yes
## 5137 poisonous      flat      smooth     white     yes
## 5138 poisonous      flat      smooth      buff     yes
## 5139 poisonous      flat       scaly    yellow      no
## 5140 poisonous    convex       scaly      gray      no
## 5141 poisonous      flat      smooth      buff     yes
## 5142 poisonous    convex       scaly     brown      no
## 5143 poisonous    convex       scaly       red      no
## 5144 poisonous      flat     fibrous      gray      no
## 5145    edible    convex      smooth       red     yes
## 5146 poisonous    convex       scaly     brown      no
## 5147 poisonous    convex     fibrous    yellow      no
## 5148 poisonous    convex       scaly     brown      no
## 5149    edible      flat     fibrous     brown      no
## 5150 poisonous    convex       scaly     brown      no
## 5151    edible    convex      smooth      buff     yes
## 5152    edible      flat       scaly     brown     yes
## 5153 poisonous      flat       scaly    yellow      no
## 5154 poisonous      flat       scaly      buff     yes
## 5155 poisonous    convex       scaly     brown      no
## 5156 poisonous    convex       scaly     brown      no
## 5157 poisonous    convex      smooth      buff     yes
## 5158 poisonous    convex      smooth      buff     yes
## 5159 poisonous      flat       scaly    yellow      no
## 5160 poisonous      flat      smooth      gray     yes
## 5161 poisonous    convex       scaly     brown      no
## 5162 poisonous    convex      smooth      buff     yes
## 5163 poisonous      flat     fibrous     brown      no
## 5164    edible    convex       scaly       red     yes
## 5165 poisonous      flat      smooth      buff     yes
## 5166 poisonous      flat      smooth     white     yes
## 5167    edible   knobbed       scaly       red     yes
## 5168 poisonous    convex     fibrous    yellow      no
## 5169 poisonous    convex     fibrous     brown      no
## 5170    edible    convex       scaly     brown     yes
## 5171 poisonous    convex       scaly      gray      no
## 5172 poisonous      flat      smooth      buff     yes
## 5173 poisonous      flat      smooth      buff     yes
## 5174 poisonous      flat       scaly    yellow      no
## 5175 poisonous      flat       scaly    yellow      no
## 5176    edible    convex      smooth      pink     yes
## 5177    edible      flat      smooth      pink     yes
## 5178 poisonous      bell       scaly     white     yes
## 5179    edible    convex       scaly  cinnamon      no
## 5180    edible      flat      smooth     brown     yes
## 5181 poisonous    convex      smooth      buff     yes
## 5182 poisonous    convex      smooth      gray     yes
## 5183 poisonous      flat       scaly    yellow      no
## 5184 poisonous    convex      smooth      buff     yes
## 5185 poisonous    convex      smooth     white     yes
## 5186    edible      flat       scaly  cinnamon      no
## 5187 poisonous    convex       scaly       red      no
## 5188 poisonous      flat     fibrous    yellow      no
## 5189    edible    convex       scaly     white      no
## 5190 poisonous    convex       scaly    yellow      no
## 5191 poisonous      flat       scaly      pink     yes
## 5192 poisonous      flat      smooth      gray     yes
## 5193 poisonous    convex       scaly     brown      no
## 5194    edible   knobbed      smooth      pink     yes
## 5195 poisonous    convex       scaly     brown      no
## 5196 poisonous    convex       scaly      gray      no
## 5197 poisonous      flat      smooth      buff     yes
## 5198    edible   knobbed       scaly      pink     yes
## 5199 poisonous    convex     fibrous    yellow      no
## 5200 poisonous      flat       scaly      gray      no
## 5201 poisonous      flat     fibrous      gray      no
## 5202 poisonous    convex      smooth      buff     yes
## 5203 poisonous    convex       scaly     brown      no
## 5204 poisonous    convex       scaly    yellow      no
## 5205 poisonous      flat     fibrous    yellow      no
## 5206 poisonous      flat     fibrous     brown      no
## 5207    edible   knobbed      smooth      buff     yes
## 5208 poisonous      flat       scaly    yellow      no
## 5209 poisonous    convex       scaly       red      no
## 5210 poisonous    convex      smooth      gray     yes
## 5211    edible      flat      smooth     brown     yes
## 5212 poisonous    convex       scaly      gray      no
## 5213 poisonous    convex       scaly     brown      no
## 5214 poisonous    convex      smooth      gray     yes
## 5215 poisonous    convex      smooth      gray     yes
## 5216 poisonous      flat       scaly      pink     yes
## 5217    edible   knobbed       scaly      buff     yes
## 5218 poisonous    convex      smooth     white     yes
## 5219 poisonous    convex       scaly     brown      no
## 5220    edible   knobbed       scaly     brown     yes
## 5221 poisonous      flat       scaly    yellow      no
## 5222    edible    convex       scaly      pink     yes
## 5223 poisonous      flat      smooth      gray     yes
## 5224    edible    convex      smooth      pink     yes
## 5225 poisonous      bell       scaly     brown      no
## 5226 poisonous      flat      smooth      buff     yes
## 5227 poisonous    convex       scaly     brown      no
## 5228 poisonous    convex       scaly     brown      no
## 5229 poisonous    convex      smooth      buff     yes
## 5230 poisonous    convex       scaly     brown      no
## 5231    edible   knobbed       scaly      pink     yes
## 5232    edible   knobbed     fibrous  cinnamon      no
## 5233 poisonous    convex       scaly    yellow      no
## 5234    edible    convex      smooth     brown     yes
## 5235 poisonous      flat     fibrous      gray      no
## 5236 poisonous      flat       scaly    yellow      no
## 5237 poisonous      flat      smooth      gray     yes
## 5238 poisonous   knobbed       scaly     white     yes
## 5239    edible   knobbed     fibrous     brown      no
## 5240 poisonous   knobbed     fibrous    yellow      no
## 5241 poisonous      flat      smooth     white     yes
## 5242 poisonous      flat       scaly    yellow      no
## 5243 poisonous      flat       scaly    yellow      no
## 5244    edible   knobbed      smooth      buff     yes
## 5245 poisonous      flat       scaly    yellow      no
## 5246 poisonous    convex       scaly     brown      no
## 5247 poisonous    convex       scaly    yellow      no
## 5248 poisonous    convex       scaly    yellow      no
## 5249 poisonous      bell       scaly     white     yes
## 5250 poisonous      flat       scaly    yellow      no
## 5251 poisonous    convex      smooth     white     yes
## 5252 poisonous    convex      smooth      buff     yes
## 5253    edible   knobbed       scaly      buff     yes
## 5254 poisonous      flat       scaly    yellow      no
## 5255 poisonous    convex      smooth      buff     yes
## 5256 poisonous      bell       scaly      buff     yes
## 5257 poisonous    convex      smooth     white     yes
## 5258    edible   knobbed      smooth     brown     yes
## 5259 poisonous      flat      smooth      gray     yes
## 5260 poisonous    convex     fibrous    yellow      no
## 5261 poisonous      flat      smooth      gray     yes
## 5262 poisonous      flat       scaly    yellow      no
## 5263 poisonous   knobbed       scaly     brown      no
## 5264 poisonous      flat      smooth      buff     yes
## 5265    edible      flat      smooth       red     yes
## 5266 poisonous    convex       scaly     brown      no
## 5267 poisonous    convex       scaly     brown      no
## 5268 poisonous    convex       scaly     brown      no
## 5269 poisonous    convex      smooth     white     yes
## 5270    edible   knobbed      smooth     brown     yes
## 5271 poisonous      flat       scaly      gray      no
## 5272    edible    convex      smooth      buff     yes
## 5273 poisonous      flat      smooth     white     yes
## 5274    edible   knobbed     fibrous     brown      no
## 5275 poisonous    convex       scaly     brown      no
## 5276 poisonous      flat      smooth     white     yes
## 5277 poisonous    convex      smooth      gray     yes
## 5278 poisonous   knobbed       scaly    yellow      no
## 5279 poisonous      flat      smooth     white     yes
## 5280 poisonous      flat     fibrous    yellow      no
## 5281    edible   knobbed       scaly      pink     yes
## 5282 poisonous      flat       scaly     white     yes
## 5283 poisonous      flat      smooth      buff     yes
## 5284    edible      flat       scaly     white      no
## 5285    edible    convex       scaly     green      no
## 5286    edible    convex      smooth      buff     yes
## 5287 poisonous      flat      smooth      gray     yes
## 5288 poisonous    convex       scaly       red      no
## 5289 poisonous      flat       scaly    yellow      no
## 5290 poisonous      flat      smooth      gray     yes
## 5291 poisonous      flat      smooth      buff     yes
## 5292    edible      flat      smooth       red     yes
## 5293 poisonous    convex       scaly       red      no
## 5294 poisonous      flat     fibrous      gray      no
## 5295 poisonous      flat       scaly    yellow      no
## 5296    edible    convex      smooth     brown     yes
## 5297 poisonous      flat      smooth      gray     yes
## 5298 poisonous    convex       scaly     brown      no
## 5299 poisonous      flat      smooth     white     yes
## 5300    edible    convex     fibrous  cinnamon      no
## 5301 poisonous      flat      smooth      gray     yes
## 5302 poisonous      flat     fibrous      gray      no
## 5303    edible    convex       scaly     green      no
## 5304 poisonous    convex     fibrous    yellow      no
## 5305 poisonous    convex       scaly     brown      no
## 5306 poisonous    convex       scaly     brown      no
## 5307    edible      flat       scaly       red     yes
## 5308 poisonous    convex      smooth      gray     yes
## 5309    edible   knobbed       scaly     brown     yes
## 5310    edible      flat       scaly       red     yes
## 5311 poisonous    convex       scaly     brown      no
## 5312 poisonous      bell       scaly     brown      no
## 5313 poisonous    convex       scaly     brown      no
## 5314    edible      flat       scaly      buff     yes
## 5315 poisonous    convex      smooth     white     yes
## 5316 poisonous      flat       scaly    yellow      no
## 5317    edible      flat       scaly     brown     yes
## 5318 poisonous      bell       scaly     white     yes
## 5319    edible    convex       scaly     brown      no
## 5320 poisonous      flat       scaly    yellow      no
## 5321 poisonous    convex      smooth      buff     yes
## 5322 poisonous    convex       scaly     brown      no
## 5323 poisonous    convex      smooth      gray     yes
## 5324 poisonous      flat      smooth      gray     yes
## 5325 poisonous    convex       scaly     brown      no
## 5326    edible      flat       scaly     white      no
## 5327 poisonous    convex       scaly     brown      no
## 5328 poisonous      flat     fibrous      gray      no
## 5329 poisonous    convex       scaly       red      no
## 5330 poisonous    convex      smooth     white     yes
## 5331 poisonous      flat       scaly      gray      no
## 5332 poisonous    convex      smooth     white     yes
## 5333 poisonous   knobbed       scaly    yellow      no
## 5334 poisonous      flat      smooth     white     yes
## 5335 poisonous      flat      smooth      gray     yes
## 5336    edible    convex       scaly  cinnamon      no
## 5337 poisonous    convex      smooth     white     yes
## 5338 poisonous    convex       scaly     brown      no
## 5339 poisonous      flat       scaly      pink     yes
## 5340 poisonous      flat       scaly    yellow      no
## 5341    edible    convex      smooth      pink     yes
## 5342 poisonous      flat       scaly      buff     yes
## 5343 poisonous    convex     fibrous    yellow      no
## 5344 poisonous      flat       scaly    yellow      no
## 5345    edible      flat     fibrous     brown      no
## 5346    edible    convex     fibrous     brown      no
## 5347 poisonous    convex       scaly     brown      no
## 5348 poisonous      flat      smooth      gray     yes
## 5349 poisonous    convex      smooth      buff     yes
## 5350 poisonous      flat      smooth      gray     yes
## 5351 poisonous    convex      smooth      buff     yes
## 5352    edible    convex       scaly     green      no
## 5353 poisonous      flat       scaly    yellow      no
## 5354 poisonous      flat      smooth      gray     yes
## 5355 poisonous    convex       scaly     brown      no
## 5356 poisonous      flat       scaly    yellow      no
## 5357 poisonous      flat      smooth     white     yes
## 5358 poisonous    convex      smooth     white     yes
## 5359 poisonous      flat       scaly      gray      no
## 5360 poisonous      flat       scaly    yellow      no
## 5361 poisonous    convex       scaly     brown      no
## 5362 poisonous    convex       scaly    yellow      no
## 5363    edible      flat      smooth     brown     yes
## 5364 poisonous      flat       scaly    yellow      no
## 5365 poisonous      flat      smooth      gray     yes
## 5366 poisonous    convex       scaly     brown      no
## 5367 poisonous      flat       scaly    yellow      no
## 5368 poisonous      flat       scaly    yellow      no
## 5369 poisonous      flat      smooth     white     yes
## 5370 poisonous      flat      smooth      pink     yes
## 5371 poisonous      flat       scaly    yellow      no
## 5372    edible   knobbed      smooth      pink     yes
## 5373 poisonous    convex      smooth      buff     yes
## 5374 poisonous    convex      smooth     white     yes
## 5375 poisonous    convex      smooth     white     yes
## 5376 poisonous    convex       scaly     brown      no
## 5377 poisonous      bell       scaly      pink     yes
## 5378 poisonous    convex      smooth      buff     yes
## 5379    edible    convex       scaly      pink     yes
## 5380 poisonous    convex       scaly     brown      no
## 5381 poisonous    convex       scaly    yellow      no
## 5382 poisonous    convex      smooth     white     yes
## 5383    edible      flat       scaly      buff     yes
## 5384 poisonous      flat      smooth      buff     yes
## 5385    edible    convex     fibrous  cinnamon      no
## 5386    edible      flat      smooth      pink     yes
## 5387    edible    convex       scaly     brown      no
## 5388    edible      flat      smooth      pink     yes
## 5389 poisonous      flat      smooth      gray     yes
## 5390    edible   knobbed      smooth       red     yes
## 5391    edible   knobbed       scaly       red     yes
## 5392 poisonous      flat      smooth     white     yes
## 5393    edible   knobbed      smooth      buff     yes
## 5394 poisonous    convex      smooth      buff     yes
## 5395 poisonous      bell       scaly    yellow      no
## 5396 poisonous    convex      smooth     white     yes
## 5397 poisonous    convex     fibrous    yellow      no
## 5398 poisonous      flat       scaly    yellow      no
## 5399 poisonous      bell     fibrous     brown      no
## 5400 poisonous      flat       scaly    yellow      no
## 5401 poisonous      flat       scaly    yellow      no
## 5402    edible      flat       scaly  cinnamon      no
## 5403 poisonous    convex       scaly       red      no
## 5404 poisonous      flat      smooth     white     yes
## 5405 poisonous    convex       scaly     brown      no
## 5406 poisonous      bell       scaly      pink     yes
## 5407 poisonous      flat       scaly    yellow      no
## 5408 poisonous    convex      smooth      buff     yes
## 5409 poisonous      flat       scaly    yellow      no
## 5410 poisonous      flat      smooth      buff     yes
## 5411 poisonous      flat      smooth      buff     yes
## 5412 poisonous    convex       scaly     brown      no
## 5413 poisonous      flat       scaly    yellow      no
## 5414    edible    convex      smooth     brown     yes
## 5415 poisonous      flat       scaly    yellow      no
## 5416    edible      flat      smooth      buff     yes
## 5417    edible      flat      smooth       red     yes
## 5418    edible    convex      smooth     brown     yes
## 5419 poisonous      flat      smooth     white     yes
## 5420 poisonous      flat       scaly    yellow      no
## 5421    edible      flat      smooth      pink     yes
## 5422    edible    convex      smooth       red     yes
## 5423 poisonous      flat       scaly    yellow      no
## 5424 poisonous      bell       scaly      buff     yes
## 5425 poisonous      flat      smooth      buff     yes
## 5426 poisonous      flat      smooth      gray     yes
## 5427 poisonous    convex      smooth      buff     yes
## 5428 poisonous    convex     fibrous    yellow      no
## 5429 poisonous      flat      smooth     white     yes
## 5430 poisonous    convex      smooth      gray     yes
## 5431    edible      flat       scaly     green      no
## 5432 poisonous      flat       scaly    yellow      no
## 5433 poisonous    convex       scaly     brown      no
## 5434 poisonous    convex      smooth      buff     yes
## 5435    edible    convex     fibrous  cinnamon      no
## 5436 poisonous    convex      smooth      gray     yes
## 5437    edible    convex       scaly    purple      no
## 5438 poisonous    convex     fibrous    yellow      no
## 5439 poisonous      flat     fibrous      gray      no
## 5440 poisonous      flat       scaly     white     yes
## 5441 poisonous    convex       scaly     brown      no
## 5442 poisonous    convex       scaly     brown      no
## 5443 poisonous    convex       scaly      gray      no
## 5444    edible    convex       scaly      pink     yes
## 5445 poisonous      flat      smooth      gray     yes
## 5446 poisonous    convex      smooth      buff     yes
## 5447 poisonous    convex       scaly     brown      no
## 5448 poisonous    convex      smooth      gray     yes
## 5449 poisonous    convex       scaly     brown      no
## 5450 poisonous      flat      smooth     white     yes
## 5451 poisonous    convex      smooth      gray     yes
## 5452 poisonous    convex      smooth      gray     yes
## 5453 poisonous      flat       scaly    yellow      no
## 5454 poisonous      flat       scaly    yellow      no
## 5455 poisonous      flat       scaly      gray      no
## 5456 poisonous    convex       scaly    yellow      no
## 5457 poisonous    convex      smooth      gray     yes
## 5458 poisonous      flat      smooth      buff     yes
## 5459 poisonous      flat      smooth     white     yes
## 5460 poisonous      flat     fibrous      gray      no
## 5461 poisonous      flat      smooth      buff     yes
## 5462 poisonous    convex       scaly     brown      no
## 5463 poisonous    convex      smooth     white     yes
## 5464    edible   knobbed      smooth       red     yes
## 5465 poisonous      flat       scaly      buff     yes
## 5466 poisonous    convex       scaly     brown      no
## 5467    edible   knobbed       scaly     brown     yes
## 5468 poisonous      flat      smooth     white     yes
## 5469 poisonous      flat      smooth     white     yes
## 5470 poisonous    convex       scaly     brown      no
## 5471 poisonous    convex      smooth     white     yes
## 5472 poisonous    convex       scaly     brown      no
## 5473 poisonous      bell      smooth      pink     yes
## 5474 poisonous    convex       scaly       red      no
## 5475 poisonous      flat       scaly      gray      no
## 5476 poisonous    convex       scaly    yellow      no
## 5477 poisonous    convex       scaly      gray      no
## 5478 poisonous      flat       scaly     white     yes
## 5479 poisonous      flat      smooth      gray     yes
## 5480    edible   knobbed       scaly      pink     yes
## 5481 poisonous    convex      smooth     white     yes
## 5482    edible   knobbed      smooth      pink     yes
## 5483 poisonous      flat      smooth     white     yes
## 5484 poisonous    convex       scaly     brown      no
## 5485 poisonous    convex     fibrous    yellow      no
## 5486 poisonous      flat       scaly      gray      no
## 5487 poisonous    convex       scaly      gray      no
## 5488    edible    convex       scaly       red     yes
## 5489 poisonous      flat       scaly    yellow      no
## 5490 poisonous    convex       scaly     brown      no
## 5491 poisonous    convex      smooth      buff     yes
## 5492 poisonous      flat       scaly    yellow      no
## 5493    edible   knobbed       scaly       red     yes
## 5494 poisonous      flat       scaly      pink     yes
## 5495 poisonous      flat       scaly     white     yes
## 5496 poisonous      flat       scaly    yellow      no
## 5497 poisonous      flat       scaly    yellow      no
## 5498    edible      flat       scaly     green      no
## 5499 poisonous    convex      smooth     white     yes
## 5500 poisonous    convex      smooth     white     yes
## 5501 poisonous    convex      smooth      buff     yes
## 5502 poisonous    convex       scaly     brown      no
## 5503    edible   knobbed       scaly       red     yes
## 5504    edible   knobbed      smooth      pink     yes
## 5505    edible    convex       scaly      buff     yes
## 5506 poisonous    convex      smooth      gray     yes
## 5507 poisonous      flat       scaly    yellow      no
## 5508 poisonous    convex       scaly     brown      no
## 5509 poisonous   conical       scaly     white     yes
## 5510 poisonous      flat      smooth     white     yes
## 5511 poisonous      flat      smooth      gray     yes
## 5512 poisonous    convex       scaly       red      no
## 5513 poisonous    convex      smooth      gray     yes
## 5514 poisonous    convex       scaly     brown      no
## 5515    edible    convex       scaly      pink     yes
## 5516    edible      flat       scaly     white      no
## 5517 poisonous      flat       scaly    yellow      no
## 5518 poisonous    convex       scaly     brown      no
## 5519 poisonous    convex     fibrous    yellow      no
## 5520 poisonous    convex       scaly     brown      no
## 5521 poisonous    convex      smooth      gray     yes
## 5522 poisonous    convex       scaly     brown      no
## 5523    edible   knobbed     fibrous     brown      no
## 5524 poisonous    convex      smooth     white     yes
## 5525 poisonous      flat       scaly    yellow      no
## 5526    edible    convex       scaly      pink     yes
## 5527 poisonous      bell       scaly      buff     yes
## 5528 poisonous      flat       scaly      gray      no
## 5529    edible      flat       scaly     green      no
## 5530 poisonous    convex       scaly     brown      no
## 5531 poisonous    convex       scaly     brown      no
## 5532 poisonous      flat      smooth      buff     yes
## 5533 poisonous      flat       scaly    yellow      no
## 5534 poisonous    convex       scaly     brown      no
## 5535    edible      flat       scaly     brown     yes
## 5536 poisonous    convex       scaly     brown      no
## 5537    edible      flat       scaly       red     yes
## 5538    edible    convex       scaly      buff     yes
## 5539    edible    convex      smooth     brown     yes
## 5540 poisonous      flat      smooth     white     yes
## 5541    edible    convex       scaly      buff     yes
## 5542 poisonous    convex     fibrous    yellow      no
## 5543 poisonous      flat       scaly    yellow      no
## 5544 poisonous      flat       scaly    yellow      no
## 5545    edible   knobbed       scaly       red     yes
## 5546 poisonous      flat      smooth     white     yes
## 5547    edible   knobbed       scaly  cinnamon      no
## 5548    edible   knobbed       scaly     brown      no
## 5549 poisonous      bell      smooth      pink     yes
## 5550 poisonous    convex       scaly     brown      no
## 5551 poisonous    convex      smooth      buff     yes
## 5552    edible      flat       scaly     green      no
## 5553 poisonous    convex      smooth      buff     yes
## 5554    edible      flat       scaly    purple      no
## 5555 poisonous    convex       scaly     brown      no
## 5556 poisonous    convex      smooth     white     yes
## 5557    edible    convex      smooth       red     yes
## 5558    edible      flat       scaly      pink     yes
## 5559 poisonous    convex       scaly     brown      no
## 5560 poisonous    convex       scaly     brown      no
## 5561 poisonous    convex      smooth     white     yes
## 5562 poisonous      flat       scaly    yellow      no
## 5563    edible    convex       scaly     brown     yes
## 5564    edible    convex       scaly       red     yes
## 5565 poisonous    convex      smooth     white     yes
## 5566 poisonous    convex       scaly    yellow      no
## 5567 poisonous      flat      smooth      buff     yes
## 5568 poisonous      flat     fibrous    yellow      no
## 5569 poisonous    convex      smooth      gray     yes
## 5570    edible      flat      smooth      pink     yes
## 5571    edible    convex       scaly     brown     yes
## 5572 poisonous      bell       scaly     white     yes
## 5573 poisonous      flat       scaly    yellow      no
## 5574 poisonous    convex       scaly       red      no
## 5575 poisonous    convex      smooth      buff     yes
## 5576 poisonous    convex      smooth      buff     yes
## 5577 poisonous    convex       scaly     brown      no
## 5578 poisonous      bell       scaly      pink     yes
## 5579    edible    convex       scaly  cinnamon      no
## 5580 poisonous    convex       scaly     brown      no
## 5581 poisonous    convex      smooth     white     yes
## 5582 poisonous    convex       scaly     brown      no
## 5583    edible      flat       scaly     brown      no
## 5584 poisonous    convex       scaly     brown      no
## 5585 poisonous      flat      smooth      gray     yes
## 5586 poisonous    convex       scaly       red      no
## 5587    edible    convex       scaly     green      no
## 5588 poisonous      bell       scaly      pink     yes
## 5589    edible    convex      smooth      pink     yes
## 5590 poisonous    convex       scaly     brown      no
## 5591 poisonous    convex       scaly     brown      no
## 5592 poisonous      flat      smooth      gray     yes
## 5593 poisonous      flat       scaly    yellow      no
## 5594 poisonous      flat       scaly      pink     yes
## 5595 poisonous    convex       scaly     brown      no
## 5596 poisonous    convex       scaly     brown      no
## 5597    edible      flat      smooth      buff     yes
## 5598 poisonous      flat      smooth      buff     yes
## 5599    edible    convex       scaly  cinnamon      no
## 5600    edible    convex       scaly     white      no
## 5601 poisonous    convex       scaly     brown      no
## 5602    edible      flat       scaly     brown      no
## 5603 poisonous    convex       scaly     brown      no
## 5604 poisonous    convex       scaly     brown      no
## 5605    edible   knobbed       scaly      pink     yes
## 5606 poisonous      flat      smooth     white     yes
## 5607 poisonous    convex       scaly     brown      no
## 5608 poisonous      flat       scaly    yellow      no
## 5609    edible   knobbed       scaly     brown      no
## 5610 poisonous      flat      smooth      gray     yes
## 5611 poisonous      flat      smooth     white     yes
## 5612 poisonous      flat     fibrous      gray      no
## 5613    edible      flat      smooth     brown     yes
## 5614 poisonous    convex     fibrous    yellow      no
## 5615 poisonous    convex       scaly     brown      no
## 5616 poisonous    convex       scaly       red      no
## 5617 poisonous      flat       scaly    yellow      no
## 5618 poisonous      bell      smooth     white     yes
## 5619 poisonous    convex      smooth      buff     yes
## 5620    edible      flat       scaly      buff     yes
## 5621    edible    convex     fibrous  cinnamon      no
## 5622 poisonous      flat      smooth     white     yes
## 5623    edible   knobbed      smooth      pink     yes
## 5624    edible   knobbed       scaly     brown     yes
## 5625    edible    convex       scaly      buff     yes
## 5626 poisonous    convex     fibrous    yellow      no
## 5627 poisonous      flat      smooth      gray     yes
## 5628 poisonous      flat       scaly    yellow      no
## 5629    edible    convex       scaly       red     yes
## 5630 poisonous      flat      smooth      buff     yes
## 5631    edible    convex       scaly     brown      no
## 5632 poisonous      flat       scaly    yellow      no
## 5633 poisonous      flat     fibrous      gray      no
## 5634 poisonous      bell       scaly      buff     yes
## 5635 poisonous    convex       scaly       red      no
## 5636 poisonous      flat       scaly    yellow      no
## 5637 poisonous      flat     fibrous    yellow      no
## 5638 poisonous      flat       scaly     white     yes
## 5639    edible   knobbed      smooth       red     yes
## 5640 poisonous      flat       scaly    yellow      no
## 5641    edible   knobbed      smooth     brown     yes
## 5642 poisonous      flat       scaly    yellow      no
## 5643 poisonous      flat       scaly      gray      no
## 5644 poisonous      flat       scaly    yellow      no
## 5645 poisonous    convex       scaly       red      no
## 5646    edible      flat      smooth      buff     yes
## 5647 poisonous      flat      smooth     white     yes
## 5648 poisonous    convex      smooth     white     yes
## 5649 poisonous      flat       scaly      gray      no
## 5650    edible      flat       scaly      pink     yes
## 5651 poisonous      flat       scaly    yellow      no
## 5652 poisonous      flat       scaly    yellow      no
## 5653    edible   knobbed      smooth       red     yes
## 5654    edible    convex       scaly     brown     yes
## 5655 poisonous    convex       scaly    yellow      no
## 5656 poisonous      flat      smooth      buff     yes
## 5657 poisonous    convex       scaly      gray      no
## 5658 poisonous      flat      smooth      gray     yes
## 5659 poisonous    convex      smooth     white     yes
## 5660 poisonous    convex     fibrous     brown      no
## 5661 poisonous      flat      smooth      buff     yes
## 5662    edible      flat       scaly       red     yes
## 5663 poisonous      flat       scaly    yellow      no
## 5664 poisonous    convex      smooth      buff     yes
## 5665    edible   knobbed     fibrous     brown      no
## 5666 poisonous      flat       scaly    yellow      no
## 5667    edible   knobbed       scaly  cinnamon      no
## 5668 poisonous    convex     fibrous      gray      no
## 5669 poisonous    convex       scaly     brown      no
## 5670    edible      flat       scaly      pink     yes
## 5671 poisonous    convex      smooth      buff     yes
## 5672 poisonous    convex       scaly      gray      no
## 5673 poisonous      flat       scaly    yellow      no
## 5674 poisonous    convex       scaly       red      no
## 5675    edible      flat       scaly     green      no
## 5676 poisonous      flat       scaly    yellow      no
## 5677 poisonous    convex      smooth      gray     yes
## 5678 poisonous    convex      smooth     white     yes
## 5679 poisonous      flat      smooth      buff     yes
## 5680    edible    convex       scaly     brown     yes
## 5681 poisonous      flat     fibrous    yellow      no
## 5682    edible      flat       scaly    purple      no
## 5683 poisonous    convex       scaly     brown      no
## 5684    edible    convex      smooth     brown     yes
## 5685 poisonous    convex      smooth     white     yes
## 5686 poisonous      flat       scaly    yellow      no
## 5687    edible      flat      smooth      buff     yes
## 5688    edible   knobbed     fibrous  cinnamon      no
## 5689 poisonous    convex      smooth      gray     yes
## 5690 poisonous      flat       scaly      gray      no
## 5691 poisonous    convex       scaly       red      no
## 5692    edible      flat       scaly      pink     yes
## 5693    edible   knobbed       scaly      pink     yes
## 5694 poisonous    convex       scaly    yellow      no
## 5695 poisonous    convex       scaly     brown      no
## 5696    edible      flat      smooth     brown     yes
## 5697 poisonous      flat       scaly    yellow      no
## 5698 poisonous    convex       scaly     brown      no
## 5699    edible      flat      smooth     brown     yes
## 5700 poisonous      flat       scaly    yellow      no
## 5701 poisonous      flat       scaly    yellow      no
## 5702 poisonous      flat       scaly    yellow      no
## 5703    edible      flat     fibrous  cinnamon      no
## 5704 poisonous      bell       scaly      buff     yes
## 5705    edible   knobbed       scaly       red     yes
## 5706 poisonous    convex      smooth      buff     yes
## 5707 poisonous    convex      smooth      gray     yes
## 5708 poisonous      flat       scaly    yellow      no
## 5709 poisonous    convex      smooth      gray     yes
## 5710 poisonous    convex       scaly       red      no
## 5711 poisonous      flat      smooth     white     yes
## 5712    edible      flat      smooth      pink     yes
## 5713 poisonous      flat      smooth      buff     yes
## 5714 poisonous    convex       scaly       red      no
## 5715    edible      flat       scaly     white      no
## 5716    edible    convex       scaly      pink     yes
## 5717 poisonous    convex      smooth      buff     yes
## 5718 poisonous   knobbed     grooves     white     yes
## 5719 poisonous      flat      smooth      gray     yes
## 5720 poisonous    convex       scaly     brown      no
## 5721    edible   knobbed      smooth       red     yes
## 5722 poisonous    convex       scaly     brown      no
## 5723 poisonous    convex       scaly     brown      no
## 5724 poisonous      flat      smooth     white     yes
## 5725    edible      flat      smooth       red     yes
## 5726 poisonous      flat      smooth      buff     yes
## 5727 poisonous      bell      smooth     white     yes
## 5728    edible      flat     fibrous     brown      no
## 5729 poisonous      flat      smooth      gray     yes
## 5730 poisonous    convex      smooth     white     yes
## 5731 poisonous      flat       scaly    yellow      no
## 5732    edible    convex      smooth      buff     yes
## 5733    edible      flat       scaly     brown     yes
## 5734    edible    convex       scaly     green      no
## 5735    edible   knobbed      smooth      buff     yes
## 5736 poisonous    convex      smooth     white     yes
## 5737 poisonous    convex       scaly     brown      no
## 5738    edible    convex       scaly      buff     yes
## 5739 poisonous      flat       scaly     white     yes
## 5740 poisonous      flat      smooth      buff     yes
## 5741 poisonous    convex      smooth      gray     yes
## 5742    edible   knobbed      smooth     brown     yes
## 5743 poisonous      flat      smooth      gray     yes
## 5744    edible   knobbed       scaly      pink     yes
## 5745 poisonous      flat       scaly      buff     yes
## 5746 poisonous    convex       scaly     brown      no
## 5747 poisonous      flat       scaly    yellow      no
## 5748 poisonous    convex      smooth      buff     yes
## 5749    edible   knobbed     fibrous  cinnamon      no
## 5750 poisonous      flat      smooth      gray     yes
## 5751 poisonous      flat      smooth     white     yes
## 5752 poisonous      bell      smooth      buff     yes
## 5753 poisonous      bell      smooth      pink     yes
## 5754 poisonous      flat      smooth     white     yes
## 5755    edible    convex       scaly     brown     yes
## 5756 poisonous    convex       scaly     brown      no
## 5757 poisonous    convex       scaly      gray      no
## 5758    edible    convex      smooth      buff     yes
## 5759 poisonous    convex       scaly     brown      no
## 5760 poisonous    convex      smooth      buff     yes
## 5761 poisonous      flat      smooth      pink     yes
## 5762 poisonous    convex       scaly     brown      no
## 5763 poisonous    convex      smooth     white     yes
## 5764 poisonous      flat      smooth     white     yes
## 5765    edible      flat       scaly     green      no
## 5766 poisonous      flat      smooth     white     yes
## 5767 poisonous      flat      smooth     white     yes
## 5768    edible    convex       scaly     white      no
## 5769 poisonous    convex       scaly     brown      no
## 5770    edible   knobbed       scaly      buff     yes
## 5771 poisonous    convex       scaly     brown      no
## 5772 poisonous    convex       scaly     brown      no
## 5773 poisonous    convex      smooth      buff     yes
## 5774    edible      flat       scaly     green      no
## 5775 poisonous      bell      smooth      pink     yes
## 5776 poisonous    convex      smooth      buff     yes
## 5777    edible      flat       scaly  cinnamon      no
## 5778    edible    convex       scaly    purple      no
## 5779 poisonous    convex      smooth      buff     yes
## 5780    edible    convex       scaly     white      no
## 5781 poisonous    convex       scaly     brown      no
## 5782    edible    convex      smooth      pink     yes
## 5783 poisonous      flat      smooth      pink     yes
## 5784 poisonous      flat       scaly     brown      no
## 5785 poisonous      flat       scaly    yellow      no
## 5786 poisonous      flat      smooth     white     yes
## 5787 poisonous    convex       scaly      gray      no
## 5788    edible      flat       scaly       red     yes
## 5789 poisonous      flat      smooth      buff     yes
## 5790 poisonous      bell      smooth      pink     yes
## 5791 poisonous    convex       scaly     brown      no
## 5792 poisonous    convex      smooth      buff     yes
## 5793 poisonous    convex       scaly    yellow      no
## 5794 poisonous      bell       scaly     white     yes
## 5795    edible      flat       scaly     brown      no
## 5796 poisonous      flat     fibrous    yellow      no
## 5797 poisonous      flat       scaly    yellow      no
## 5798 poisonous      flat       scaly    yellow      no
## 5799 poisonous    convex      smooth      gray     yes
## 5800 poisonous    convex       scaly       red      no
## 5801 poisonous    convex       scaly    yellow      no
## 5802 poisonous    convex       scaly     brown      no
## 5803 poisonous      flat      smooth     white     yes
## 5804 poisonous      flat     fibrous      gray      no
## 5805    edible      flat     fibrous     brown      no
## 5806 poisonous    convex      smooth      gray     yes
## 5807 poisonous      flat      smooth      buff     yes
## 5808    edible      flat      smooth       red     yes
## 5809 poisonous    convex      smooth      buff     yes
## 5810 poisonous      flat       scaly    yellow      no
## 5811 poisonous    convex       scaly     brown      no
## 5812 poisonous      flat      smooth     white     yes
## 5813 poisonous      flat      smooth      gray     yes
## 5814 poisonous      flat       scaly    yellow      no
## 5815    edible      flat     fibrous  cinnamon      no
## 5816 poisonous    convex       scaly     brown      no
## 5817    edible   knobbed       scaly       red     yes
## 5818 poisonous    convex       scaly     brown      no
## 5819 poisonous      flat      smooth     white     yes
## 5820 poisonous    convex       scaly       red      no
## 5821    edible    convex      smooth     brown     yes
## 5822 poisonous      flat       scaly      gray      no
## 5823 poisonous    convex      smooth     white     yes
## 5824    edible      flat      smooth       red     yes
## 5825 poisonous      flat       scaly    yellow      no
## 5826 poisonous      flat       scaly    yellow      no
## 5827    edible      flat       scaly       red     yes
## 5828 poisonous      flat      smooth      gray     yes
## 5829    edible   knobbed      smooth     brown     yes
## 5830 poisonous      flat       scaly    yellow      no
## 5831 poisonous    convex      smooth     white     yes
## 5832 poisonous    convex       scaly     brown      no
## 5833 poisonous      flat       scaly    yellow      no
## 5834 poisonous      flat       scaly     white     yes
## 5835 poisonous    convex       scaly     brown      no
## 5836    edible      flat       scaly     white      no
## 5837    edible    convex       scaly     white      no
## 5838 poisonous    convex       scaly     brown      no
## 5839 poisonous      flat      smooth      gray     yes
## 5840    edible    convex       scaly    purple      no
## 5841 poisonous      flat      smooth     white     yes
## 5842 poisonous    convex       scaly    yellow      no
## 5843 poisonous      flat      smooth      gray     yes
## 5844 poisonous      flat       scaly    yellow      no
## 5845 poisonous    convex     fibrous    yellow      no
## 5846 poisonous      flat       scaly    yellow      no
## 5847 poisonous    convex      smooth      gray     yes
## 5848    edible      flat       scaly     green      no
## 5849 poisonous      flat      smooth     white     yes
## 5850    edible   knobbed      smooth     brown     yes
## 5851 poisonous    convex       scaly     brown      no
## 5852 poisonous    convex      smooth      gray     yes
## 5853 poisonous      flat       scaly    yellow      no
## 5854 poisonous      bell      smooth     white     yes
## 5855 poisonous    convex       scaly     brown      no
## 5856 poisonous      bell      smooth      buff     yes
## 5857 poisonous      flat     fibrous    yellow      no
## 5858 poisonous    convex       scaly      gray      no
## 5859    edible    convex       scaly       red     yes
## 5860    edible   knobbed      smooth      buff     yes
## 5861 poisonous    convex       scaly     brown      no
## 5862    edible    convex      smooth       red     yes
## 5863 poisonous      flat      smooth      buff     yes
## 5864    edible      flat      smooth     brown     yes
## 5865 poisonous    convex       scaly       red      no
## 5866    edible      flat       scaly      buff     yes
## 5867 poisonous    convex      smooth      gray     yes
## 5868 poisonous      flat      smooth      buff     yes
## 5869 poisonous    convex       scaly     brown      no
## 5870 poisonous    convex       scaly       red      no
## 5871 poisonous      flat       scaly    yellow      no
## 5872 poisonous    convex       scaly     brown      no
## 5873 poisonous    convex       scaly     brown      no
## 5874 poisonous      flat      smooth      gray     yes
## 5875    edible    convex       scaly      pink     yes
## 5876    edible    convex       scaly    purple      no
## 5877 poisonous      flat       scaly    yellow      no
## 5878 poisonous    convex      smooth      gray     yes
## 5879 poisonous    convex       scaly     brown      no
## 5880 poisonous      flat      smooth      gray     yes
## 5881 poisonous    convex      smooth      buff     yes
## 5882 poisonous    convex     fibrous    yellow      no
## 5883 poisonous      bell      smooth     white     yes
## 5884    edible   knobbed       scaly     brown     yes
## 5885 poisonous    convex       scaly       red      no
## 5886 poisonous      flat       scaly    yellow      no
## 5887    edible    convex       scaly      buff     yes
## 5888 poisonous    convex      smooth      buff     yes
## 5889 poisonous      flat      smooth      gray     yes
## 5890 poisonous      flat      smooth      buff     yes
## 5891 poisonous      flat       scaly    yellow      no
## 5892 poisonous    convex       scaly     brown      no
## 5893 poisonous      flat      smooth     white     yes
## 5894    edible   knobbed       scaly     brown     yes
## 5895    edible    convex      smooth       red     yes
## 5896    edible    convex       scaly     white      no
## 5897 poisonous      flat      smooth      buff     yes
## 5898 poisonous      flat      smooth      gray     yes
## 5899    edible      flat      smooth       red     yes
## 5900 poisonous      flat       scaly    yellow      no
## 5901 poisonous    convex       scaly     brown      no
## 5902 poisonous      flat      smooth     white     yes
## 5903 poisonous      flat       scaly      gray      no
## 5904    edible    convex     fibrous     brown      no
## 5905 poisonous      flat       scaly    yellow      no
## 5906 poisonous    convex      smooth     white     yes
## 5907    edible    convex      smooth      buff     yes
## 5908    edible    convex      smooth      pink     yes
## 5909 poisonous    convex      smooth      gray     yes
## 5910 poisonous      flat     fibrous      gray      no
## 5911 poisonous    convex      smooth     white     yes
## 5912 poisonous    convex     fibrous    yellow      no
## 5913 poisonous      flat      smooth     white     yes
## 5914    edible   knobbed       scaly     brown     yes
## 5915    edible    convex       scaly      pink     yes
## 5916 poisonous      flat       scaly    yellow      no
## 5917    edible      flat       scaly      buff     yes
## 5918    edible    convex      smooth       red     yes
## 5919 poisonous    convex      smooth      gray     yes
## 5920 poisonous      flat      smooth      buff     yes
## 5921 poisonous      flat       scaly    yellow      no
## 5922 poisonous    convex      smooth      buff     yes
## 5923 poisonous      flat      smooth     white     yes
## 5924 poisonous      flat       scaly    yellow      no
## 5925 poisonous      flat       scaly    yellow      no
## 5926 poisonous      flat       scaly      gray      no
## 5927 poisonous      flat     fibrous      gray      no
## 5928 poisonous      bell      smooth      pink     yes
## 5929 poisonous    convex       scaly     brown      no
## 5930 poisonous      bell      smooth     white     yes
## 5931    edible    convex       scaly     brown     yes
## 5932 poisonous    convex       scaly     brown      no
## 5933 poisonous    convex       scaly     brown      no
## 5934 poisonous    convex       scaly     brown      no
## 5935 poisonous      flat      smooth      buff     yes
## 5936 poisonous      bell       scaly    yellow      no
## 5937 poisonous    convex      smooth      gray     yes
## 5938    edible      flat       scaly      pink     yes
## 5939    edible   knobbed      smooth      pink     yes
## 5940    edible      flat       scaly     brown     yes
## 5941 poisonous      bell       scaly      pink     yes
## 5942 poisonous    convex      smooth      gray     yes
## 5943 poisonous    convex      smooth      gray     yes
## 5944 poisonous    convex     fibrous    yellow      no
## 5945 poisonous    convex       scaly     brown      no
## 5946 poisonous      flat       scaly      buff     yes
## 5947 poisonous    convex      smooth      buff     yes
## 5948 poisonous      bell      smooth      buff     yes
## 5949    edible      flat       scaly     white      no
## 5950    edible    convex       scaly     brown      no
## 5951 poisonous    convex     fibrous    yellow      no
## 5952 poisonous      flat      smooth      buff     yes
## 5953 poisonous      flat       scaly    yellow      no
## 5954    edible   knobbed      smooth       red     yes
## 5955 poisonous      flat     fibrous    yellow      no
## 5956 poisonous      bell     fibrous     brown      no
## 5957 poisonous    convex       scaly     brown      no
## 5958 poisonous      flat       scaly    yellow      no
## 5959 poisonous    convex       scaly    yellow      no
## 5960 poisonous    convex      smooth      gray     yes
## 5961 poisonous    convex       scaly     brown      no
## 5962    edible    convex       scaly     brown     yes
## 5963    edible      flat       scaly     brown      no
## 5964 poisonous      flat       scaly      buff     yes
## 5965 poisonous   knobbed     fibrous     brown      no
## 5966 poisonous      flat       scaly      gray      no
## 5967 poisonous    convex       scaly     brown      no
## 5968 poisonous      flat     fibrous      gray      no
## 5969 poisonous      flat     fibrous      gray      no
## 5970 poisonous    convex      smooth      gray     yes
## 5971    edible    convex       scaly     green      no
## 5972 poisonous    convex       scaly     brown      no
## 5973 poisonous      flat      smooth      pink     yes
## 5974 poisonous    convex       scaly       red      no
## 5975 poisonous      flat      smooth      buff     yes
## 5976 poisonous    convex      smooth      buff     yes
## 5977    edible   knobbed      smooth       red     yes
## 5978 poisonous      flat      smooth      buff     yes
## 5979    edible    convex     fibrous     brown      no
## 5980 poisonous      flat       scaly    yellow      no
## 5981    edible      flat       scaly     white      no
## 5982 poisonous      flat      smooth     white     yes
## 5983 poisonous      flat      smooth      pink     yes
## 5984 poisonous      flat       scaly    yellow      no
## 5985 poisonous      flat      smooth      gray     yes
## 5986 poisonous    convex       scaly     brown      no
## 5987 poisonous      flat       scaly    yellow      no
## 5988 poisonous      flat      smooth      gray     yes
## 5989 poisonous      flat      smooth     white     yes
## 5990 poisonous    convex       scaly     brown      no
## 5991 poisonous      flat     fibrous    yellow      no
## 5992 poisonous    convex       scaly     brown      no
## 5993 poisonous      bell       scaly      buff     yes
## 5994 poisonous      flat       scaly    yellow      no
## 5995 poisonous    convex       scaly       red      no
## 5996 poisonous    convex       scaly     brown      no
## 5997    edible   knobbed       scaly      buff     yes
## 5998    edible    convex       scaly     white      no
## 5999 poisonous      flat      smooth      buff     yes
## 6000 poisonous      flat       scaly    yellow      no
print(df_new_fungus[6001:7000, ])
##            eat cap_shape cap_surface cap_color bruises
## 6001 poisonous    convex       scaly       red      no
## 6002 poisonous      flat      smooth       red      no
## 6003 poisonous    convex       scaly       red      no
## 6004 poisonous    convex      smooth     brown      no
## 6005 poisonous      flat       scaly     brown      no
## 6006 poisonous      flat       scaly       red      no
## 6007 poisonous   knobbed       scaly     brown      no
## 6008 poisonous      flat       scaly       red      no
## 6009 poisonous    convex      smooth       red      no
## 6010 poisonous      flat       scaly     brown      no
## 6011 poisonous      flat       scaly       red      no
## 6012 poisonous    convex      smooth       red      no
## 6013 poisonous    convex      smooth     brown      no
## 6014 poisonous      flat      smooth       red      no
## 6015 poisonous      flat      smooth       red      no
## 6016 poisonous      flat       scaly       red      no
## 6017 poisonous      flat       scaly     brown      no
## 6018 poisonous      flat       scaly     brown      no
## 6019 poisonous    convex       scaly       red      no
## 6020 poisonous   knobbed      smooth     brown      no
## 6021 poisonous    convex      smooth     brown      no
## 6022 poisonous      flat      smooth       red      no
## 6023 poisonous      flat       scaly       red      no
## 6024 poisonous   knobbed      smooth       red      no
## 6025 poisonous      flat       scaly       red      no
## 6026 poisonous    convex      smooth     brown      no
## 6027 poisonous      flat      smooth       red      no
## 6028 poisonous      flat      smooth     brown      no
## 6029 poisonous      flat       scaly       red      no
## 6030 poisonous      flat      smooth       red      no
## 6031 poisonous      flat      smooth     brown      no
## 6032 poisonous      flat       scaly       red      no
## 6033 poisonous    convex      smooth       red      no
## 6034 poisonous      flat      smooth       red      no
## 6035 poisonous    convex      smooth     brown      no
## 6036 poisonous      flat       scaly     brown      no
## 6037 poisonous    convex       scaly       red      no
## 6038 poisonous      flat       scaly     brown      no
## 6039    edible      bell      smooth     brown      no
## 6040 poisonous      flat      smooth     brown      no
## 6041    edible    convex      smooth     brown      no
## 6042 poisonous      flat       scaly       red      no
## 6043 poisonous      flat       scaly     brown      no
## 6044 poisonous      flat       scaly       red      no
## 6045 poisonous      flat      smooth     brown      no
## 6046 poisonous    convex       scaly       red      no
## 6047 poisonous    convex      smooth     brown      no
## 6048 poisonous      flat      smooth     brown      no
## 6049 poisonous      flat       scaly       red      no
## 6050 poisonous      flat      smooth     brown      no
## 6051 poisonous      flat      smooth     brown      no
## 6052 poisonous      flat      smooth     brown      no
## 6053 poisonous      flat       scaly       red      no
## 6054 poisonous      flat      smooth       red      no
## 6055 poisonous    convex       scaly       red      no
## 6056 poisonous    convex      smooth       red      no
## 6057 poisonous      flat      smooth       red      no
## 6058 poisonous      flat       scaly     brown      no
## 6059 poisonous    convex       scaly       red      no
## 6060 poisonous   knobbed      smooth       red      no
## 6061 poisonous   knobbed      smooth     brown      no
## 6062 poisonous      flat       scaly     brown      no
## 6063 poisonous    convex      smooth       red      no
## 6064 poisonous    convex       scaly       red      no
## 6065 poisonous      flat       scaly       red      no
## 6066 poisonous      flat       scaly     brown      no
## 6067 poisonous      flat      smooth       red      no
## 6068 poisonous    convex      smooth     brown      no
## 6069    edible    convex     fibrous     white      no
## 6070 poisonous      flat       scaly     brown      no
## 6071 poisonous    convex      smooth     brown      no
## 6072 poisonous    convex      smooth       red      no
## 6073 poisonous      flat      smooth     brown      no
## 6074 poisonous      flat      smooth     brown      no
## 6075 poisonous    convex       scaly       red      no
## 6076 poisonous    convex      smooth       red      no
## 6077 poisonous      flat      smooth     brown      no
## 6078 poisonous   knobbed      smooth     brown      no
## 6079 poisonous      flat       scaly     brown      no
## 6080 poisonous    convex      smooth     brown      no
## 6081 poisonous      flat       scaly       red      no
## 6082 poisonous    convex      smooth       red      no
## 6083 poisonous      flat      smooth     brown      no
## 6084 poisonous      flat       scaly     brown      no
## 6085 poisonous   knobbed       scaly     brown      no
## 6086 poisonous      flat       scaly     brown      no
## 6087 poisonous      flat      smooth     brown      no
## 6088 poisonous    convex      smooth       red      no
## 6089 poisonous      flat      smooth     brown      no
## 6090 poisonous      flat      smooth     brown      no
## 6091 poisonous      flat      smooth       red      no
## 6092 poisonous      flat       scaly     brown      no
## 6093 poisonous      flat      smooth     brown      no
## 6094 poisonous      flat       scaly     brown      no
## 6095 poisonous      flat      smooth       red      no
## 6096 poisonous      flat      smooth       red      no
## 6097 poisonous    convex       scaly       red      no
## 6098 poisonous      flat      smooth     brown      no
## 6099 poisonous    convex       scaly       red      no
## 6100 poisonous      flat       scaly       red      no
## 6101 poisonous    convex      smooth     brown      no
## 6102 poisonous      flat       scaly     brown      no
## 6103 poisonous      flat       scaly       red      no
## 6104 poisonous    convex       scaly       red      no
## 6105 poisonous      flat       scaly     brown      no
## 6106 poisonous      flat       scaly     brown      no
## 6107 poisonous    convex       scaly       red      no
## 6108 poisonous      flat       scaly     brown      no
## 6109 poisonous      flat      smooth     brown      no
## 6110 poisonous    convex      smooth     brown      no
## 6111 poisonous      flat       scaly       red      no
## 6112 poisonous    convex       scaly       red      no
## 6113 poisonous    convex      smooth       red      no
## 6114 poisonous      flat      smooth       red      no
## 6115 poisonous      flat       scaly       red      no
## 6116 poisonous    convex       scaly       red      no
## 6117 poisonous    convex       scaly       red      no
## 6118 poisonous    convex      smooth     brown      no
## 6119 poisonous    convex      smooth       red      no
## 6120 poisonous   knobbed      smooth       red      no
## 6121    edible    convex      smooth  cinnamon     yes
## 6122 poisonous    convex      smooth       red      no
## 6123 poisonous      flat      smooth     brown      no
## 6124 poisonous    convex      smooth     brown      no
## 6125 poisonous      flat       scaly     brown      no
## 6126 poisonous      flat       scaly       red      no
## 6127 poisonous      flat      smooth       red      no
## 6128 poisonous    convex       scaly       red      no
## 6129 poisonous    convex      smooth       red      no
## 6130 poisonous    convex      smooth     brown      no
## 6131 poisonous    convex       scaly       red      no
## 6132 poisonous      flat      smooth       red      no
## 6133 poisonous      flat      smooth     brown      no
## 6134 poisonous      flat       scaly       red      no
## 6135 poisonous    convex       scaly       red      no
## 6136 poisonous   knobbed      smooth       red      no
## 6137 poisonous      flat       scaly     brown      no
## 6138 poisonous      flat      smooth     brown      no
## 6139 poisonous    convex      smooth       red      no
## 6140 poisonous      flat      smooth     brown      no
## 6141 poisonous      flat      smooth       red      no
## 6142 poisonous      flat       scaly       red      no
## 6143    edible      bell     fibrous     white      no
## 6144 poisonous    convex       scaly       red      no
## 6145 poisonous    convex       scaly       red      no
## 6146 poisonous      flat       scaly       red      no
## 6147 poisonous      flat       scaly       red      no
## 6148    edible   knobbed     fibrous     white      no
## 6149 poisonous    convex      smooth     brown      no
## 6150 poisonous      flat      smooth     brown      no
## 6151 poisonous    convex      smooth     brown      no
## 6152 poisonous      flat      smooth       red      no
## 6153 poisonous    convex      smooth     brown      no
## 6154 poisonous    convex      smooth     brown      no
## 6155 poisonous    convex      smooth       red      no
## 6156 poisonous   knobbed      smooth     brown      no
## 6157 poisonous    convex       scaly       red      no
## 6158 poisonous    convex      smooth       red      no
## 6159 poisonous    convex       scaly       red      no
## 6160 poisonous    convex      smooth       red      no
## 6161 poisonous    convex      smooth       red      no
## 6162 poisonous    convex      smooth       red      no
## 6163 poisonous    convex      smooth       red      no
## 6164 poisonous      flat       scaly       red      no
## 6165 poisonous    convex      smooth     brown      no
## 6166 poisonous      flat      smooth     brown      no
## 6167 poisonous    convex      smooth       red      no
## 6168 poisonous      flat      smooth       red      no
## 6169 poisonous    convex      smooth     brown      no
## 6170 poisonous      flat       scaly       red      no
## 6171 poisonous    convex      smooth     brown      no
## 6172 poisonous   knobbed      smooth     brown      no
## 6173 poisonous      flat      smooth       red      no
## 6174 poisonous      flat      smooth       red      no
## 6175 poisonous      flat       scaly       red      no
## 6176 poisonous   knobbed      smooth     brown      no
## 6177 poisonous      flat       scaly     brown      no
## 6178 poisonous      flat      smooth       red      no
## 6179 poisonous    convex       scaly       red      no
## 6180 poisonous      flat      smooth       red      no
## 6181 poisonous      flat       scaly       red      no
## 6182 poisonous      flat      smooth     brown      no
## 6183 poisonous      flat      smooth     brown      no
## 6184 poisonous    convex       scaly       red      no
## 6185 poisonous    convex       scaly       red      no
## 6186 poisonous      flat      smooth       red      no
## 6187 poisonous   knobbed       scaly       red      no
## 6188 poisonous      flat       scaly       red      no
## 6189 poisonous   knobbed       scaly     brown      no
## 6190 poisonous    convex      smooth       red      no
## 6191 poisonous    convex       scaly       red      no
## 6192 poisonous    convex      smooth     brown      no
## 6193 poisonous      flat       scaly     brown      no
## 6194 poisonous    convex      smooth       red      no
## 6195    edible      bell      smooth      gray      no
## 6196 poisonous    convex       scaly       red      no
## 6197 poisonous    convex      smooth       red      no
## 6198 poisonous      flat       scaly       red      no
## 6199 poisonous    convex      smooth       red      no
## 6200 poisonous      flat       scaly       red      no
## 6201 poisonous      flat       scaly       red      no
## 6202 poisonous    convex      smooth     brown      no
## 6203 poisonous      flat       scaly     brown      no
## 6204    edible   knobbed      smooth     white      no
## 6205 poisonous      flat       scaly       red      no
## 6206 poisonous    convex      smooth       red      no
## 6207 poisonous      flat       scaly     brown      no
## 6208 poisonous      flat       scaly     brown      no
## 6209 poisonous    convex      smooth       red      no
## 6210 poisonous      flat       scaly       red      no
## 6211 poisonous      flat       scaly       red      no
## 6212 poisonous      flat      smooth     brown      no
## 6213 poisonous    convex       scaly       red      no
## 6214 poisonous      flat       scaly       red      no
## 6215    edible      bell     fibrous      gray      no
## 6216 poisonous   knobbed       scaly       red      no
## 6217 poisonous    convex       scaly       red      no
## 6218 poisonous   knobbed      smooth       red      no
## 6219 poisonous    convex      smooth     brown      no
## 6220    edible   knobbed      smooth     white      no
## 6221 poisonous      flat      smooth       red      no
## 6222 poisonous    convex      smooth     brown      no
## 6223 poisonous   knobbed      smooth       red      no
## 6224 poisonous   knobbed       scaly     brown      no
## 6225 poisonous   knobbed       scaly       red      no
## 6226 poisonous    convex      smooth       red      no
## 6227 poisonous      flat      smooth       red      no
## 6228 poisonous      flat       scaly       red      no
## 6229 poisonous    convex       scaly       red      no
## 6230 poisonous      flat       scaly     brown      no
## 6231 poisonous    convex       scaly       red      no
## 6232 poisonous      flat       scaly     brown      no
## 6233 poisonous    convex       scaly       red      no
## 6234 poisonous   knobbed       scaly     brown      no
## 6235 poisonous      flat      smooth       red      no
## 6236 poisonous    convex      smooth     brown      no
## 6237 poisonous      flat       scaly     brown      no
## 6238 poisonous      flat      smooth       red      no
## 6239 poisonous    convex      smooth       red      no
## 6240 poisonous      flat      smooth     brown      no
## 6241 poisonous      flat       scaly     brown      no
## 6242 poisonous    convex       scaly       red      no
## 6243 poisonous    convex      smooth       red      no
## 6244 poisonous      flat       scaly       red      no
## 6245 poisonous      flat      smooth       red      no
## 6246 poisonous      flat       scaly       red      no
## 6247 poisonous    convex      smooth     brown      no
## 6248 poisonous      flat      smooth     brown      no
## 6249 poisonous    convex      smooth     brown      no
## 6250 poisonous      flat       scaly     brown      no
## 6251 poisonous   knobbed       scaly     brown      no
## 6252 poisonous    convex      smooth       red      no
## 6253 poisonous      flat       scaly     brown      no
## 6254 poisonous    convex       scaly       red      no
## 6255 poisonous      flat       scaly       red      no
## 6256 poisonous    convex       scaly       red      no
## 6257 poisonous      flat       scaly       red      no
## 6258 poisonous      flat       scaly       red      no
## 6259 poisonous      flat      smooth       red      no
## 6260 poisonous   knobbed       scaly       red      no
## 6261 poisonous    convex      smooth       red      no
## 6262    edible   knobbed      smooth      gray      no
## 6263 poisonous    convex      smooth     brown      no
## 6264 poisonous      flat      smooth       red      no
## 6265 poisonous      flat      smooth     brown      no
## 6266 poisonous      flat      smooth       red      no
## 6267 poisonous      flat       scaly     brown      no
## 6268 poisonous    convex      smooth       red      no
## 6269 poisonous    convex      smooth       red      no
## 6270 poisonous    convex      smooth       red      no
## 6271 poisonous    convex      smooth       red      no
## 6272 poisonous      flat      smooth       red      no
## 6273 poisonous    convex      smooth       red      no
## 6274 poisonous    convex      smooth     brown      no
## 6275 poisonous      flat      smooth     brown      no
## 6276 poisonous   knobbed       scaly     brown      no
## 6277 poisonous    convex       scaly       red      no
## 6278 poisonous    convex      smooth     brown      no
## 6279 poisonous    convex      smooth       red      no
## 6280    edible      bell      smooth     white      no
## 6281 poisonous      flat      smooth       red      no
## 6282 poisonous    convex      smooth       red      no
## 6283 poisonous    convex       scaly       red      no
## 6284 poisonous      flat       scaly     brown      no
## 6285 poisonous      flat      smooth       red      no
## 6286 poisonous      flat       scaly     brown      no
## 6287 poisonous      flat       scaly       red      no
## 6288 poisonous      flat      smooth     brown      no
## 6289 poisonous    convex       scaly       red      no
## 6290 poisonous      flat      smooth     brown      no
## 6291 poisonous    convex      smooth     brown      no
## 6292 poisonous      flat      smooth       red      no
## 6293 poisonous    convex      smooth     brown      no
## 6294 poisonous      flat      smooth       red      no
## 6295 poisonous    convex       scaly       red      no
## 6296 poisonous      flat       scaly     brown      no
## 6297 poisonous    convex       scaly       red      no
## 6298 poisonous      flat      smooth     brown      no
## 6299 poisonous      flat      smooth     brown      no
## 6300 poisonous    convex      smooth     brown      no
## 6301 poisonous      flat      smooth       red      no
## 6302 poisonous   knobbed       scaly     brown      no
## 6303 poisonous    convex       scaly       red      no
## 6304 poisonous    convex       scaly       red      no
## 6305 poisonous   knobbed      smooth     brown      no
## 6306 poisonous    convex      smooth       red      no
## 6307 poisonous    convex      smooth       red      no
## 6308 poisonous      flat       scaly     brown      no
## 6309 poisonous      flat      smooth       red      no
## 6310 poisonous      flat      smooth       red      no
## 6311 poisonous      flat      smooth     brown      no
## 6312 poisonous      flat       scaly       red      no
## 6313 poisonous      flat       scaly       red      no
## 6314 poisonous   knobbed      smooth       red      no
## 6315 poisonous    convex      smooth     brown      no
## 6316 poisonous      flat       scaly     brown      no
## 6317 poisonous      flat      smooth       red      no
## 6318 poisonous   knobbed      smooth     brown      no
## 6319 poisonous      flat       scaly     brown      no
## 6320 poisonous    convex       scaly       red      no
## 6321 poisonous    convex       scaly       red      no
## 6322 poisonous    convex      smooth       red      no
## 6323 poisonous      flat       scaly     brown      no
## 6324 poisonous      flat       scaly     brown      no
## 6325 poisonous      flat       scaly       red      no
## 6326 poisonous   knobbed       scaly     brown      no
## 6327 poisonous    convex      smooth     brown      no
## 6328 poisonous    convex      smooth       red      no
## 6329 poisonous    convex      smooth     brown      no
## 6330 poisonous      flat       scaly       red      no
## 6331 poisonous   knobbed       scaly       red      no
## 6332    edible    convex     fibrous      gray      no
## 6333 poisonous      flat       scaly       red      no
## 6334 poisonous    convex      smooth       red      no
## 6335 poisonous    convex      smooth       red      no
## 6336 poisonous    convex       scaly       red      no
## 6337 poisonous      flat       scaly     brown      no
## 6338 poisonous      flat       scaly     brown      no
## 6339 poisonous    convex      smooth     brown      no
## 6340 poisonous    convex      smooth       red      no
## 6341 poisonous      flat       scaly       red      no
## 6342 poisonous      flat      smooth     brown      no
## 6343 poisonous      flat       scaly     brown      no
## 6344 poisonous      flat       scaly     brown      no
## 6345 poisonous    convex       scaly       red      no
## 6346 poisonous    convex      smooth       red      no
## 6347 poisonous      flat      smooth     brown      no
## 6348 poisonous      flat      smooth     brown      no
## 6349 poisonous    convex      smooth       red      no
## 6350 poisonous      flat      smooth     brown      no
## 6351 poisonous      flat      smooth     brown      no
## 6352 poisonous      flat       scaly     brown      no
## 6353 poisonous    convex      smooth     brown      no
## 6354 poisonous      flat      smooth     brown      no
## 6355 poisonous      flat      smooth     brown      no
## 6356 poisonous    convex      smooth     brown      no
## 6357 poisonous      flat       scaly     brown      no
## 6358 poisonous    convex      smooth     brown      no
## 6359 poisonous    convex      smooth     brown      no
## 6360 poisonous      flat      smooth     brown      no
## 6361 poisonous      flat       scaly     brown      no
## 6362 poisonous    convex       scaly       red      no
## 6363 poisonous      flat      smooth       red      no
## 6364 poisonous      flat       scaly     brown      no
## 6365 poisonous      flat      smooth       red      no
## 6366 poisonous    convex      smooth     brown      no
## 6367    edible   knobbed     fibrous     white      no
## 6368 poisonous    convex      smooth     brown      no
## 6369 poisonous      flat      smooth     brown      no
## 6370 poisonous      flat       scaly     brown      no
## 6371 poisonous      flat      smooth     brown      no
## 6372 poisonous      flat       scaly     brown      no
## 6373 poisonous      flat       scaly     brown      no
## 6374 poisonous      flat      smooth     brown      no
## 6375 poisonous      flat       scaly       red      no
## 6376    edible      bell      smooth     brown      no
## 6377 poisonous      flat      smooth       red      no
## 6378 poisonous      flat      smooth       red      no
## 6379 poisonous    convex      smooth       red      no
## 6380 poisonous      flat       scaly     brown      no
## 6381 poisonous      flat       scaly       red      no
## 6382 poisonous      flat      smooth     brown      no
## 6383 poisonous      flat       scaly       red      no
## 6384 poisonous      flat      smooth     brown      no
## 6385 poisonous   knobbed       scaly     brown      no
## 6386 poisonous      flat       scaly       red      no
## 6387 poisonous      flat      smooth       red      no
## 6388 poisonous    convex       scaly       red      no
## 6389 poisonous      flat      smooth     brown      no
## 6390 poisonous    convex      smooth       red      no
## 6391 poisonous   knobbed       scaly     brown      no
## 6392 poisonous    convex      smooth     brown      no
## 6393 poisonous    convex       scaly       red      no
## 6394 poisonous      flat       scaly     brown      no
## 6395 poisonous      flat      smooth       red      no
## 6396 poisonous      flat      smooth     brown      no
## 6397    edible    convex      smooth     white      no
## 6398 poisonous      flat       scaly     brown      no
## 6399 poisonous      flat      smooth     brown      no
## 6400 poisonous    convex       scaly       red      no
## 6401 poisonous      flat      smooth       red      no
## 6402 poisonous    convex      smooth     brown      no
## 6403 poisonous    convex       scaly       red      no
## 6404    edible   knobbed     fibrous      gray      no
## 6405 poisonous      flat      smooth       red      no
## 6406 poisonous      flat       scaly       red      no
## 6407    edible      bell     fibrous     white      no
## 6408 poisonous      flat      smooth     brown      no
## 6409 poisonous    convex       scaly       red      no
## 6410 poisonous    convex       scaly       red      no
## 6411 poisonous      flat      smooth     brown      no
## 6412 poisonous    convex      smooth     brown      no
## 6413 poisonous      flat      smooth       red      no
## 6414 poisonous      flat      smooth       red      no
## 6415 poisonous      flat      smooth       red      no
## 6416 poisonous    convex       scaly       red      no
## 6417 poisonous      flat       scaly     brown      no
## 6418 poisonous      flat       scaly       red      no
## 6419 poisonous    convex      smooth       red      no
## 6420 poisonous      flat      smooth       red      no
## 6421 poisonous      flat       scaly       red      no
## 6422 poisonous      flat       scaly       red      no
## 6423 poisonous    convex      smooth       red      no
## 6424 poisonous      flat      smooth       red      no
## 6425    edible    convex      smooth     brown      no
## 6426 poisonous      flat       scaly     brown      no
## 6427 poisonous      flat       scaly       red      no
## 6428 poisonous      flat       scaly       red      no
## 6429 poisonous    convex      smooth     brown      no
## 6430 poisonous    convex      smooth       red      no
## 6431 poisonous    convex       scaly       red      no
## 6432 poisonous    convex      smooth       red      no
## 6433 poisonous    convex       scaly       red      no
## 6434 poisonous      flat       scaly       red      no
## 6435    edible    convex      smooth     brown      no
## 6436 poisonous      flat      smooth     brown      no
## 6437 poisonous    convex       scaly       red      no
## 6438 poisonous      flat      smooth     brown      no
## 6439 poisonous      flat       scaly       red      no
## 6440 poisonous    convex       scaly       red      no
## 6441 poisonous    convex      smooth     brown      no
## 6442 poisonous    convex      smooth     brown      no
## 6443 poisonous    convex      smooth     brown      no
## 6444 poisonous    convex       scaly       red      no
## 6445 poisonous      flat      smooth     brown      no
## 6446 poisonous      flat      smooth     brown      no
## 6447 poisonous   knobbed       scaly       red      no
## 6448 poisonous    convex      smooth     brown      no
## 6449 poisonous      flat       scaly     brown      no
## 6450    edible   knobbed      smooth     white      no
## 6451 poisonous      flat      smooth       red      no
## 6452 poisonous    convex      smooth       red      no
## 6453 poisonous      flat       scaly     brown      no
## 6454 poisonous      flat       scaly     brown      no
## 6455 poisonous      flat       scaly       red      no
## 6456 poisonous    convex      smooth     brown      no
## 6457 poisonous      flat       scaly     brown      no
## 6458 poisonous    convex      smooth     brown      no
## 6459 poisonous   knobbed       scaly     brown      no
## 6460 poisonous      flat      smooth       red      no
## 6461 poisonous      flat       scaly       red      no
## 6462 poisonous      flat       scaly       red      no
## 6463 poisonous      flat       scaly       red      no
## 6464 poisonous      flat       scaly     brown      no
## 6465 poisonous      flat       scaly     brown      no
## 6466 poisonous   knobbed       scaly     brown      no
## 6467 poisonous   knobbed       scaly     brown      no
## 6468 poisonous      flat      smooth       red      no
## 6469 poisonous    convex      smooth       red      no
## 6470 poisonous   knobbed      smooth     brown      no
## 6471 poisonous    convex      smooth       red      no
## 6472 poisonous      flat      smooth     brown      no
## 6473 poisonous    convex      smooth       red      no
## 6474 poisonous      flat      smooth     brown      no
## 6475 poisonous    convex      smooth     brown      no
## 6476 poisonous      flat       scaly       red      no
## 6477 poisonous    convex      smooth     brown      no
## 6478 poisonous    convex      smooth       red      no
## 6479 poisonous    convex      smooth       red      no
## 6480 poisonous    convex      smooth     brown      no
## 6481 poisonous    convex       scaly       red      no
## 6482 poisonous      flat       scaly       red      no
## 6483 poisonous      flat      smooth       red      no
## 6484 poisonous    convex      smooth       red      no
## 6485 poisonous      flat       scaly       red      no
## 6486 poisonous      flat      smooth       red      no
## 6487 poisonous      flat      smooth       red      no
## 6488 poisonous      flat       scaly     brown      no
## 6489 poisonous      flat      smooth     brown      no
## 6490 poisonous    convex      smooth       red      no
## 6491 poisonous      flat       scaly     brown      no
## 6492 poisonous      flat      smooth     brown      no
## 6493 poisonous      flat       scaly     brown      no
## 6494 poisonous      flat      smooth       red      no
## 6495 poisonous      flat       scaly       red      no
## 6496 poisonous      flat       scaly     brown      no
## 6497 poisonous      flat      smooth       red      no
## 6498 poisonous      flat      smooth       red      no
## 6499 poisonous      flat       scaly     brown      no
## 6500 poisonous      flat      smooth       red      no
## 6501 poisonous      flat      smooth     brown      no
## 6502 poisonous   knobbed       scaly       red      no
## 6503 poisonous      flat       scaly       red      no
## 6504 poisonous      flat      smooth       red      no
## 6505 poisonous      flat       scaly       red      no
## 6506 poisonous      flat       scaly     brown      no
## 6507 poisonous      flat       scaly       red      no
## 6508 poisonous      flat      smooth     brown      no
## 6509 poisonous    convex       scaly       red      no
## 6510    edible    convex     fibrous     white      no
## 6511 poisonous    convex      smooth       red      no
## 6512 poisonous    convex      smooth       red      no
## 6513 poisonous      flat       scaly     brown      no
## 6514 poisonous    convex      smooth       red      no
## 6515 poisonous    convex      smooth     brown      no
## 6516 poisonous    convex      smooth     brown      no
## 6517 poisonous    convex      smooth     brown      no
## 6518    edible    convex     fibrous      gray      no
## 6519 poisonous      flat       scaly       red      no
## 6520 poisonous      flat       scaly       red      no
## 6521 poisonous    convex       scaly       red      no
## 6522 poisonous    convex      smooth     brown      no
## 6523 poisonous   knobbed      smooth       red      no
## 6524 poisonous   knobbed       scaly       red      no
## 6525 poisonous      flat       scaly       red      no
## 6526 poisonous    convex      smooth     brown      no
## 6527 poisonous      flat      smooth     brown      no
## 6528 poisonous    convex      smooth       red      no
## 6529 poisonous      flat       scaly     brown      no
## 6530 poisonous    convex      smooth     brown      no
## 6531    edible   knobbed     fibrous     white      no
## 6532 poisonous   knobbed       scaly     brown      no
## 6533 poisonous      flat      smooth       red      no
## 6534 poisonous    convex       scaly       red      no
## 6535 poisonous    convex      smooth     brown      no
## 6536 poisonous    convex      smooth     brown      no
## 6537 poisonous      flat       scaly       red      no
## 6538 poisonous      flat       scaly     brown      no
## 6539 poisonous    convex       scaly       red      no
## 6540 poisonous      flat      smooth       red      no
## 6541 poisonous    convex      smooth       red      no
## 6542 poisonous    convex      smooth     brown      no
## 6543 poisonous      flat       scaly     brown      no
## 6544 poisonous      flat       scaly       red      no
## 6545 poisonous      flat       scaly     brown      no
## 6546 poisonous      flat       scaly     brown      no
## 6547 poisonous      flat      smooth     brown      no
## 6548 poisonous      flat       scaly       red      no
## 6549 poisonous      flat       scaly       red      no
## 6550 poisonous    convex       scaly       red      no
## 6551 poisonous   knobbed      smooth       red      no
## 6552 poisonous      flat       scaly       red      no
## 6553 poisonous      flat       scaly     brown      no
## 6554 poisonous      flat      smooth     brown      no
## 6555 poisonous      flat      smooth       red      no
## 6556 poisonous   knobbed      smooth       red      no
## 6557 poisonous      flat       scaly       red      no
## 6558 poisonous      flat      smooth     brown      no
## 6559    edible    convex      smooth     brown      no
## 6560 poisonous    convex      smooth     brown      no
## 6561 poisonous   knobbed      smooth     brown      no
## 6562 poisonous      flat      smooth     brown      no
## 6563 poisonous      flat      smooth     brown      no
## 6564 poisonous    convex      smooth     brown      no
## 6565 poisonous      flat      smooth     brown      no
## 6566 poisonous      flat       scaly       red      no
## 6567 poisonous      flat       scaly       red      no
## 6568 poisonous      flat      smooth     brown      no
## 6569 poisonous    convex      smooth       red      no
## 6570 poisonous    convex      smooth     brown      no
## 6571 poisonous    convex      smooth       red      no
## 6572 poisonous    convex      smooth       red      no
## 6573 poisonous      flat       scaly       red      no
## 6574 poisonous    convex      smooth       red      no
## 6575 poisonous   knobbed      smooth       red      no
## 6576 poisonous    convex       scaly       red      no
## 6577 poisonous      flat      smooth     brown      no
## 6578 poisonous      flat      smooth     brown      no
## 6579 poisonous    convex      smooth     brown      no
## 6580 poisonous   knobbed       scaly       red      no
## 6581 poisonous    convex      smooth       red      no
## 6582 poisonous      flat       scaly     brown      no
## 6583 poisonous      flat       scaly       red      no
## 6584 poisonous      flat       scaly     brown      no
## 6585 poisonous      flat      smooth     brown      no
## 6586 poisonous      flat      smooth       red      no
## 6587 poisonous   knobbed       scaly     brown      no
## 6588 poisonous      flat       scaly       red      no
## 6589 poisonous      flat      smooth       red      no
## 6590 poisonous      flat      smooth     brown      no
## 6591 poisonous    convex      smooth     brown      no
## 6592 poisonous      flat       scaly     brown      no
## 6593 poisonous      flat       scaly       red      no
## 6594 poisonous    convex       scaly       red      no
## 6595 poisonous      flat      smooth       red      no
## 6596 poisonous    convex      smooth     brown      no
## 6597 poisonous      flat      smooth     brown      no
## 6598 poisonous      flat      smooth     brown      no
## 6599 poisonous      flat      smooth       red      no
## 6600    edible    convex      smooth      gray      no
## 6601 poisonous   knobbed       scaly     brown      no
## 6602 poisonous    convex       scaly       red      no
## 6603 poisonous    convex      smooth     brown      no
## 6604 poisonous    convex      smooth     brown      no
## 6605 poisonous      flat       scaly       red      no
## 6606 poisonous   knobbed       scaly     brown      no
## 6607 poisonous    convex      smooth       red      no
## 6608 poisonous    convex      smooth     brown      no
## 6609 poisonous   knobbed       scaly     brown      no
## 6610 poisonous    convex       scaly       red      no
## 6611 poisonous   knobbed      smooth     brown      no
## 6612 poisonous    convex      smooth     brown      no
## 6613 poisonous    convex       scaly       red      no
## 6614 poisonous      flat      smooth       red      no
## 6615 poisonous      flat      smooth     brown      no
## 6616 poisonous      flat      smooth     brown      no
## 6617 poisonous      flat      smooth       red      no
## 6618 poisonous    convex       scaly       red      no
## 6619 poisonous    convex      smooth       red      no
## 6620 poisonous      flat      smooth     brown      no
## 6621 poisonous      flat       scaly       red      no
## 6622 poisonous    convex      smooth     brown      no
## 6623 poisonous    convex      smooth       red      no
## 6624 poisonous    convex      smooth       red      no
## 6625 poisonous      flat      smooth       red      no
## 6626 poisonous    convex       scaly       red      no
## 6627 poisonous    convex      smooth     brown      no
## 6628 poisonous    convex      smooth       red      no
## 6629 poisonous    convex      smooth       red      no
## 6630 poisonous    convex      smooth     brown      no
## 6631 poisonous    convex      smooth     brown      no
## 6632 poisonous      flat      smooth       red      no
## 6633 poisonous      flat       scaly       red      no
## 6634 poisonous    convex      smooth     brown      no
## 6635 poisonous    convex      smooth       red      no
## 6636 poisonous      flat      smooth     brown      no
## 6637 poisonous    convex      smooth     brown      no
## 6638 poisonous      flat      smooth       red      no
## 6639 poisonous   knobbed       scaly     brown      no
## 6640 poisonous    convex      smooth     brown      no
## 6641 poisonous      flat       scaly     brown      no
## 6642 poisonous   knobbed       scaly     brown      no
## 6643 poisonous      flat      smooth       red      no
## 6644 poisonous      flat      smooth     brown      no
## 6645 poisonous    convex      smooth       red      no
## 6646 poisonous    convex      smooth     brown      no
## 6647 poisonous      flat       scaly     brown      no
## 6648 poisonous      flat       scaly     brown      no
## 6649 poisonous    convex      smooth       red      no
## 6650 poisonous      flat       scaly     brown      no
## 6651 poisonous    convex       scaly       red      no
## 6652 poisonous      flat       scaly     brown      no
## 6653 poisonous      flat       scaly       red      no
## 6654 poisonous    convex       scaly       red      no
## 6655 poisonous      flat      smooth       red      no
## 6656 poisonous   knobbed      smooth     brown      no
## 6657 poisonous    convex       scaly       red      no
## 6658 poisonous    convex      smooth     brown      no
## 6659 poisonous      flat      smooth       red      no
## 6660 poisonous      flat      smooth       red      no
## 6661    edible      bell     fibrous      gray      no
## 6662 poisonous    convex      smooth     brown      no
## 6663 poisonous   knobbed      smooth     brown      no
## 6664    edible      bell      smooth     brown      no
## 6665 poisonous      flat      smooth     brown      no
## 6666 poisonous      flat       scaly     brown      no
## 6667 poisonous    convex       scaly       red      no
## 6668 poisonous    convex      smooth       red      no
## 6669 poisonous   knobbed       scaly  cinnamon      no
## 6670 poisonous    convex      smooth       red      no
## 6671 poisonous      flat      smooth     brown      no
## 6672 poisonous    convex      smooth     brown      no
## 6673 poisonous    convex       scaly       red      no
## 6674 poisonous    convex      smooth       red      no
## 6675 poisonous      flat      smooth       red      no
## 6676 poisonous      flat      smooth     brown      no
## 6677 poisonous      flat      smooth     brown      no
## 6678 poisonous      flat       scaly       red      no
## 6679 poisonous    convex      smooth       red      no
## 6680 poisonous      flat       scaly       red      no
## 6681 poisonous      flat       scaly     brown      no
## 6682 poisonous    convex       scaly       red      no
## 6683 poisonous      flat       scaly       red      no
## 6684 poisonous      flat      smooth       red      no
## 6685 poisonous      flat      smooth       red      no
## 6686 poisonous    convex      smooth       red      no
## 6687 poisonous    convex      smooth       red      no
## 6688 poisonous   knobbed       scaly       red      no
## 6689 poisonous    convex       scaly       red      no
## 6690 poisonous    convex      smooth       red      no
## 6691 poisonous    convex      smooth     brown      no
## 6692 poisonous    convex      smooth     brown      no
## 6693 poisonous      flat      smooth     brown      no
## 6694 poisonous      flat       scaly     brown      no
## 6695 poisonous    convex      smooth       red      no
## 6696 poisonous   knobbed      smooth     brown      no
## 6697 poisonous      flat      smooth     brown      no
## 6698 poisonous      flat       scaly     brown      no
## 6699 poisonous      flat       scaly       red      no
## 6700 poisonous      flat       scaly       red      no
## 6701 poisonous      flat       scaly     brown      no
## 6702 poisonous    convex      smooth       red      no
## 6703 poisonous      flat       scaly     brown      no
## 6704 poisonous      flat      smooth     brown      no
## 6705 poisonous      flat      smooth       red      no
## 6706 poisonous    convex      smooth     brown      no
## 6707 poisonous      flat       scaly       red      no
## 6708 poisonous   knobbed       scaly     brown      no
## 6709 poisonous      flat      smooth     brown      no
## 6710 poisonous      flat       scaly     brown      no
## 6711 poisonous      flat      smooth       red      no
## 6712 poisonous    convex      smooth     brown      no
## 6713 poisonous      flat      smooth       red      no
## 6714 poisonous    convex      smooth       red      no
## 6715 poisonous      flat       scaly       red      no
## 6716 poisonous    convex      smooth       red      no
## 6717 poisonous      flat      smooth       red      no
## 6718 poisonous      flat      smooth     brown      no
## 6719 poisonous    convex      smooth     brown      no
## 6720 poisonous    convex      smooth       red      no
## 6721 poisonous      flat      smooth       red      no
## 6722 poisonous    convex      smooth       red      no
## 6723 poisonous    convex      smooth     brown      no
## 6724 poisonous      flat      smooth       red      no
## 6725 poisonous    convex       scaly       red      no
## 6726 poisonous    convex      smooth     brown      no
## 6727 poisonous    convex       scaly       red      no
## 6728 poisonous      flat      smooth       red      no
## 6729 poisonous    convex      smooth       red      no
## 6730 poisonous      flat       scaly     brown      no
## 6731 poisonous    convex      smooth       red      no
## 6732 poisonous    convex      smooth     brown      no
## 6733 poisonous      flat      smooth       red      no
## 6734 poisonous    convex      smooth       red      no
## 6735 poisonous      flat      smooth     brown      no
## 6736 poisonous    convex       scaly       red      no
## 6737 poisonous      flat       scaly       red      no
## 6738 poisonous    convex       scaly       red      no
## 6739 poisonous   knobbed       scaly     brown      no
## 6740 poisonous      flat       scaly     brown      no
## 6741 poisonous    convex       scaly       red      no
## 6742 poisonous      flat      smooth     brown      no
## 6743 poisonous    convex      smooth       red      no
## 6744 poisonous      flat      smooth       red      no
## 6745    edible    convex     fibrous      gray      no
## 6746 poisonous    convex      smooth       red      no
## 6747 poisonous      flat      smooth     brown      no
## 6748 poisonous      flat      smooth     brown      no
## 6749 poisonous    convex      smooth       red      no
## 6750 poisonous    convex      smooth       red      no
## 6751 poisonous    convex      smooth       red      no
## 6752 poisonous      flat       scaly       red      no
## 6753    edible      bell     fibrous      gray      no
## 6754 poisonous      flat       scaly     brown      no
## 6755 poisonous      flat       scaly       red      no
## 6756 poisonous      flat       scaly     brown      no
## 6757 poisonous      flat      smooth     brown      no
## 6758 poisonous      flat       scaly     brown      no
## 6759 poisonous    convex       scaly       red      no
## 6760 poisonous      flat       scaly     brown      no
## 6761 poisonous    convex      smooth     brown      no
## 6762 poisonous      flat       scaly       red      no
## 6763    edible   knobbed     fibrous      gray      no
## 6764    edible      bell      smooth     brown      no
## 6765 poisonous      flat      smooth     brown      no
## 6766 poisonous    convex      smooth     brown      no
## 6767 poisonous      flat       scaly     brown      no
## 6768 poisonous      flat      smooth       red      no
## 6769 poisonous      flat       scaly     brown      no
## 6770 poisonous      flat      smooth     brown      no
## 6771 poisonous      flat       scaly       red      no
## 6772 poisonous      flat       scaly       red      no
## 6773 poisonous      flat      smooth     brown      no
## 6774 poisonous    convex      smooth       red      no
## 6775    edible    convex     fibrous     white      no
## 6776 poisonous      flat      smooth     brown      no
## 6777 poisonous    convex      smooth       red      no
## 6778 poisonous    convex      smooth     brown      no
## 6779 poisonous    convex      smooth     brown      no
## 6780 poisonous    convex      smooth     brown      no
## 6781 poisonous   knobbed       scaly     brown      no
## 6782 poisonous      flat      smooth     brown      no
## 6783 poisonous    convex       scaly       red      no
## 6784 poisonous      flat      smooth     brown      no
## 6785 poisonous      flat      smooth     brown      no
## 6786 poisonous    convex      smooth     brown      no
## 6787 poisonous    convex      smooth     brown      no
## 6788 poisonous    convex       scaly       red      no
## 6789 poisonous      flat      smooth       red      no
## 6790 poisonous      flat      smooth       red      no
## 6791 poisonous      flat       scaly     brown      no
## 6792 poisonous    convex      smooth       red      no
## 6793 poisonous      flat      smooth       red      no
## 6794 poisonous      flat       scaly       red      no
## 6795 poisonous      flat       scaly       red      no
## 6796 poisonous    convex       scaly       red      no
## 6797 poisonous      flat       scaly     brown      no
## 6798 poisonous      flat      smooth     brown      no
## 6799 poisonous      flat      smooth     brown      no
## 6800 poisonous   knobbed       scaly       red      no
## 6801 poisonous      flat      smooth       red      no
## 6802 poisonous    convex      smooth       red      no
## 6803 poisonous    convex       scaly       red      no
## 6804 poisonous      flat       scaly       red      no
## 6805 poisonous    convex       scaly       red      no
## 6806 poisonous      flat       scaly       red      no
## 6807 poisonous      flat       scaly     brown      no
## 6808 poisonous      flat       scaly       red      no
## 6809 poisonous    convex       scaly       red      no
## 6810 poisonous    convex      smooth       red      no
## 6811 poisonous      flat      smooth       red      no
## 6812 poisonous      flat      smooth       red      no
## 6813 poisonous    convex      smooth       red      no
## 6814 poisonous      flat      smooth       red      no
## 6815 poisonous      flat      smooth       red      no
## 6816 poisonous      flat      smooth     brown      no
## 6817 poisonous      flat       scaly       red      no
## 6818 poisonous      flat       scaly     brown      no
## 6819 poisonous   knobbed      smooth       red      no
## 6820 poisonous      flat      smooth     brown      no
## 6821 poisonous      flat       scaly     brown      no
## 6822 poisonous      flat      smooth       red      no
## 6823 poisonous      flat       scaly       red      no
## 6824 poisonous    convex      smooth     brown      no
## 6825 poisonous   knobbed       scaly     brown      no
## 6826 poisonous    convex       scaly       red      no
## 6827 poisonous    convex      smooth       red      no
## 6828    edible    convex      smooth      gray      no
## 6829 poisonous   knobbed       scaly     brown      no
## 6830 poisonous    convex      smooth     brown      no
## 6831 poisonous      flat      smooth     brown      no
## 6832 poisonous      flat      smooth     brown      no
## 6833 poisonous    convex      smooth       red      no
## 6834 poisonous      flat      smooth       red      no
## 6835 poisonous      flat       scaly       red      no
## 6836 poisonous      flat       scaly       red      no
## 6837 poisonous      flat      smooth     brown      no
## 6838 poisonous      flat      smooth       red      no
## 6839 poisonous    convex      smooth     brown      no
## 6840 poisonous      flat      smooth       red      no
## 6841 poisonous    convex      smooth       red      no
## 6842 poisonous      flat      smooth       red      no
## 6843 poisonous      flat       scaly       red      no
## 6844 poisonous   knobbed       scaly       red      no
## 6845 poisonous      flat      smooth     brown      no
## 6846 poisonous   knobbed       scaly       red      no
## 6847 poisonous      flat      smooth       red      no
## 6848 poisonous      flat       scaly       red      no
## 6849 poisonous      flat      smooth       red      no
## 6850    edible      bell      smooth     brown      no
## 6851 poisonous    convex      smooth     brown      no
## 6852 poisonous      flat       scaly       red      no
## 6853 poisonous      flat       scaly     brown      no
## 6854 poisonous      flat      smooth       red      no
## 6855 poisonous      flat       scaly     brown      no
## 6856 poisonous   knobbed       scaly     brown      no
## 6857 poisonous    convex      smooth       red      no
## 6858 poisonous      flat      smooth       red      no
## 6859 poisonous   knobbed       scaly     brown      no
## 6860 poisonous      flat      smooth       red      no
## 6861    edible   knobbed      smooth     white      no
## 6862 poisonous      flat       scaly     brown      no
## 6863 poisonous      flat       scaly     brown      no
## 6864 poisonous      flat       scaly     brown      no
## 6865 poisonous      flat      smooth     brown      no
## 6866 poisonous      flat      smooth     brown      no
## 6867 poisonous      flat       scaly       red      no
## 6868 poisonous    convex      smooth       red      no
## 6869 poisonous      flat       scaly     brown      no
## 6870 poisonous    convex      smooth     brown      no
## 6871 poisonous    convex      smooth       red      no
## 6872 poisonous    convex      smooth       red      no
## 6873 poisonous      flat       scaly       red      no
## 6874 poisonous    convex      smooth     brown      no
## 6875 poisonous    convex      smooth       red      no
## 6876 poisonous      flat      smooth     brown      no
## 6877 poisonous    convex      smooth     brown      no
## 6878 poisonous      flat       scaly       red      no
## 6879 poisonous    convex      smooth     brown      no
## 6880 poisonous      flat       scaly       red      no
## 6881 poisonous      flat      smooth       red      no
## 6882 poisonous      flat       scaly     brown      no
## 6883 poisonous      flat       scaly     brown      no
## 6884 poisonous    convex       scaly       red      no
## 6885    edible   knobbed     fibrous      gray      no
## 6886 poisonous    convex      smooth       red      no
## 6887 poisonous   knobbed       scaly     brown      no
## 6888 poisonous   knobbed       scaly     brown      no
## 6889 poisonous    convex       scaly       red      no
## 6890 poisonous      flat      smooth       red      no
## 6891 poisonous      flat      smooth     brown      no
## 6892 poisonous      flat      smooth       red      no
## 6893 poisonous    convex      smooth       red      no
## 6894 poisonous      flat      smooth     brown      no
## 6895 poisonous      flat       scaly       red      no
## 6896 poisonous    convex      smooth     brown      no
## 6897 poisonous    convex       scaly       red      no
## 6898 poisonous      flat      smooth       red      no
## 6899 poisonous    convex      smooth     brown      no
## 6900 poisonous      flat      smooth     brown      no
## 6901    edible    convex      smooth     brown      no
## 6902 poisonous   knobbed      smooth     brown      no
## 6903 poisonous      flat      smooth     brown      no
## 6904 poisonous   knobbed       scaly       red      no
## 6905    edible    convex       scaly  cinnamon     yes
## 6906    edible      bell      smooth     brown      no
## 6907    edible   knobbed      smooth      gray      no
## 6908    edible    convex     fibrous      gray      no
## 6909 poisonous    convex      smooth     brown      no
## 6910 poisonous   knobbed       scaly       red      no
## 6911    edible    convex      smooth     brown      no
## 6912 poisonous   knobbed      smooth       red      no
## 6913 poisonous      bell       scaly    yellow      no
## 6914 poisonous    convex      smooth       red      no
## 6915    edible      bell      smooth      gray      no
## 6916 poisonous   knobbed       scaly       red      no
## 6917 poisonous   knobbed      smooth       red      no
## 6918 poisonous      flat      smooth       red      no
## 6919 poisonous      flat       scaly     brown      no
## 6920 poisonous      flat      smooth       red      no
## 6921    edible   knobbed     fibrous      gray      no
## 6922 poisonous   knobbed      smooth     brown      no
## 6923 poisonous   knobbed      smooth       red      no
## 6924 poisonous      flat      smooth       red      no
## 6925    edible      bell     fibrous      gray      no
## 6926 poisonous      flat       scaly     brown      no
## 6927 poisonous      flat      smooth     brown      no
## 6928    edible      flat      smooth     brown      no
## 6929    edible    convex       scaly      pink     yes
## 6930 poisonous      flat      smooth     brown      no
## 6931 poisonous   knobbed       scaly       red      no
## 6932 poisonous      flat      smooth     brown      no
## 6933    edible      bell      smooth     white      no
## 6934 poisonous    convex       scaly       red      no
## 6935 poisonous      flat       scaly       red      no
## 6936 poisonous      flat      smooth       red      no
## 6937 poisonous   knobbed       scaly     brown      no
## 6938    edible    convex     fibrous     white      no
## 6939    edible      bell      smooth     white      no
## 6940 poisonous   knobbed      smooth       red      no
## 6941 poisonous      flat       scaly     brown      no
## 6942    edible      flat       scaly     brown     yes
## 6943 poisonous   knobbed      smooth     brown      no
## 6944 poisonous   knobbed      smooth     brown      no
## 6945 poisonous      flat       scaly     brown      no
## 6946 poisonous      flat       scaly       red      no
## 6947 poisonous    convex      smooth       red      no
## 6948 poisonous   knobbed       scaly       red      no
## 6949 poisonous    convex      smooth     brown      no
## 6950 poisonous   knobbed      smooth       red      no
## 6951 poisonous   knobbed       scaly     brown      no
## 6952 poisonous      flat       scaly       red      no
## 6953    edible    convex     fibrous     white      no
## 6954 poisonous   knobbed      smooth     brown      no
## 6955 poisonous      flat      smooth     brown      no
## 6956 poisonous   knobbed      smooth       red      no
## 6957 poisonous   knobbed      smooth       red      no
## 6958 poisonous   knobbed       scaly     brown      no
## 6959    edible   knobbed     fibrous     white      no
## 6960 poisonous   knobbed      smooth     brown      no
## 6961 poisonous   knobbed       scaly     brown      no
## 6962 poisonous   knobbed      smooth     brown      no
## 6963 poisonous   knobbed      smooth       red      no
## 6964 poisonous    convex      smooth     brown      no
## 6965 poisonous    convex       scaly       red      no
## 6966 poisonous      flat      smooth       red      no
## 6967 poisonous   knobbed       scaly     brown      no
## 6968    edible      bell      smooth     brown      no
## 6969 poisonous      flat      smooth     brown      no
## 6970 poisonous   knobbed       scaly       red      no
## 6971    edible    convex      smooth     brown      no
## 6972 poisonous      flat      smooth     brown      no
## 6973 poisonous   knobbed      smooth     brown      no
## 6974 poisonous      flat       scaly     brown      no
## 6975 poisonous    convex      smooth     brown      no
## 6976    edible   knobbed     fibrous     white      no
## 6977 poisonous      flat       scaly       red      no
## 6978 poisonous    convex      smooth       red      no
## 6979 poisonous    convex      smooth     brown      no
## 6980 poisonous      flat      smooth     brown      no
## 6981 poisonous   knobbed      smooth     brown      no
## 6982 poisonous   knobbed      smooth       red      no
## 6983 poisonous   knobbed      smooth       red      no
## 6984 poisonous    convex      smooth       red      no
## 6985    edible      bell      smooth     brown      no
## 6986 poisonous   knobbed      smooth       red      no
## 6987 poisonous    convex      smooth     brown      no
## 6988 poisonous    convex       scaly       red      no
## 6989 poisonous      flat      smooth       red      no
## 6990    edible      bell      smooth     brown      no
## 6991    edible   knobbed      smooth      gray      no
## 6992 poisonous   knobbed       scaly       red      no
## 6993 poisonous   knobbed       scaly       red      no
## 6994 poisonous      flat      smooth       red      no
## 6995    edible   knobbed      smooth     brown      no
## 6996 poisonous      flat       scaly       red      no
## 6997 poisonous   knobbed       scaly       red      no
## 6998    edible   knobbed     fibrous     white      no
## 6999    edible    convex      smooth      gray      no
## 7000    edible   knobbed      smooth     brown      no
print(df_new_fungus[7001:8000, ])
##            eat cap_shape cap_surface cap_color bruises
## 7001 poisonous   knobbed       scaly       red      no
## 7002 poisonous   knobbed       scaly     brown      no
## 7003 poisonous   knobbed      smooth       red      no
## 7004    edible    convex      smooth     white      no
## 7005    edible   knobbed      smooth     white      no
## 7006    edible   knobbed      smooth     white      no
## 7007 poisonous   knobbed      smooth       red      no
## 7008 poisonous    convex      smooth       red      no
## 7009    edible   knobbed      smooth      gray      no
## 7010    edible    convex     fibrous     white      no
## 7011 poisonous   knobbed       scaly       red      no
## 7012    edible      bell      smooth     white      no
## 7013 poisonous   knobbed      smooth       red      no
## 7014 poisonous      flat      smooth     brown      no
## 7015 poisonous      flat       scaly     brown      no
## 7016    edible   knobbed      smooth      gray      no
## 7017    edible    convex      smooth     white      no
## 7018 poisonous      flat       scaly       red      no
## 7019 poisonous    convex      smooth       red      no
## 7020    edible    convex     fibrous     white      no
## 7021    edible   knobbed     fibrous     white      no
## 7022 poisonous      flat      smooth       red      no
## 7023    edible      flat      smooth      gray     yes
## 7024 poisonous   knobbed      smooth       red      no
## 7025 poisonous    convex      smooth     brown      no
## 7026    edible   knobbed      smooth     brown      no
## 7027    edible    convex      smooth     brown      no
## 7028 poisonous   knobbed       scaly       red      no
## 7029 poisonous    convex      smooth       red      no
## 7030 poisonous    convex      smooth     brown      no
## 7031 poisonous   knobbed      smooth       red      no
## 7032 poisonous    convex      smooth     brown      no
## 7033    edible   knobbed     fibrous     white      no
## 7034    edible   knobbed      smooth     brown      no
## 7035 poisonous   knobbed       scaly  cinnamon      no
## 7036    edible    convex     fibrous      gray      no
## 7037    edible    convex      smooth     brown      no
## 7038    edible    convex      smooth     brown      no
## 7039 poisonous   knobbed       scaly       red      no
## 7040    edible   knobbed     fibrous     white      no
## 7041    edible    convex     fibrous      gray      no
## 7042    edible      flat      smooth     brown      no
## 7043 poisonous   knobbed       scaly     brown      no
## 7044 poisonous   knobbed       scaly     brown      no
## 7045 poisonous      flat       scaly     brown      no
## 7046 poisonous      flat       scaly       red      no
## 7047    edible   knobbed     fibrous      gray      no
## 7048 poisonous      flat       scaly       red      no
## 7049 poisonous      flat       scaly     brown      no
## 7050 poisonous   knobbed      smooth       red      no
## 7051    edible   knobbed      smooth      gray      no
## 7052    edible      bell      smooth     brown      no
## 7053 poisonous   knobbed       scaly     brown      no
## 7054 poisonous    convex      smooth     brown      no
## 7055    edible      bell      smooth     brown      no
## 7056 poisonous   knobbed      smooth     brown      no
## 7057 poisonous   knobbed      smooth     brown      no
## 7058 poisonous   knobbed      smooth       red      no
## 7059 poisonous      flat      smooth       red      no
## 7060 poisonous    convex      smooth       red      no
## 7061 poisonous    convex      smooth       red      no
## 7062 poisonous    convex      smooth     brown      no
## 7063 poisonous   knobbed       scaly     brown      no
## 7064    edible    convex      smooth      pink     yes
## 7065 poisonous      flat      smooth       red      no
## 7066 poisonous    convex       scaly     brown      no
## 7067 poisonous   knobbed      smooth     brown      no
## 7068    edible   knobbed      smooth      gray      no
## 7069 poisonous   knobbed      smooth     brown      no
## 7070 poisonous      flat       scaly     brown      no
## 7071 poisonous   knobbed      smooth     brown      no
## 7072 poisonous   knobbed       scaly       red      no
## 7073 poisonous      flat       scaly       red      no
## 7074    edible      flat      smooth  cinnamon     yes
## 7075 poisonous      flat       scaly     brown      no
## 7076 poisonous   knobbed      smooth       red      no
## 7077 poisonous    convex      smooth       red      no
## 7078 poisonous      flat       scaly       red      no
## 7079 poisonous    convex      smooth     brown      no
## 7080    edible      flat      smooth     brown      no
## 7081 poisonous      flat      smooth       red      no
## 7082 poisonous    convex       scaly       red      no
## 7083 poisonous    convex       scaly       red      no
## 7084 poisonous    convex      smooth       red      no
## 7085 poisonous   knobbed      smooth       red      no
## 7086 poisonous    convex      smooth       red      no
## 7087    edible      bell     fibrous      gray      no
## 7088 poisonous   knobbed       scaly       red      no
## 7089 poisonous   knobbed      smooth       red      no
## 7090    edible   knobbed     fibrous      gray      no
## 7091    edible      flat      smooth     brown      no
## 7092 poisonous      flat       scaly     brown      no
## 7093 poisonous   knobbed      smooth       red      no
## 7094 poisonous      flat      smooth     brown      no
## 7095 poisonous   knobbed       scaly     brown      no
## 7096 poisonous   knobbed      smooth       red      no
## 7097 poisonous   knobbed       scaly     brown      no
## 7098 poisonous   knobbed       scaly     brown      no
## 7099    edible    convex     fibrous      gray      no
## 7100 poisonous   knobbed       scaly       red      no
## 7101 poisonous    convex       scaly  cinnamon      no
## 7102 poisonous   knobbed       scaly       red      no
## 7103 poisonous   knobbed       scaly       red      no
## 7104    edible      bell      smooth     white      no
## 7105 poisonous   knobbed      smooth     brown      no
## 7106 poisonous    convex      smooth       red      no
## 7107 poisonous      flat       scaly     brown      no
## 7108 poisonous      flat      smooth       red      no
## 7109 poisonous   knobbed       scaly       red      no
## 7110 poisonous   knobbed       scaly       red      no
## 7111    edible      bell     fibrous     white      no
## 7112 poisonous   knobbed       scaly     brown      no
## 7113 poisonous      flat       scaly       red      no
## 7114 poisonous   knobbed      smooth     brown      no
## 7115 poisonous   knobbed       scaly     brown      no
## 7116 poisonous    convex      smooth       red      no
## 7117    edible    convex       scaly      gray     yes
## 7118 poisonous      flat      smooth     brown      no
## 7119 poisonous   knobbed       scaly       red      no
## 7120    edible   knobbed     fibrous     white      no
## 7121 poisonous    convex      smooth     brown      no
## 7122 poisonous   knobbed       scaly     brown      no
## 7123 poisonous    convex      smooth       red      no
## 7124    edible   knobbed      smooth     white      no
## 7125 poisonous      flat       scaly     brown      no
## 7126 poisonous   knobbed      smooth       red      no
## 7127 poisonous   knobbed      smooth       red      no
## 7128 poisonous      flat       scaly       red      no
## 7129    edible      flat      smooth     brown      no
## 7130 poisonous      flat       scaly     brown      no
## 7131 poisonous   knobbed       scaly       red      no
## 7132 poisonous   knobbed      smooth       red      no
## 7133 poisonous   knobbed      smooth       red      no
## 7134    edible      bell      smooth     brown      no
## 7135    edible   knobbed      smooth      gray      no
## 7136    edible    convex      smooth     brown      no
## 7137    edible    convex     fibrous      gray      no
## 7138 poisonous   knobbed      smooth       red      no
## 7139 poisonous      flat       scaly       red      no
## 7140 poisonous   knobbed      smooth     brown      no
## 7141 poisonous   knobbed      smooth     brown      no
## 7142    edible      bell      smooth     white      no
## 7143 poisonous      flat      smooth     brown      no
## 7144    edible      bell     fibrous      gray      no
## 7145 poisonous    convex      smooth     brown      no
## 7146 poisonous    convex       scaly       red      no
## 7147 poisonous      flat       scaly  cinnamon      no
## 7148 poisonous      flat      smooth     brown      no
## 7149 poisonous    convex       scaly       red      no
## 7150 poisonous      flat      smooth     brown      no
## 7151 poisonous      flat       scaly       red      no
## 7152 poisonous      flat      smooth       red      no
## 7153 poisonous    convex      smooth       red      no
## 7154    edible   knobbed      smooth      gray      no
## 7155 poisonous    convex      smooth       red      no
## 7156 poisonous   knobbed      smooth     brown      no
## 7157 poisonous   knobbed       scaly       red      no
## 7158 poisonous    convex      smooth     brown      no
## 7159    edible      bell      smooth      gray      no
## 7160 poisonous    convex      smooth     brown      no
## 7161 poisonous      flat      smooth       red      no
## 7162 poisonous   knobbed      smooth     brown      no
## 7163    edible      bell      smooth      gray      no
## 7164 poisonous    convex      smooth     brown      no
## 7165 poisonous      flat       scaly       red      no
## 7166 poisonous      flat      smooth       red      no
## 7167 poisonous      flat       scaly     brown      no
## 7168    edible      bell     fibrous      gray      no
## 7169 poisonous      flat      smooth       red      no
## 7170 poisonous   knobbed      smooth     brown      no
## 7171    edible   knobbed      smooth      gray      no
## 7172 poisonous   knobbed       scaly     brown      no
## 7173 poisonous    convex      smooth       red      no
## 7174    edible      bell      smooth     brown      no
## 7175 poisonous   knobbed       scaly     brown      no
## 7176 poisonous      flat       scaly     brown      no
## 7177    edible    convex      smooth     brown      no
## 7178 poisonous   knobbed      smooth     brown      no
## 7179 poisonous   knobbed      smooth     brown      no
## 7180 poisonous   knobbed      smooth     brown      no
## 7181 poisonous   knobbed      smooth     brown      no
## 7182    edible      flat       scaly  cinnamon     yes
## 7183    edible      flat      smooth     brown      no
## 7184    edible      bell      smooth     white      no
## 7185 poisonous   knobbed      smooth       red      no
## 7186    edible      bell      smooth      gray      no
## 7187 poisonous   knobbed       scaly       red      no
## 7188 poisonous   knobbed       scaly     brown      no
## 7189    edible    convex      smooth     brown      no
## 7190 poisonous    convex      smooth       red      no
## 7191 poisonous    convex      smooth     brown      no
## 7192 poisonous      flat      smooth       red      no
## 7193 poisonous      flat       scaly       red      no
## 7194 poisonous    convex       scaly       red      no
## 7195 poisonous   knobbed      smooth       red      no
## 7196    edible   knobbed       scaly     brown      no
## 7197 poisonous      flat      smooth       red      no
## 7198 poisonous   knobbed      smooth     brown      no
## 7199 poisonous      flat       scaly     brown      no
## 7200 poisonous      flat      smooth       red      no
## 7201    edible   knobbed     fibrous      gray      no
## 7202 poisonous   knobbed      smooth     brown      no
## 7203    edible      bell     fibrous     white      no
## 7204 poisonous   knobbed      smooth       red      no
## 7205    edible    convex      smooth      gray      no
## 7206    edible   knobbed      smooth     brown      no
## 7207 poisonous   knobbed      smooth       red      no
## 7208 poisonous   knobbed       scaly     brown      no
## 7209    edible   knobbed     fibrous      gray      no
## 7210 poisonous    convex      smooth     brown      no
## 7211 poisonous   knobbed       scaly     brown      no
## 7212    edible    convex     fibrous     white      no
## 7213 poisonous   knobbed       scaly       red      no
## 7214 poisonous   knobbed      smooth       red      no
## 7215 poisonous   knobbed      smooth       red      no
## 7216 poisonous   knobbed       scaly       red      no
## 7217 poisonous   knobbed       scaly     brown      no
## 7218    edible   knobbed      smooth      gray      no
## 7219 poisonous   knobbed       scaly     brown      no
## 7220 poisonous   knobbed      smooth       red      no
## 7221    edible    convex      smooth      gray      no
## 7222    edible      flat      smooth     brown      no
## 7223    edible   knobbed      smooth      gray      no
## 7224 poisonous    convex      smooth       red      no
## 7225 poisonous   knobbed      smooth     brown      no
## 7226 poisonous   knobbed      smooth     brown      no
## 7227    edible    convex      smooth      gray      no
## 7228 poisonous   knobbed       scaly       red      no
## 7229    edible      flat      smooth     brown      no
## 7230    edible   knobbed      smooth     white      no
## 7231 poisonous      flat       scaly       red      no
## 7232    edible      bell      smooth      gray      no
## 7233 poisonous      flat       scaly     brown      no
## 7234    edible      bell      smooth     brown      no
## 7235    edible      bell      smooth      gray      no
## 7236    edible   knobbed      smooth     brown      no
## 7237    edible      bell      smooth      gray      no
## 7238 poisonous   knobbed      smooth     brown      no
## 7239 poisonous   knobbed       scaly     brown      no
## 7240    edible      flat      smooth     brown      no
## 7241 poisonous   knobbed      smooth       red      no
## 7242 poisonous      flat      smooth       red      no
## 7243 poisonous   knobbed      smooth     brown      no
## 7244 poisonous   knobbed      smooth     brown      no
## 7245    edible      bell      smooth     brown      no
## 7246    edible   knobbed     fibrous      gray      no
## 7247    edible      bell      smooth     brown      no
## 7248 poisonous   knobbed      smooth     brown      no
## 7249 poisonous   knobbed       scaly       red      no
## 7250 poisonous   knobbed       scaly       red      no
## 7251 poisonous   knobbed      smooth     brown      no
## 7252    edible      flat      smooth     brown      no
## 7253 poisonous   knobbed      smooth       red      no
## 7254    edible    convex      smooth     brown      no
## 7255 poisonous   knobbed      smooth     brown      no
## 7256    edible   knobbed      smooth     white      no
## 7257 poisonous   knobbed       scaly       red      no
## 7258 poisonous   knobbed       scaly     brown      no
## 7259    edible   knobbed     fibrous      gray      no
## 7260 poisonous      flat      smooth     brown      no
## 7261    edible    convex      smooth      gray      no
## 7262 poisonous   knobbed       scaly     brown      no
## 7263 poisonous      flat      smooth       red      no
## 7264    edible    convex     fibrous     white      no
## 7265 poisonous   knobbed       scaly     brown      no
## 7266 poisonous      flat       scaly     brown      no
## 7267    edible      bell     fibrous      gray      no
## 7268 poisonous   knobbed       scaly       red      no
## 7269 poisonous    convex       scaly       red      no
## 7270 poisonous   knobbed      smooth       red      no
## 7271    edible   knobbed     fibrous      gray      no
## 7272    edible   knobbed     fibrous     white      no
## 7273 poisonous   knobbed       scaly       red      no
## 7274    edible   knobbed      smooth      gray      no
## 7275 poisonous   knobbed      smooth     brown      no
## 7276 poisonous   knobbed       scaly     brown      no
## 7277    edible   knobbed      smooth     white      no
## 7278 poisonous   knobbed       scaly       red      no
## 7279    edible      bell      smooth     white      no
## 7280 poisonous   knobbed      smooth     brown      no
## 7281    edible    convex      smooth     white      no
## 7282    edible      bell      smooth     brown      no
## 7283 poisonous   knobbed      smooth     brown      no
## 7284 poisonous   knobbed       scaly       red      no
## 7285    edible    convex     fibrous     white      no
## 7286 poisonous    convex       scaly       red      no
## 7287 poisonous   knobbed      smooth       red      no
## 7288 poisonous   knobbed      smooth     brown      no
## 7289 poisonous   knobbed       scaly     brown      no
## 7290 poisonous   knobbed      smooth       red      no
## 7291    edible   knobbed      smooth     brown      no
## 7292 poisonous   knobbed       scaly     brown      no
## 7293    edible      flat       scaly     brown      no
## 7294    edible   knobbed      smooth      gray      no
## 7295 poisonous      flat       scaly       red      no
## 7296 poisonous   knobbed       scaly    yellow      no
## 7297 poisonous   knobbed       scaly       red      no
## 7298 poisonous   knobbed      smooth       red      no
## 7299 poisonous   knobbed       scaly       red      no
## 7300    edible      bell      smooth     brown      no
## 7301    edible    convex      smooth      gray     yes
## 7302    edible   knobbed      smooth      gray      no
## 7303 poisonous      flat       scaly       red      no
## 7304 poisonous   knobbed      smooth       red      no
## 7305 poisonous   knobbed       scaly       red      no
## 7306    edible      bell     fibrous     white      no
## 7307    edible      flat      smooth     brown      no
## 7308 poisonous   knobbed      smooth     brown      no
## 7309 poisonous   knobbed      smooth       red      no
## 7310    edible    convex     fibrous     white      no
## 7311 poisonous   knobbed       scaly       red      no
## 7312    edible    convex     fibrous     white      no
## 7313 poisonous   knobbed       scaly       red      no
## 7314 poisonous   knobbed       scaly     brown      no
## 7315    edible    convex      smooth      gray      no
## 7316    edible    convex      smooth     white      no
## 7317 poisonous   knobbed       scaly     brown      no
## 7318 poisonous   knobbed      smooth     brown      no
## 7319 poisonous   knobbed      smooth       red      no
## 7320    edible      bell     fibrous     white      no
## 7321 poisonous      flat      smooth     brown      no
## 7322 poisonous   knobbed      smooth       red      no
## 7323 poisonous   knobbed      smooth     brown      no
## 7324 poisonous    convex       scaly     brown      no
## 7325 poisonous   knobbed       scaly     brown      no
## 7326    edible      flat      smooth     brown      no
## 7327 poisonous    convex       scaly       red      no
## 7328    edible      flat      smooth     brown      no
## 7329    edible      bell      smooth     white      no
## 7330    edible      bell      smooth      gray      no
## 7331 poisonous   knobbed       scaly       red      no
## 7332 poisonous   knobbed      smooth     brown      no
## 7333 poisonous   knobbed      smooth       red      no
## 7334 poisonous   knobbed      smooth       red      no
## 7335    edible      bell     fibrous     white      no
## 7336    edible   knobbed      smooth      gray      no
## 7337 poisonous      flat       scaly       red      no
## 7338 poisonous   knobbed       scaly     brown      no
## 7339 poisonous   knobbed       scaly     brown      no
## 7340 poisonous      flat      smooth       red      no
## 7341 poisonous    convex      smooth     brown      no
## 7342 poisonous   knobbed       scaly     brown      no
## 7343 poisonous   knobbed       scaly  cinnamon      no
## 7344 poisonous   knobbed       scaly     brown      no
## 7345    edible   knobbed      smooth     white      no
## 7346 poisonous      flat       scaly     brown      no
## 7347    edible      bell     fibrous      gray      no
## 7348 poisonous      flat      smooth       red      no
## 7349 poisonous   knobbed      smooth       red      no
## 7350    edible   knobbed      smooth      gray      no
## 7351    edible    convex      smooth      gray      no
## 7352 poisonous   knobbed      smooth       red      no
## 7353    edible   knobbed      smooth     brown      no
## 7354    edible      flat       scaly      pink     yes
## 7355    edible      bell      smooth     white      no
## 7356 poisonous      flat       scaly     brown      no
## 7357 poisonous      flat      smooth       red      no
## 7358 poisonous   knobbed      smooth       red      no
## 7359    edible   knobbed     fibrous      gray      no
## 7360    edible    convex     fibrous     white      no
## 7361    edible    convex      smooth  cinnamon     yes
## 7362    edible   knobbed     fibrous      gray      no
## 7363 poisonous   knobbed      smooth       red      no
## 7364 poisonous   knobbed       scaly       red      no
## 7365 poisonous   knobbed      smooth     brown      no
## 7366 poisonous    convex       scaly       red      no
## 7367    edible   knobbed      smooth     brown      no
## 7368 poisonous      flat       scaly    yellow      no
## 7369 poisonous    convex       scaly  cinnamon      no
## 7370 poisonous    convex      smooth     brown      no
## 7371    edible    convex       scaly      pink     yes
## 7372 poisonous   knobbed       scaly     brown      no
## 7373    edible   knobbed      smooth      gray      no
## 7374    edible      bell      smooth      gray      no
## 7375 poisonous   knobbed      smooth       red      no
## 7376    edible    convex      smooth     brown      no
## 7377    edible      bell      smooth     brown      no
## 7378    edible      flat      smooth     brown     yes
## 7379    edible   knobbed      smooth      gray      no
## 7380 poisonous      flat      smooth     brown      no
## 7381 poisonous   knobbed      smooth     brown      no
## 7382 poisonous      flat       scaly     brown      no
## 7383 poisonous   knobbed       scaly       red      no
## 7384 poisonous   knobbed      smooth     brown      no
## 7385 poisonous   knobbed      smooth       red      no
## 7386    edible      bell      smooth     white      no
## 7387 poisonous   knobbed       scaly     brown      no
## 7388 poisonous   knobbed       scaly       red      no
## 7389    edible   knobbed      smooth     brown      no
## 7390 poisonous   knobbed      smooth       red      no
## 7391    edible      bell      smooth     white      no
## 7392    edible    convex      smooth      gray      no
## 7393 poisonous   knobbed      smooth     brown      no
## 7394 poisonous   knobbed       scaly     brown      no
## 7395 poisonous   knobbed      smooth     brown      no
## 7396 poisonous   knobbed       scaly       red      no
## 7397 poisonous   knobbed      smooth       red      no
## 7398 poisonous   knobbed       scaly     brown      no
## 7399    edible      bell      smooth      gray      no
## 7400 poisonous   knobbed       scaly       red      no
## 7401    edible      bell     fibrous     white      no
## 7402 poisonous   conical       scaly    yellow      no
## 7403 poisonous    convex      smooth     brown      no
## 7404 poisonous   knobbed       scaly       red      no
## 7405    edible    convex      smooth      gray      no
## 7406    edible      bell      smooth     brown      no
## 7407 poisonous   knobbed       scaly       red      no
## 7408    edible      bell      smooth     brown      no
## 7409 poisonous   knobbed       scaly       red      no
## 7410 poisonous   knobbed       scaly       red      no
## 7411 poisonous   knobbed      smooth       red      no
## 7412    edible      bell      smooth      gray      no
## 7413    edible   knobbed      smooth     brown      no
## 7414    edible      bell      smooth     brown      no
## 7415 poisonous    convex      smooth     brown      no
## 7416    edible    convex      smooth      gray     yes
## 7417    edible    convex     fibrous      gray      no
## 7418 poisonous   knobbed      smooth     brown      no
## 7419    edible   knobbed     fibrous      gray      no
## 7420 poisonous   knobbed      smooth     brown      no
## 7421 poisonous   knobbed       scaly       red      no
## 7422 poisonous   knobbed       scaly     brown      no
## 7423    edible      flat      smooth      pink     yes
## 7424 poisonous   knobbed       scaly     brown      no
## 7425 poisonous   knobbed       scaly       red      no
## 7426    edible      flat      smooth     brown      no
## 7427 poisonous   knobbed       scaly       red      no
## 7428 poisonous   knobbed       scaly     brown      no
## 7429 poisonous   knobbed       scaly     brown      no
## 7430 poisonous      flat       scaly     brown      no
## 7431 poisonous   knobbed      smooth       red      no
## 7432 poisonous   knobbed       scaly       red      no
## 7433    edible    convex      smooth     brown      no
## 7434 poisonous      flat      smooth       red      no
## 7435    edible   knobbed      smooth      gray      no
## 7436 poisonous   knobbed      smooth       red      no
## 7437 poisonous   knobbed      smooth       red      no
## 7438    edible      flat      smooth     brown      no
## 7439 poisonous   knobbed      smooth     brown      no
## 7440    edible    convex     fibrous      gray      no
## 7441    edible   knobbed      smooth     brown      no
## 7442 poisonous      flat      smooth       red      no
## 7443 poisonous   knobbed      smooth     brown      no
## 7444    edible      flat       scaly     brown     yes
## 7445    edible    convex     fibrous      gray      no
## 7446    edible   knobbed      smooth     white      no
## 7447    edible      bell      smooth     brown      no
## 7448 poisonous   knobbed       scaly       red      no
## 7449 poisonous   knobbed       scaly       red      no
## 7450    edible   knobbed       scaly     brown      no
## 7451    edible    convex     fibrous      gray      no
## 7452 poisonous   knobbed      smooth     brown      no
## 7453 poisonous   knobbed       scaly       red      no
## 7454 poisonous   knobbed       scaly     brown      no
## 7455 poisonous      flat       scaly     brown      no
## 7456    edible      flat      smooth     brown      no
## 7457 poisonous      flat       scaly       red      no
## 7458 poisonous   knobbed      smooth     brown      no
## 7459 poisonous   knobbed      smooth     brown      no
## 7460    edible      bell      smooth     brown      no
## 7461    edible    convex     fibrous      gray      no
## 7462 poisonous   knobbed      smooth     brown      no
## 7463 poisonous   knobbed       scaly     brown      no
## 7464    edible    convex      smooth      gray      no
## 7465 poisonous   knobbed       scaly     brown      no
## 7466 poisonous   knobbed      smooth       red      no
## 7467 poisonous   knobbed       scaly       red      no
## 7468    edible      bell      smooth     brown      no
## 7469    edible      bell      smooth      gray      no
## 7470 poisonous    convex       scaly       red      no
## 7471 poisonous   knobbed      smooth     brown      no
## 7472 poisonous   knobbed       scaly       red      no
## 7473 poisonous   knobbed       scaly       red      no
## 7474 poisonous   knobbed      smooth     brown      no
## 7475 poisonous   knobbed       scaly       red      no
## 7476 poisonous   knobbed      smooth       red      no
## 7477 poisonous    convex      smooth       red      no
## 7478 poisonous   knobbed      smooth       red      no
## 7479 poisonous   knobbed      smooth     brown      no
## 7480    edible      bell     fibrous      gray      no
## 7481 poisonous   knobbed       scaly     brown      no
## 7482    edible      flat      smooth     brown     yes
## 7483 poisonous   knobbed      smooth     brown      no
## 7484 poisonous      flat       scaly    yellow      no
## 7485 poisonous   knobbed      smooth     brown      no
## 7486 poisonous      flat       scaly       red      no
## 7487    edible    convex     fibrous      gray      no
## 7488 poisonous   knobbed       scaly     brown      no
## 7489 poisonous   knobbed      smooth     brown      no
## 7490 poisonous      flat       scaly     brown      no
## 7491    edible      flat      smooth     brown      no
## 7492 poisonous   knobbed       scaly     brown      no
## 7493 poisonous      flat       scaly     brown      no
## 7494 poisonous   knobbed      smooth     brown      no
## 7495 poisonous      flat       scaly       red      no
## 7496 poisonous   knobbed      smooth     brown      no
## 7497 poisonous    convex       scaly       red      no
## 7498 poisonous   knobbed       scaly     brown      no
## 7499    edible    convex      smooth     white      no
## 7500    edible    convex      smooth      gray      no
## 7501    edible    convex     fibrous     white      no
## 7502 poisonous   knobbed      smooth     brown      no
## 7503 poisonous   knobbed      smooth       red      no
## 7504 poisonous   knobbed       scaly       red      no
## 7505 poisonous   knobbed      smooth       red      no
## 7506 poisonous   knobbed      smooth     brown      no
## 7507 poisonous   knobbed       scaly     brown      no
## 7508 poisonous   knobbed       scaly       red      no
## 7509 poisonous   knobbed      smooth     brown      no
## 7510 poisonous   knobbed      smooth       red      no
## 7511    edible      flat      smooth     brown      no
## 7512 poisonous      flat      smooth     brown      no
## 7513 poisonous   knobbed      smooth     brown      no
## 7514    edible    convex      smooth      gray      no
## 7515    edible    convex     fibrous     white      no
## 7516 poisonous   knobbed       scaly     brown      no
## 7517    edible    convex      smooth     brown      no
## 7518 poisonous   knobbed       scaly     brown      no
## 7519 poisonous   knobbed       scaly     brown      no
## 7520 poisonous   knobbed       scaly     brown      no
## 7521 poisonous   knobbed       scaly       red      no
## 7522 poisonous   knobbed      smooth     brown      no
## 7523    edible      bell      smooth     brown      no
## 7524    edible      flat      smooth     brown      no
## 7525    edible      bell      smooth     white      no
## 7526 poisonous   knobbed      smooth     brown      no
## 7527    edible    convex      smooth     brown      no
## 7528 poisonous   knobbed       scaly     brown      no
## 7529    edible      bell     fibrous      gray      no
## 7530    edible      bell      smooth      gray      no
## 7531 poisonous    convex      smooth     brown      no
## 7532    edible    convex      smooth     brown      no
## 7533    edible    convex      smooth     white      no
## 7534    edible    convex      smooth     brown      no
## 7535    edible   knobbed      smooth      gray      no
## 7536    edible    convex      smooth     white      no
## 7537 poisonous      flat       scaly  cinnamon      no
## 7538    edible    convex      smooth     brown      no
## 7539 poisonous   knobbed      smooth       red      no
## 7540 poisonous   knobbed       scaly       red      no
## 7541    edible    convex      smooth     white      no
## 7542    edible   knobbed     fibrous     white      no
## 7543    edible      bell     fibrous      gray      no
## 7544    edible   knobbed      smooth     brown      no
## 7545 poisonous   knobbed       scaly     brown      no
## 7546 poisonous      flat       scaly       red      no
## 7547 poisonous   knobbed      smooth       red      no
## 7548    edible   knobbed      smooth     brown      no
## 7549    edible      flat      smooth      pink     yes
## 7550 poisonous   knobbed       scaly     brown      no
## 7551    edible      bell      smooth     white      no
## 7552 poisonous   knobbed      smooth       red      no
## 7553    edible   knobbed      smooth     white      no
## 7554 poisonous   knobbed       scaly     brown      no
## 7555 poisonous   knobbed      smooth     brown      no
## 7556    edible      flat      smooth     brown      no
## 7557 poisonous   knobbed      smooth     brown      no
## 7558 poisonous   knobbed       scaly       red      no
## 7559    edible    convex      smooth     brown      no
## 7560    edible    convex     fibrous     white      no
## 7561    edible    convex     fibrous      gray      no
## 7562    edible    convex      smooth     brown      no
## 7563 poisonous   knobbed      smooth     brown      no
## 7564 poisonous   knobbed       scaly       red      no
## 7565    edible    convex      smooth     white      no
## 7566 poisonous   knobbed       scaly       red      no
## 7567    edible    convex     fibrous      gray      no
## 7568 poisonous   knobbed      smooth     brown      no
## 7569 poisonous      flat       scaly     brown      no
## 7570 poisonous   knobbed      smooth       red      no
## 7571    edible   knobbed      smooth     brown      no
## 7572 poisonous   knobbed      smooth       red      no
## 7573 poisonous   knobbed      smooth     brown      no
## 7574    edible      bell      smooth      gray      no
## 7575 poisonous   knobbed       scaly     brown      no
## 7576 poisonous   knobbed      smooth     brown      no
## 7577    edible   knobbed     fibrous      gray      no
## 7578 poisonous   knobbed       scaly     brown      no
## 7579 poisonous   knobbed      smooth       red      no
## 7580 poisonous   knobbed       scaly     brown      no
## 7581 poisonous   knobbed      smooth       red      no
## 7582    edible   knobbed     fibrous     white      no
## 7583 poisonous   knobbed       scaly       red      no
## 7584 poisonous   knobbed       scaly       red      no
## 7585    edible      bell     fibrous     white      no
## 7586    edible    convex      smooth      gray      no
## 7587    edible      bell      smooth      gray      no
## 7588 poisonous   knobbed       scaly       red      no
## 7589 poisonous   knobbed      smooth     brown      no
## 7590 poisonous   knobbed       scaly       red      no
## 7591    edible      bell      smooth     white      no
## 7592 poisonous      flat      smooth       red      no
## 7593 poisonous   knobbed      smooth     brown      no
## 7594    edible   knobbed      smooth     white      no
## 7595 poisonous   knobbed       scaly       red      no
## 7596 poisonous   knobbed      smooth       red      no
## 7597 poisonous   knobbed      smooth     brown      no
## 7598    edible    convex      smooth     brown     yes
## 7599 poisonous   knobbed      smooth     brown      no
## 7600 poisonous   knobbed       scaly       red      no
## 7601 poisonous      bell       scaly    yellow      no
## 7602 poisonous   knobbed       scaly       red      no
## 7603    edible    convex      smooth     brown     yes
## 7604 poisonous   knobbed      smooth       red      no
## 7605    edible   knobbed     fibrous      gray      no
## 7606 poisonous   knobbed      smooth       red      no
## 7607 poisonous   knobbed      smooth       red      no
## 7608 poisonous   knobbed      smooth     brown      no
## 7609 poisonous   knobbed       scaly     brown      no
## 7610    edible    convex     fibrous      gray      no
## 7611    edible      bell      smooth     white      no
## 7612 poisonous   knobbed       scaly       red      no
## 7613    edible      bell      smooth     brown      no
## 7614 poisonous   knobbed       scaly       red      no
## 7615 poisonous   knobbed      smooth       red      no
## 7616    edible      bell      smooth      gray      no
## 7617 poisonous   knobbed      smooth       red      no
## 7618    edible      bell      smooth     brown      no
## 7619 poisonous      flat      smooth     brown      no
## 7620 poisonous   knobbed      smooth       red      no
## 7621 poisonous   knobbed      smooth     brown      no
## 7622 poisonous   knobbed       scaly     brown      no
## 7623    edible      bell     fibrous      gray      no
## 7624    edible   knobbed      smooth     white      no
## 7625 poisonous   knobbed      smooth     brown      no
## 7626 poisonous      flat       scaly     brown      no
## 7627    edible    convex      smooth     white      no
## 7628    edible    convex      smooth     brown      no
## 7629 poisonous   knobbed      smooth     brown      no
## 7630 poisonous   knobbed       scaly     brown      no
## 7631    edible   knobbed      smooth     brown      no
## 7632    edible      bell     fibrous     white      no
## 7633    edible    convex      smooth     white      no
## 7634 poisonous      flat       scaly       red      no
## 7635 poisonous   knobbed       scaly       red      no
## 7636 poisonous    convex       scaly       red      no
## 7637    edible      flat      smooth     brown      no
## 7638 poisonous   knobbed      smooth     brown      no
## 7639 poisonous    convex      smooth     brown      no
## 7640 poisonous   knobbed       scaly       red      no
## 7641    edible      bell      smooth     white      no
## 7642    edible      bell      smooth      gray      no
## 7643    edible   knobbed     fibrous      gray      no
## 7644    edible   knobbed     fibrous      gray      no
## 7645    edible    convex     fibrous     white      no
## 7646 poisonous   knobbed       scaly       red      no
## 7647 poisonous      flat       scaly       red      no
## 7648 poisonous   knobbed       scaly       red      no
## 7649 poisonous      flat      smooth     brown      no
## 7650    edible      bell      smooth     white      no
## 7651    edible   knobbed      smooth     white      no
## 7652    edible      bell     fibrous     white      no
## 7653    edible      flat      smooth     brown      no
## 7654 poisonous   knobbed       scaly       red      no
## 7655 poisonous   knobbed      smooth     brown      no
## 7656 poisonous   knobbed      smooth     brown      no
## 7657 poisonous      flat       scaly     brown      no
## 7658 poisonous    convex      smooth       red      no
## 7659    edible      flat      smooth     brown      no
## 7660    edible   knobbed     fibrous     white      no
## 7661 poisonous   knobbed      smooth     brown      no
## 7662 poisonous    convex      smooth     brown      no
## 7663    edible      bell     fibrous      gray      no
## 7664 poisonous   knobbed       scaly     brown      no
## 7665    edible      bell      smooth     brown      no
## 7666    edible      flat      smooth     brown      no
## 7667 poisonous   knobbed       scaly       red      no
## 7668 poisonous   knobbed      smooth       red      no
## 7669 poisonous   knobbed       scaly     brown      no
## 7670 poisonous   knobbed       scaly       red      no
## 7671 poisonous   knobbed       scaly     brown      no
## 7672    edible    convex      smooth      gray      no
## 7673 poisonous   knobbed       scaly     brown      no
## 7674    edible      flat       scaly  cinnamon     yes
## 7675    edible      bell      smooth     brown      no
## 7676 poisonous   knobbed      smooth       red      no
## 7677 poisonous   knobbed      smooth     brown      no
## 7678 poisonous   knobbed       scaly     brown      no
## 7679    edible      bell     fibrous      gray      no
## 7680 poisonous   knobbed       scaly     brown      no
## 7681    edible      bell     fibrous     white      no
## 7682 poisonous   knobbed      smooth       red      no
## 7683    edible    convex      smooth     white      no
## 7684 poisonous   knobbed       scaly       red      no
## 7685 poisonous   knobbed       scaly       red      no
## 7686    edible    convex      smooth     white      no
## 7687 poisonous   knobbed       scaly       red      no
## 7688 poisonous   knobbed       scaly     brown      no
## 7689    edible   knobbed      smooth     brown      no
## 7690    edible   knobbed      smooth     brown      no
## 7691 poisonous   knobbed      smooth       red      no
## 7692 poisonous   knobbed      smooth       red      no
## 7693    edible   knobbed      smooth     brown      no
## 7694 poisonous   knobbed      smooth     brown      no
## 7695 poisonous   knobbed      smooth       red      no
## 7696 poisonous   knobbed       scaly       red      no
## 7697 poisonous   knobbed       scaly       red      no
## 7698 poisonous   knobbed       scaly       red      no
## 7699    edible   knobbed     fibrous     white      no
## 7700    edible      bell      smooth     brown      no
## 7701 poisonous   knobbed      smooth       red      no
## 7702    edible      flat      smooth     brown      no
## 7703    edible      flat       scaly     brown      no
## 7704 poisonous   knobbed       scaly       red      no
## 7705    edible      flat      smooth      gray     yes
## 7706    edible    convex      smooth      pink     yes
## 7707 poisonous   conical       scaly    yellow      no
## 7708 poisonous   knobbed      smooth       red      no
## 7709 poisonous   knobbed       scaly       red      no
## 7710 poisonous   knobbed       scaly       red      no
## 7711    edible      bell      smooth     brown      no
## 7712 poisonous   knobbed      smooth     brown      no
## 7713    edible    convex      smooth     white      no
## 7714 poisonous    convex      smooth       red      no
## 7715 poisonous    convex       scaly  cinnamon      no
## 7716 poisonous      flat      smooth     brown      no
## 7717    edible   knobbed      smooth     brown      no
## 7718    edible      bell       scaly     brown      no
## 7719 poisonous      flat      smooth     brown      no
## 7720 poisonous   knobbed      smooth     brown      no
## 7721    edible      bell      smooth      gray      no
## 7722    edible    convex       scaly     brown     yes
## 7723 poisonous      flat      smooth     brown      no
## 7724    edible   knobbed      smooth     brown      no
## 7725    edible      bell     fibrous     white      no
## 7726    edible    convex     fibrous     white      no
## 7727 poisonous   knobbed      smooth     brown      no
## 7728 poisonous    convex       scaly     brown      no
## 7729 poisonous   knobbed       scaly       red      no
## 7730    edible    convex      smooth     brown      no
## 7731 poisonous   knobbed      smooth       red      no
## 7732 poisonous    convex      smooth       red      no
## 7733 poisonous   knobbed      smooth     brown      no
## 7734 poisonous   knobbed       scaly       red      no
## 7735 poisonous   knobbed       scaly     brown      no
## 7736 poisonous   knobbed      smooth       red      no
## 7737    edible      bell     fibrous      gray      no
## 7738    edible   knobbed      smooth     brown      no
## 7739 poisonous   knobbed       scaly     brown      no
## 7740 poisonous   knobbed       scaly    yellow      no
## 7741    edible   knobbed      smooth     white      no
## 7742    edible    convex      smooth     brown      no
## 7743 poisonous   knobbed      smooth     brown      no
## 7744    edible   knobbed     fibrous      gray      no
## 7745    edible   knobbed     fibrous     white      no
## 7746    edible      flat      smooth     brown      no
## 7747    edible    convex      smooth     white      no
## 7748    edible      bell      smooth      gray      no
## 7749    edible    convex     fibrous     white      no
## 7750    edible   knobbed     fibrous     white      no
## 7751 poisonous   knobbed      smooth     brown      no
## 7752 poisonous   knobbed       scaly       red      no
## 7753    edible   knobbed     fibrous      gray      no
## 7754    edible    convex      smooth     white      no
## 7755 poisonous   knobbed      smooth     brown      no
## 7756 poisonous   knobbed       scaly     brown      no
## 7757 poisonous   knobbed       scaly     brown      no
## 7758 poisonous   knobbed      smooth       red      no
## 7759 poisonous   knobbed      smooth       red      no
## 7760    edible      bell      smooth     brown      no
## 7761 poisonous   knobbed      smooth       red      no
## 7762    edible    convex      smooth      gray      no
## 7763    edible    convex      smooth     brown      no
## 7764    edible      bell      smooth     white      no
## 7765 poisonous   knobbed      smooth       red      no
## 7766    edible    convex      smooth     brown      no
## 7767 poisonous   knobbed      smooth     brown      no
## 7768 poisonous   knobbed      smooth       red      no
## 7769 poisonous   knobbed       scaly       red      no
## 7770    edible      bell     fibrous     white      no
## 7771 poisonous   knobbed       scaly     brown      no
## 7772 poisonous   knobbed      smooth       red      no
## 7773    edible      bell      smooth      gray      no
## 7774 poisonous   knobbed      smooth     brown      no
## 7775 poisonous    convex      smooth     brown      no
## 7776 poisonous   knobbed       scaly       red      no
## 7777    edible    convex      smooth     white      no
## 7778    edible    convex      smooth     white      no
## 7779 poisonous   knobbed       scaly     brown      no
## 7780    edible   knobbed      smooth     brown      no
## 7781 poisonous   knobbed      smooth       red      no
## 7782 poisonous   knobbed       scaly       red      no
## 7783    edible      bell      smooth     brown      no
## 7784    edible      bell     fibrous      gray      no
## 7785 poisonous   knobbed      smooth       red      no
## 7786 poisonous   knobbed      smooth     brown      no
## 7787 poisonous      flat       scaly     brown      no
## 7788 poisonous      flat       scaly     brown      no
## 7789    edible      flat      smooth     brown      no
## 7790 poisonous   knobbed       scaly     brown      no
## 7791    edible   knobbed      smooth     white      no
## 7792    edible      bell      smooth     brown      no
## 7793 poisonous   knobbed       scaly     brown      no
## 7794 poisonous   knobbed      smooth     brown      no
## 7795 poisonous   knobbed      smooth       red      no
## 7796    edible   knobbed      smooth     white      no
## 7797 poisonous   knobbed       scaly       red      no
## 7798    edible    convex      smooth     white      no
## 7799 poisonous   knobbed       scaly       red      no
## 7800 poisonous   knobbed       scaly       red      no
## 7801 poisonous   knobbed       scaly     brown      no
## 7802 poisonous      flat       scaly  cinnamon      no
## 7803 poisonous    convex      smooth     brown      no
## 7804    edible   knobbed     fibrous      gray      no
## 7805 poisonous   knobbed      smooth       red      no
## 7806 poisonous    convex       scaly     brown      no
## 7807 poisonous      flat       scaly       red      no
## 7808    edible   knobbed      smooth     brown      no
## 7809 poisonous   knobbed      smooth     brown      no
## 7810    edible      bell     fibrous      gray      no
## 7811    edible      bell     fibrous     white      no
## 7812    edible    convex      smooth     brown      no
## 7813 poisonous   knobbed       scaly     brown      no
## 7814    edible      flat      smooth     brown      no
## 7815    edible    convex      smooth     white      no
## 7816 poisonous   knobbed      smooth       red      no
## 7817 poisonous   knobbed      smooth       red      no
## 7818    edible    convex      smooth      gray      no
## 7819    edible      bell      smooth      gray      no
## 7820 poisonous   knobbed       scaly     brown      no
## 7821 poisonous   knobbed       scaly       red      no
## 7822 poisonous   knobbed       scaly       red      no
## 7823 poisonous   knobbed       scaly     brown      no
## 7824    edible    convex     fibrous     white      no
## 7825 poisonous   knobbed       scaly       red      no
## 7826    edible      bell      smooth     brown      no
## 7827 poisonous   knobbed       scaly     brown      no
## 7828 poisonous   knobbed      smooth     brown      no
## 7829    edible      bell      smooth     brown      no
## 7830    edible      flat      smooth     brown      no
## 7831    edible   knobbed      smooth      gray      no
## 7832    edible      flat      smooth     brown      no
## 7833 poisonous   knobbed       scaly       red      no
## 7834    edible      bell      smooth     brown      no
## 7835    edible   knobbed      smooth     brown      no
## 7836 poisonous   knobbed       scaly       red      no
## 7837    edible      flat      smooth     brown      no
## 7838 poisonous   knobbed      smooth       red      no
## 7839    edible      bell     fibrous      gray      no
## 7840 poisonous   knobbed       scaly     brown      no
## 7841    edible      flat      smooth     brown      no
## 7842 poisonous   knobbed      smooth     brown      no
## 7843    edible    convex      smooth      gray      no
## 7844    edible    convex      smooth      gray      no
## 7845    edible   knobbed      smooth     brown      no
## 7846    edible    convex      smooth     brown      no
## 7847 poisonous   knobbed       scaly       red      no
## 7848    edible    convex     fibrous      gray      no
## 7849 poisonous   knobbed      smooth     brown      no
## 7850 poisonous   knobbed       scaly       red      no
## 7851 poisonous   knobbed       scaly     brown      no
## 7852 poisonous   knobbed      smooth       red      no
## 7853 poisonous   knobbed       scaly     brown      no
## 7854 poisonous   knobbed       scaly       red      no
## 7855    edible    convex      smooth     white      no
## 7856 poisonous   knobbed      smooth     brown      no
## 7857 poisonous   knobbed      smooth       red      no
## 7858 poisonous   knobbed      smooth       red      no
## 7859    edible    convex     fibrous      gray      no
## 7860    edible    convex      smooth     brown      no
## 7861    edible      bell      smooth     white      no
## 7862 poisonous   knobbed      smooth     brown      no
## 7863 poisonous   knobbed       scaly     brown      no
## 7864 poisonous   knobbed      smooth     brown      no
## 7865 poisonous    convex       scaly       red      no
## 7866 poisonous   knobbed       scaly       red      no
## 7867    edible    convex      smooth     brown      no
## 7868    edible    convex      smooth      gray      no
## 7869 poisonous   knobbed      smooth       red      no
## 7870 poisonous   knobbed       scaly       red      no
## 7871    edible   knobbed      smooth     white      no
## 7872    edible      bell      smooth     brown      no
## 7873    edible   knobbed      smooth     white      no
## 7874 poisonous   knobbed      smooth       red      no
## 7875 poisonous   knobbed       scaly     brown      no
## 7876 poisonous   knobbed      smooth       red      no
## 7877 poisonous   knobbed      smooth     brown      no
## 7878 poisonous    convex      smooth     brown      no
## 7879    edible   knobbed      smooth     brown      no
## 7880 poisonous   knobbed      smooth     brown      no
## 7881 poisonous   knobbed      smooth     brown      no
## 7882 poisonous   knobbed       scaly       red      no
## 7883    edible    convex     fibrous     white      no
## 7884 poisonous      flat      smooth       red      no
## 7885 poisonous   knobbed      smooth     brown      no
## 7886 poisonous   knobbed      smooth       red      no
## 7887    edible      flat      smooth     brown      no
## 7888    edible    convex       scaly     brown      no
## 7889 poisonous   knobbed       scaly     brown      no
## 7890 poisonous   knobbed      smooth       red      no
## 7891    edible      bell      smooth     white      no
## 7892 poisonous   knobbed       scaly     brown      no
## 7893 poisonous   knobbed      smooth     brown      no
## 7894    edible    convex      smooth     brown      no
## 7895    edible    convex      smooth      gray      no
## 7896    edible    convex      smooth      gray      no
## 7897 poisonous      flat       scaly     brown      no
## 7898 poisonous      flat       scaly     brown      no
## 7899    edible      flat       scaly      gray     yes
## 7900 poisonous   knobbed      smooth       red      no
## 7901    edible    convex     fibrous     white      no
## 7902 poisonous   knobbed       scaly     brown      no
## 7903 poisonous   knobbed      smooth     brown      no
## 7904 poisonous    convex      smooth       red      no
## 7905    edible    convex     fibrous      gray      no
## 7906    edible      flat      smooth     brown      no
## 7907 poisonous    convex       scaly       red      no
## 7908    edible      bell     fibrous     white      no
## 7909 poisonous   knobbed      smooth       red      no
## 7910    edible    convex     fibrous      gray      no
## 7911 poisonous      flat       scaly     brown      no
## 7912    edible    convex      smooth     brown      no
## 7913    edible      bell      smooth      gray      no
## 7914    edible      bell      smooth     brown      no
## 7915 poisonous   knobbed      smooth       red      no
## 7916    edible      flat      smooth     brown      no
## 7917    edible    convex     fibrous      gray      no
## 7918 poisonous   knobbed      smooth     brown      no
## 7919    edible    convex     fibrous     white      no
## 7920    edible      flat       scaly      pink     yes
## 7921 poisonous   knobbed       scaly       red      no
## 7922    edible   knobbed     fibrous      gray      no
## 7923    edible   knobbed      smooth     brown      no
## 7924 poisonous   knobbed      smooth     brown      no
## 7925 poisonous   knobbed      smooth     brown      no
## 7926 poisonous   knobbed      smooth       red      no
## 7927 poisonous   knobbed       scaly     brown      no
## 7928    edible   knobbed      smooth     brown      no
## 7929 poisonous   knobbed       scaly     brown      no
## 7930    edible   knobbed     fibrous     white      no
## 7931 poisonous   knobbed       scaly       red      no
## 7932    edible      flat      smooth     brown      no
## 7933 poisonous   knobbed      smooth       red      no
## 7934    edible    convex     fibrous      gray      no
## 7935 poisonous   knobbed       scaly       red      no
## 7936 poisonous   knobbed       scaly       red      no
## 7937 poisonous   knobbed      smooth     brown      no
## 7938    edible      bell      smooth     brown      no
## 7939    edible   knobbed      smooth     white      no
## 7940    edible      bell      smooth     brown      no
## 7941    edible      flat       scaly      gray     yes
## 7942 poisonous   knobbed       scaly       red      no
## 7943 poisonous    convex       scaly       red      no
## 7944 poisonous   knobbed       scaly     brown      no
## 7945    edible   knobbed      smooth     brown      no
## 7946    edible   knobbed      smooth     brown      no
## 7947    edible    convex       scaly  cinnamon     yes
## 7948 poisonous   knobbed      smooth       red      no
## 7949 poisonous   knobbed       scaly     brown      no
## 7950 poisonous   knobbed      smooth       red      no
## 7951 poisonous   knobbed       scaly     brown      no
## 7952 poisonous   knobbed       scaly       red      no
## 7953    edible      flat      smooth  cinnamon     yes
## 7954    edible    convex      smooth     brown      no
## 7955    edible      bell     fibrous     white      no
## 7956    edible   knobbed     fibrous      gray      no
## 7957    edible      flat      smooth     brown      no
## 7958    edible   knobbed      smooth     brown      no
## 7959    edible   knobbed     fibrous     white      no
## 7960 poisonous   knobbed       scaly       red      no
## 7961    edible      bell     fibrous     white      no
## 7962 poisonous   knobbed       scaly     brown      no
## 7963 poisonous   knobbed       scaly       red      no
## 7964 poisonous   knobbed       scaly     brown      no
## 7965    edible    convex      smooth     brown      no
## 7966    edible    convex       scaly     brown     yes
## 7967    edible      bell      smooth     white      no
## 7968 poisonous      flat       scaly     brown      no
## 7969 poisonous   knobbed      smooth     brown      no
## 7970 poisonous   knobbed      smooth       red      no
## 7971    edible    convex      smooth     brown      no
## 7972    edible    convex      smooth     brown      no
## 7973    edible      bell      smooth     white      no
## 7974 poisonous    convex       scaly       red      no
## 7975    edible      bell     fibrous     white      no
## 7976    edible      bell     fibrous     white      no
## 7977    edible      bell     fibrous     white      no
## 7978    edible   knobbed      smooth     brown      no
## 7979 poisonous   knobbed       scaly       red      no
## 7980    edible   knobbed      smooth     brown      no
## 7981 poisonous   knobbed      smooth       red      no
## 7982 poisonous   knobbed       scaly  cinnamon      no
## 7983 poisonous   knobbed      smooth     brown      no
## 7984    edible    convex      smooth      gray      no
## 7985    edible      flat      smooth     brown      no
## 7986    edible   knobbed      smooth     brown      no
## 7987    edible      bell       scaly     brown      no
## 7988 poisonous    convex      smooth     brown      no
## 7989    edible      bell      smooth     brown      no
## 7990 poisonous      flat      smooth     brown      no
## 7991 poisonous   knobbed       scaly     brown      no
## 7992    edible   knobbed      smooth      gray      no
## 7993 poisonous   knobbed       scaly     brown      no
## 7994    edible   knobbed     fibrous      gray      no
## 7995    edible    convex      smooth     brown      no
## 7996 poisonous   knobbed      smooth       red      no
## 7997    edible      flat      smooth     brown      no
## 7998 poisonous   knobbed      smooth     brown      no
## 7999 poisonous   knobbed       scaly     brown      no
## 8000    edible   knobbed      smooth     brown      no
print(df_new_fungus[8001:8124, ])
##            eat cap_shape cap_surface cap_color bruises
## 8001    edible      bell      smooth     brown      no
## 8002    edible    convex       scaly     brown      no
## 8003    edible    convex      smooth     white      no
## 8004    edible      flat      smooth     brown      no
## 8005 poisonous      flat      smooth     brown      no
## 8006 poisonous    convex       scaly       red      no
## 8007 poisonous   knobbed       scaly       red      no
## 8008 poisonous   knobbed      smooth       red      no
## 8009 poisonous   knobbed      smooth       red      no
## 8010    edible      bell      smooth     brown      no
## 8011    edible    convex      smooth     brown      no
## 8012    edible      flat      smooth     brown      no
## 8013 poisonous   knobbed      smooth     brown      no
## 8014    edible      bell      smooth     brown      no
## 8015    edible   knobbed      smooth      gray      no
## 8016    edible   knobbed     fibrous     white      no
## 8017 poisonous   knobbed      smooth       red      no
## 8018    edible      bell     fibrous     white      no
## 8019    edible    convex      smooth     white      no
## 8020    edible      bell     fibrous     white      no
## 8021 poisonous   knobbed       scaly     brown      no
## 8022 poisonous      flat      smooth     brown      no
## 8023 poisonous      flat       scaly       red      no
## 8024 poisonous   knobbed      smooth       red      no
## 8025 poisonous   knobbed       scaly     brown      no
## 8026    edible    convex      smooth     brown      no
## 8027    edible      flat      smooth     brown      no
## 8028 poisonous   knobbed       scaly     brown      no
## 8029 poisonous   knobbed      smooth     brown      no
## 8030    edible    convex     fibrous      gray      no
## 8031    edible   knobbed      smooth     white      no
## 8032 poisonous   knobbed       scaly       red      no
## 8033 poisonous    convex      smooth     brown      no
## 8034 poisonous   knobbed       scaly     brown      no
## 8035    edible   knobbed      smooth     brown      no
## 8036    edible      bell     fibrous     white      no
## 8037    edible   knobbed      smooth     brown      no
## 8038 poisonous   knobbed       scaly       red      no
## 8039    edible    convex       scaly      gray     yes
## 8040 poisonous   knobbed      smooth       red      no
## 8041    edible      bell      smooth     brown      no
## 8042 poisonous   knobbed       scaly       red      no
## 8043    edible    convex      smooth     brown      no
## 8044    edible      flat      smooth     brown      no
## 8045    edible      flat      smooth     brown      no
## 8046 poisonous   knobbed       scaly       red      no
## 8047    edible      bell     fibrous      gray      no
## 8048 poisonous   knobbed      smooth       red      no
## 8049 poisonous   knobbed      smooth     brown      no
## 8050 poisonous   knobbed       scaly     brown      no
## 8051 poisonous   knobbed      smooth     brown      no
## 8052    edible    convex     fibrous     white      no
## 8053    edible      flat      smooth     brown      no
## 8054 poisonous   knobbed       scaly     brown      no
## 8055    edible    convex      smooth     brown      no
## 8056    edible      bell     fibrous      gray      no
## 8057    edible      bell      smooth     brown      no
## 8058    edible    convex      smooth     brown      no
## 8059 poisonous   knobbed      smooth       red      no
## 8060 poisonous   knobbed      smooth     brown      no
## 8061 poisonous   knobbed      smooth     brown      no
## 8062 poisonous   knobbed      smooth     brown      no
## 8063 poisonous   knobbed       scaly     brown      no
## 8064    edible   knobbed     fibrous     white      no
## 8065 poisonous   knobbed       scaly       red      no
## 8066    edible   knobbed      smooth     brown      no
## 8067 poisonous   knobbed      smooth       red      no
## 8068    edible      bell      smooth     brown      no
## 8069    edible      flat      smooth     brown      no
## 8070    edible   knobbed      smooth     brown      no
## 8071 poisonous   knobbed       scaly       red      no
## 8072    edible   knobbed      smooth     brown      no
## 8073 poisonous   knobbed       scaly       red      no
## 8074    edible   knobbed      smooth     brown      no
## 8075    edible      bell     fibrous      gray      no
## 8076    edible      flat      smooth     brown      no
## 8077    edible      bell      smooth     brown      no
## 8078    edible      flat      smooth     brown      no
## 8079    edible      bell     fibrous      gray      no
## 8080 poisonous   knobbed       scaly       red      no
## 8081 poisonous   knobbed      smooth     brown      no
## 8082 poisonous   knobbed       scaly     brown      no
## 8083 poisonous   knobbed      smooth       red      no
## 8084 poisonous   knobbed       scaly     brown      no
## 8085    edible      bell     fibrous      gray      no
## 8086    edible   knobbed     fibrous     white      no
## 8087    edible   knobbed      smooth     brown      no
## 8088 poisonous    convex      smooth       red      no
## 8089    edible   knobbed      smooth     brown      no
## 8090 poisonous   knobbed       scaly       red      no
## 8091 poisonous   knobbed      smooth     brown      no
## 8092 poisonous   knobbed       scaly       red      no
## 8093 poisonous   knobbed       scaly       red      no
## 8094 poisonous    convex      smooth     brown      no
## 8095    edible      bell      smooth      gray      no
## 8096 poisonous    convex       scaly  cinnamon      no
## 8097    edible   knobbed     fibrous     white      no
## 8098 poisonous   knobbed       scaly     brown      no
## 8099 poisonous   knobbed      smooth       red      no
## 8100    edible   knobbed     fibrous     white      no
## 8101    edible      flat      smooth     brown      no
## 8102 poisonous   knobbed      smooth       red      no
## 8103    edible    convex      smooth     brown      no
## 8104    edible   knobbed      smooth     brown      no
## 8105    edible   knobbed      smooth     brown      no
## 8106    edible   knobbed      smooth     brown      no
## 8107    edible   knobbed      smooth     brown      no
## 8108    edible    convex      smooth     brown      no
## 8109 poisonous   knobbed       scaly       red      no
## 8110    edible      bell      smooth     white      no
## 8111    edible    convex      smooth     brown      no
## 8112    edible   knobbed      smooth     white      no
## 8113    edible   knobbed      smooth     brown      no
## 8114 poisonous   knobbed       scaly       red      no
## 8115 poisonous      flat       scaly  cinnamon      no
## 8116    edible    convex      smooth     brown      no
## 8117 poisonous   knobbed       scaly     brown      no
## 8118 poisonous   knobbed      smooth       red      no
## 8119 poisonous   knobbed       scaly     brown      no
## 8120    edible   knobbed      smooth     brown      no
## 8121    edible    convex      smooth     brown      no
## 8122    edible      flat      smooth     brown      no
## 8123 poisonous   knobbed       scaly     brown      no
## 8124    edible    convex      smooth     brown      no