Merge pull request #24 from EmilHvitfeldt/RC-16.0.0 Release Candidate 16.0.0
Merge pull request #24 from EmilHvitfeldt/RC-16.0.0
Release Candidate 16.0.0
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") devtools::install_github("EmilHvitfeldt/emoji")
The main data set in this package is the emojis data set which contains almost all the information contained in this package.
emojis
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
emoji_name
emoji_name[1:10] #> 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.
emoji_keyword[c(150:155)] #> NSCCN/emoji:emoji 数据与辅助资源包,用于文本展示、界面增强和字符处理。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.
emoji_keyword
lapply(emoji_keyword[c(150:155)], function(x) unname(emoji_name[x])) #> NSCCN/emoji:emoji 数据与辅助资源包,用于文本展示、界面增强和字符处理。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.
emoji 数据与辅助资源包,用于文本展示、界面增强和字符处理。
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
emoji
The goal of emoji is to provide up to date information inn the form of data sets on emojis and their use.
Installation
You can install the released version of emoji from CRAN with:
And the development version from GitHub with:
Example
The main data set in this package is the
emojisdata set which contains almost all the information contained in this package.the
emoji_nameis a vector of emojis with descriptive namesEach of the emojis have zero or more keywords associated with them.
when can use
emoji_keywordtogether withemoji_nameto show then emojis for each keyword.Code of Conduct
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.