graph_line: Graphic representation of a particular multiplication table

graph_lineR Documentation

Graphic representation of a particular multiplication table

Description

Graphic representation of a particular multiplication table

Usage

graph_line(
  nb_vertice,
  modulo,
  table,
  zoom = 1,
  bgcolor = "transparent",
  curvature,
  angle,
  alpha,
  colour,
  outer_glow = TRUE,
  outer_glow_color = "#18BC9C",
  outer_glow_sigma = 1,
  outer_glow_expand = 1,
  inner_glow = TRUE,
  inner_glow_color = "#18BC9C",
  inner_glow_sigma = 0.5,
  inner_glow_expand = 1
)

Arguments

nb_vertice

number of polygon segments

modulo

number of points

table

desired multiplication table

zoom

level of zoom

bgcolor

Background color

curvature

Level of segment curvature

angle

Angle of segment curvature

alpha

Alpha level of segment color

colour

Segment color

outer_glow

outer glow (TRUE/FALSE)

outer_glow_color

outer glow color

outer_glow_sigma

outer glow sigma

outer_glow_expand

outer glow expand

inner_glow

inner glow (TRUE/FALSE)

inner_glow_color

inner glow color

inner_glow_sigma

inner glow sigma

inner_glow_expand

inner glow expand

Value

a graphic of the multiplication table

Examples

library(dplyr)
library(ggplot2)
graph_line(nb_vertice = 5,
modulo = 20000,
table = 3,
alpha = 0.05,
curvature = 0,
angle = 0,
colour = "#2c3e50")

mhanf/multiplyR documentation built on May 17, 2022, 7:41 a.m.