Learn R Programming

rAmCharts (version 2.0.2)

amLines: amLines adds a serie to a graph.

Description

amLines adds a new serie to an existing serial chart.

Usage

amLines(chart, x = NULL, y = NULL, type = c("points", "line", "smoothedLine"), col, title)

Arguments

chart
AmChart. Chart you wish to add the new serie.
x
numeric, equivalent to y, deprecated.
y
numeric.
type
(optionnal) character. Possible values are : "l" for line, "p" for points, "sl" for smoothed line.
col
character, color of the new serie.
title
character, name of the new serie, used when legend is enabled.

Examples

Run this code
require(pipeR)
amPlot(x = rnorm(100), type = 'sl') %>>%
  amLines(x = rnorm(100), type = "p")
  

amPlot(x = rnorm(100), type = 'sl') %>>%
  amLines(x = rnorm(100), col = "blue") %>>%
  amLines(x = rnorm(100), type = "sl") %>>%
  amLines(x = rnorm(100), type = "p")

# For an XY chart
x <- sort(rnorm(100))
y1 <- rnorm(100, sd = 10)
y2 <- rnorm(100, sd = 10)
y3 <- rnorm(100, sd = 10)
amPlot(x = x, y = y1) %>>%
  amLines(x = y2, col = "blue") %>>%
  amLines(x = y3, type = "p")


Run the code above in your browser using DataLab