Learn R Programming

highcharter (version 0.7.0)

hc_add_series_times_values: Shortcut 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

...

Additional 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 {
# }
# 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")
# }
# NOT RUN {
# }

Run the code above in your browser using DataLab