df_to_annotations_labels: Function to create annotations arguments from a data frame

View source: R/helpers.R

df_to_annotations_labelsR Documentation

Function to create annotations arguments from a data frame

Description

Function to create annotations arguments from a data frame

Usage

df_to_annotations_labels(df, xAxis = 0, yAxis = 0)

Arguments

df

A data frame with x, y and text columns names.

xAxis

Index (js 0-based) of the x axis to put the annotations.

yAxis

Index (js 0-based) of the y axis to put the annotations.

Examples


df <- data.frame(text = c("hi", "bye"), x = c(0, 1), y = c(1, 0))

df_to_annotations_labels(df)

jbkunst/highcharter documentation built on March 14, 2024, 12:52 a.m.