The goal of emoji is to provide up to date information inn the form of data sets on emojis and their use.
You can install the released version of emoji from CRAN with:
install.packages("emoji")
And the development version from GitHub with:
# install.packages("devtools")
::install_github("EmilHvitfeldt/emoji") devtools
The main data set in this package is the emojis
data set
which contains almost all the information contained in this package.
library(emoji)
emojis#> # A tibble: 5,042 × 19
#> emoji name group subgroup version points nrunes runes qualified vendor_apple
#> <chr> <chr> <chr> <chr> <chr> <list> <int> <chr> <chr> <lgl>
#> 1 😀 grin… Smil… face-sm… 1.0 <int> 1 1F600 fully-qu… FALSE
#> 2 😃 grin… Smil… face-sm… 0.6 <int> 1 1F603 fully-qu… FALSE
#> 3 😄 grin… Smil… face-sm… 0.6 <int> 1 1F604 fully-qu… FALSE
#> 4 😁 beam… Smil… face-sm… 0.6 <int> 1 1F601 fully-qu… FALSE
#> 5 😆 grin… Smil… face-sm… 0.6 <int> 1 1F606 fully-qu… FALSE
#> 6 😅 grin… Smil… face-sm… 0.6 <int> 1 1F605 fully-qu… FALSE
#> 7 🤣 roll… Smil… face-sm… 3.0 <int> 1 1F923 fully-qu… FALSE
#> 8 😂 face… Smil… face-sm… 0.6 <int> 1 1F602 fully-qu… FALSE
#> 9 🙂 slig… Smil… face-sm… 1.0 <int> 1 1F642 fully-qu… FALSE
#> 10 🙃 upsi… Smil… face-sm… 1.0 <int> 1 1F643 fully-qu… FALSE
#> # ℹ 5,032 more rows
#> # ℹ 9 more variables: vendor_google <lgl>, vendor_twitter <lgl>,
#> # vendor_one <lgl>, vendor_facebook <lgl>, vendor_messenger <lgl>,
#> # vendor_samsung <lgl>, vendor_windows <lgl>, keywords <list>, aliases <list>
the emoji_name
is a vector of emojis with descriptive
names
1:10]
emoji_name[#> grinning grinning_face
#> "😀" "😀"
#> smiley grinning_face_with_big_eyes
#> "😃" "😃"
#> smile grinning_face_with_smiling_eyes
#> "😄" "😄"
#> grin beaming_face_with_smiling_eyes
#> "😁" "😁"
#> laughing satisfied
#> "😆" "😆"
Each of the emojis have zero or more keywords associated with them.
c(150:155)]
emoji_keyword[#> $`TRUE`
#> [1] "100"
#>
#> $Taurus
#> [1] "ox" "taurus"
#>
#> $Tegh
#> [1] "khanda"
#>
#> $Titania
#> [1] "fairy_woman"
#>
#> $Tokyo
#> [1] "tokyo_tower"
#>
#> $Triton
#> [1] "merman"
when can use emoji_keyword
together with
emoji_name
to show then emojis for each keyword.
lapply(emoji_keyword[c(150:155)], function(x) unname(emoji_name[x]))
#> $`TRUE`
#> [1] "💯"
#>
#> $Taurus
#> [1] "🐂" "♉"
#>
#> $Tegh
#> [1] "\U{01faaf}"
#>
#> $Titania
#> [1] "🧚♀️"
#>
#> $Tokyo
#> [1] "🗼"
#>
#> $Triton
#> [1] "🧜♂️"
Please note that the emoji project is released with a Contributor Code of Conduct. By contributing to this project, you agree to abide by its terms.