myseqplot: Plots recursive function

Description Usage Arguments Value Examples

View source: R/myseqplot.R

Description

This function plots the output of a recursive function on a data set.

Usage

1
myseqplot(inputdata)

Arguments

inputdata

dataset

Value

Plot of the recursive function output.

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)
myseqplot(my_data)

STAT-413-613-21S/hw04pDmando documentation built on March 5, 2021, 2:03 p.m.