recurseq2: Plot recursive sequence output

Description Usage Arguments Value Examples

View source: R/recurseq2.R

Description

This takes a data frame with four columns (The first three columns are the values of the three numerics to be input to function 1 and the fourth column is the positive integer n for the sequence to be generated). The function will return a line plot of the output values for the different values of n.

Usage

1

Arguments

x

data frame

Value

line plot

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
my_data <- tibble::tribble(
~x, ~y, ~z, ~n,
2,4,3,3,
2,4,3,4,
2,4,3,5,
2,4,3,6,
2,4,3,7,
2,4,3,8,
2,4,3,9,
2,4,3,10,
2,4,3,12)
recurseq2(my_data)

STAT-413-613-21S/hw04paevans872 documentation built on Feb. 28, 2021, 12:12 a.m.