knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
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")
library(tibble)
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
the emoji_name
is a vector of emojis with descriptive names
emoji_name[1:10]
Each of the emojis have zero or more keywords associated with them.
emoji_keyword[c(150:155)]
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]))
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.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.