knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

emoji

R-CMD-check CRAN status Downloads lifecycle Codecov test coverage Codecov test coverage

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:

install.packages("emoji")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("EmilHvitfeldt/emoji")

Example

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]))

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.



EmilHvitfeldt/emoji documentation built on Oct. 30, 2024, 12:27 p.m.