get_plot: Logo plot for given co-ordinates and fill values

Description Usage Arguments Value Examples

View source: R/get_plot.R

Description

Plots logo given the co-ordinates and fill values of the symbols.

Usage

1
get_plot(x, y, id, fill, colfill, lwd = 10, fill_symbol = TRUE)

Arguments

x

The X co-ordinates of the symbol

y

The Y co-ordinates of the symbol

id

The id of the different points based on how it will be grouped

fill

The color vector used for filling the logo.

colfill

The color label for the borders of the plot.

lwd

Specifies the border width of the symbol. Defaults to 10.

fill_symbol

A binary. If TRUE, the function would fill the symbol by the color represented in colfill, else colors the boundary of the symbol by colfill. Defaults to TRUE.

Value

Returns a plot of the symbol with the input co-ordinates and fill colors

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
angle2 <- c(seq(pi/2, 0, length.out=100), seq(0, -(3*pi/2), length.out=100))
x1 <- 0.5 + 0.3*cos(angle2)
y1 <- 0.5 + 0.5*sin(angle2)
x2 <- 0.5 + 0.15*cos(angle2)
y2 <- 0.5 + 0.35*sin(angle2)
x <- c(x1, x2)
y <- c(y1, y2)
colfill <- "green"
id <- c(rep(1, length(x1)), rep(2, length(x2)))
fill <- c(colfill, "white")
get_plot(x, y, id, fill, colfill, lwd=10, fill_symbol=TRUE)

kkdey/Logolas documentation built on May 20, 2019, 10:30 a.m.