R/loon_title.R

Defines functions loon_title.l_ts loon_title.loon loon_title

loon_title <- function(target) {
  UseMethod('loon_title', target)
}

loon_title.loon <- function(target){
  target["title"]
}

loon_title.l_ts <- function(target) {
  target[[1]]['title']
}

Try the loon.ggplot package in your browser

Any scripts or data that you put into this service are public.

loon.ggplot documentation built on Nov. 13, 2022, 1:06 a.m.