EVOLUTION-MANAGER
Edit File: df_to_annotations_labels.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><title>R: Function to create annotations arguments from a data frame</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" href="R.css" /> </head><body> <table width="100%" summary="page for df_to_annotations_labels {highcharter}"><tr><td>df_to_annotations_labels {highcharter}</td><td style="text-align: right;">R Documentation</td></tr></table> <h2>Function to create annotations arguments from a data frame</h2> <h3>Description</h3> <p>Function to create annotations arguments from a data frame </p> <h3>Usage</h3> <pre> df_to_annotations_labels(df, xAxis = 0, yAxis = 0) </pre> <h3>Arguments</h3> <table summary="R argblock"> <tr valign="top"><td><code>df</code></td> <td> <p>A data frame with <code>x</code>, <code>y</code> and <code>text</code> columns names.</p> </td></tr> <tr valign="top"><td><code>xAxis</code></td> <td> <p>Index (js 0-based) of the x axis to put the annotations.</p> </td></tr> <tr valign="top"><td><code>yAxis</code></td> <td> <p>Index (js 0-based) of the y axis to put the annotations.</p> </td></tr> </table> <h3>Examples</h3> <pre> df <- data.frame(text = c("hi", "bye"), x = c(0, 1), y = c(1, 0)) df_to_annotations_labels(df) </pre> <hr /><div style="text-align: center;">[Package <em>highcharter</em> version 0.9.4 <a href="00Index.html">Index</a>]</div> </body></html>