knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

hw04p.marc.estevadeordal

hw04p.marc.estevadeordal is homework 4 for STAT 613.

Name: Marc Estevadeordal

Github: marc-estevadeordal

Example

This is an example of the functions in this package:

library(hw04p.marc.estevadeordal)

Function fun_rec_seq calculates a recursive sequence where element n is the sum of element n-1 and the difference between elements n-2 and n-3 divided by n.

fun_rec_seq(x = c(2, 3, 3), n = 3)
fun_rec_seq(x = c(2, 4, 3), n = 4)
fun_rec_seq(x = c(2, 4, 3), n = 5)
fun_rec_seq(x = c(2, 4, 3), n = 6)
fun_rec_seq(x = c(2, 4, 3), n = 7)

We then use function fun_plot to allow the user to input a data frame with four columns, and runs fun_rec_seq to generate a line plot.

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


21Sp-STAT-413-613/hw04p.marc.estevadeordal documentation built on March 1, 2021, midnight