gm.tscol2: Time serie bar Graphic Model

Description Usage Arguments Value Examples

View source: R/gmtscol2.R

Description

gm.tscol2 make a bar plot in time serie format. The difference between gm.tscol2 and gm.tscol is possibility to select serie color. Graphic models function family make graphic creation easy, is recommended for new programers, they have less and easyful parameters then p.tscol but the graphic customize is more limited. The data don't need be a ts object.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
gm.tscol2(
  data,
  ncolx,
  ncoly,
  ntimes,
  title,
  ylab = NULL,
  percent = FALSE,
  div100 = FALSE,
  fontsize = 0,
  datebreaks = "1 months",
  dateformat = "%b/%y",
  cserie = "white",
  clines = "white",
  ctext = "white",
  cbackground = "#141414",
  cbserie = cbackground
)

Arguments

data

a dataframe

ncolx

number of x column in data frame

ncoly

number of y column in data frame

ntimes

number of observations to plot (count by tail)

title

title of plot

ylab

y axis label

percent

If TRUE y axis in percent (default=F)

div100

If data percent are not in decimal format set TRUE.

fontsize

change size of all words in graphic (only numbers)

datebreaks

datebreaks in x axis (default="1 month")

dateformat

format of date in x axis (need a dataformat string) (default ="%Y-%m")

cserie

color of serie

clines

color of lines in graphic

ctext

color of words in graphic

cbackground

color of graphic background

cbserie

color of serie border (default= same cbackground)

Value

Return a graphic.

Examples

1
2
3
4
v=data.frame("x"=seq.Date(as.Date('2020-01-01'),
to = as.Date('2020-04-01'),by='month'),"y"=c(5,3,7,2))

gm.tscol2(v,1,2,title="Simple example",ntimes=3)

jvg0mes/metools documentation built on June 28, 2020, 2:38 a.m.