Learn R Programming

highcharter (version 0.9.4)

df_to_annotations_labels: 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

Run this code
# NOT RUN {
df <- data.frame(text = c("hi", "bye"), x = c(0, 1), y = c(1, 0))

df_to_annotations_labels(df)
# }

Run the code above in your browser using DataLab