Public
Edited
Aug 28, 2024
Insert cell
Insert cell
emoji-animals@9.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
Insert cell
data.filter(o => o.appearance_google_apple_windows === 'other').sort((a,b) => a.version - b.version).map(o => o.emoji).join(' ')
Insert cell
Insert cell
data.filter(o => o.codepoints.includes(' ') ).sort((a,b) => a.version - b.version).map(o => o.emoji).join(' ')
Insert cell
Insert cell
data.filter(o => o.appearance_google_apple_windows === 'face')
.reduce((acc, cur) =>
({
labeled_faces: acc.labeled_faces + cur.CLDR_short_name.includes('face'),
total_faces: acc.total_faces + 1
})
, {labeled_faces: 0, total_faces: 0})
Insert cell
Insert cell
data.filter(o => o.unicode_category === 'marine').sort((a,b) => a.version - b.version).map(o => o.emoji).join(' ')
Insert cell
Insert cell
data.filter(o => o.movement_category === 'aquatic').sort((a,b) => a.version - b.version).map(o => o.emoji).join(' ')
Insert cell
Insert cell
data.filter(o => o.version == 1).sort((a,b) => a.version - b.version).map(o => o.emoji).join(' ')
Insert cell
Insert cell
data.filter(o => ['dog', 'cat', 'poodle', 'chick', 'rooster', 'ram', 'ewe', 'mouse', 'rat', 'monkey', 'tiger', 'horse', 'cow', 'pig', 'camel', 'dragon', 'bird', 'rabbit', 'whale']
.map(duplicate => o.CLDR_short_name.includes(duplicate))
.some(includes => includes))
.sort((a,b) => a.codepoints - b.codepoints)
.map(o => o.emoji)
.join(' ')
Insert cell
data
.filter(o => o.CLDR_short_name.match(/t|h|i|r|e|n/) === null)
.map(o => o.CLDR_short_name)
Insert cell
goodBodies = data
.filter(o => !duplicates.includes(o.emoji) || not_duplicates.includes(o.emoji))
.filter(o => ![15.1, 15.0, 14.0, 13.0].includes(o.version))
.filter(o => o.appearance_google_apple_windows === 'body')
// .map(o => [o.emoji, o.CLDR_short_name])
Insert cell
goodBodies
.filter(o => o.CLDR_short_name.match(/t|h|i|r|e|n/) === null)
.map(o => o.CLDR_short_name)
Insert cell
goodBodies
.sort((a,b) => a.movement_category < b.movement_category ? 1 : -1)
.map(o => [o.emoji, o.movement_category])
Insert cell
goodBodies
.filter(o => o.movement_category === 'birdy') // dont forget crab, shrimp, squid, lobster
.filter(o => o.CLDR_short_name.match(/t|h|i|r|e|n/) === null)
.map(o => o.emoji)
Insert cell
Object.fromEntries(
goodBodies.map(o => [o.emoji, o.CLDR_short_name])
)
Insert cell
duplicates = '🐲 🐦‍⬛ 🐔 🐣 🐤 🐥 🐭 🐀 🐫 🐷 🐮 🐽 🐏 🐰 🐴 🐯 🐈‍⬛ 🐱 🦮 🐕‍🦺 🐩 🐶 🐵 🐳'
Insert cell
data.filter(o => o.unicode_category === 'bird').sort((a,b) => a.version - b.version).map(o => o.emoji).join(' ')
Insert cell
data.filter(o => !duplicates.includes(o.emoji))
.filter(o => o.movement_category === 'aquatic')
.sort((a,b) => a.version - b.version).map(o => o.emoji)
.join(' ')
Insert cell
not_duplicates = '🐒 🐕 🐈 🐅 🐎 🐄 🐖 🐑 🐪 🐁 🐇 🐓 🐦 🐉'
Insert cell
fish_are_friends_not_food = '🦀 🦐 🦑 🦞'
Insert cell
Insert cell
data
SELECT REPEAT(emoji, 100) FROM data
WHERE unicode_category = 'amphibian'
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more