Learn R Programming

highcharter (version 0.4.0)

hc_add_series_times_values: Shorcut for create/add time series from times and values

Description

This function add a time series to a highchart object.

Usage

hc_add_series_times_values(hc, dates, values, ...)

Arguments

hc
A highchart htmlwidget object.
dates
A date vector (same length as values)
values
A numeric vector
...
Aditional arguments for the data series (http://api.highcharts.com/highcharts#series).

Details

This function modify the type of chart to datetime

Examples

Run this code

## Not run: 
# 
# require("ggplot2")
# data(economics, package = "ggplot2")
# 
# hc_add_series_times_values(hc = highchart(),
#                            dates = economics$date,
#                            values = economics$psavert, 
#                            name = "Personal Savings Rate")
# ## End(Not run)

Run the code above in your browser using DataLab