Learn R Programming

simplevis (version 3.1.0)

mutate_text: Add a quick tooltip text column to data.

Description

Add a column of tooltip text which is automatically created based on column names and values.

Usage

mutate_text(data, text_vars_vctr = NULL, comma = FALSE)

Arguments

data

A tibble or dataframe. Required input.

text_vars_vctr

A vector of quoted variables to include in the tooltip. Defaults to NULL, which adds all variables in.

comma

TRUE or FALSE of whether to convert numeric values to character values with comma seperators.

Value

A vector of labels.

Examples

Run this code
# NOT RUN {
library(dplyr)

plot_data <- slice_sample(ggplot2::diamonds, prop = 0.05) %>% 
  mutate_text(c("carat", "price"), comma = TRUE)

plot <- ggplot_point(data = plot_data, x_var = carat, y_var = price,
                       text_var = text,
                       title = "Diamond price by carat",
                       x_title = "Carat",
                       y_title = "Price ($US thousands)")

plotly::ggplotly(plot, tooltip = "text")
# }

Run the code above in your browser using DataLab