gm.line: Line Graphic Model

Description Usage Arguments Value Examples

View source: R/gmline.R

Description

gm.line make a line plot. Graphic models function family do graphic creation easy, is recommended for new programers, they have less and easyful parameters then p.line but the graphic customize is more limited.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
gm.line(
  data,
  ncolx,
  ncoly,
  ntimes,
  title,
  xlab = NULL,
  ylab = NULL,
  div100 = FALSE,
  percent = FALSE,
  fontsize = 0,
  lwdserie = 1.5,
  cserie = "white",
  clines = "white",
  ctext = "white",
  cbackground = "#141414"
)

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

xlab

x axis label

ylab

y axis label

div100

If data percent are not in decimal format set TRUE.

percent

If TRUE, y axis in percent (default=F)

fontsize

change size of all words in graphic (only numbers)

lwdserie

size of serie

cserie

change color of serie

clines

color of lines in graphic

ctext

color of words in graphic

cbackground

color of graphic background

Value

Return a graphic.

Examples

1
2
3
v=data.frame("x"=seq(from=1,to=4,by=1),"y"=c(5,3,7,2))

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

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