GitXplorerGitXplorer
j

animal-names

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
444b95b2b863d01ffbf1419928d38d93616063bd

Add dataset

jjneidel committed a year ago

README

The README file for this repository.

Animal names

Dataset of 100 common animal names

Data

animals-common

Handpicked dataset of animals you will know (western perspective).

See: txt, json

animals-unfiltered

Unfiltered list of animal names that include:

  • country name prefixed animals (like African ..)
  • adjective prefixed animals (like Red .., Bush ..)
  • some latin names

See: txt, json

Source

The orignal data source is: JustOscarJ1/animals

See also

More datasets:

Transforms

These are the transfomations I applied to the data (along with some manual picking out.)

To get animals-unfiltered.txt from the source file:

<SOURCE sed -E "s|,.+$||; s|[^-]+-\S||" | sort | uniq | grep -Fv unidentified | grep -Fv . | grep -ve " .*us$" -e " .*is$" -e "^[a-z]" -e "Western" -e "Southern" -e "Northern" -e "Eastern" -e "^$"

From txt to json:

<FILE.txt awk -F@ 'BEGIN { print "[" } { print "  \""$1"\"," }' | sed '$ s/,$/\n]/'