highcharter (version 0.7.0)

hc_add_series_ts: Shortcut for create/add time series charts from a ts object

Description

This function add a time series to a highchart object from a ts object.

Usage

hc_add_series_ts(hc, ts, ...)

Arguments

hc

A highchart htmlwidget object.

ts

A time series object.

...

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 {
highchart() %>% 
  hc_title(text = "Monthly Airline Passenger Numbers 1949-1960") %>% 
  hc_subtitle(text = "The classic Box and Jenkins airline data") %>% 
  hc_add_series_ts(AirPassengers, name = "passengers") %>%
  hc_tooltip(pointFormat =  '{point.y} passengers')

highchart() %>% 
  hc_title(text = "Monthly Deaths from Lung Diseases in the UK") %>% 
  hc_add_series_ts(fdeaths, name = "Female") %>%
  hc_add_series_ts(mdeaths, name = "Male")
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace