README.md

Name: Charlie Bollinger Github ID: charliebollinger

charliework

The goal of charliework is to complete homework 4.

Installation

You can install the released version of charliework by asking me for a copy.

install.packages("charliework")

Example

This is a basic example which shows you how to solve a common problem:

library(charliework)

## Using myseq_n

myseq_n(x = c(2, 3, 3), n = 3)
#> [1] 3

myseq_n(x = c(2, 4, 3), n = 4)
#> [1] 2.5

myseq_n(x = c(2, 4, 3), n = 5)
#> [1] 2.7

myseq_n(x = c(2, 4, 3), n = 6)
#> [1] 2.783333

myseq_n(x = c(2, 4, 3), n = 7)
#> [1] 2.754762


STAT-413-613-21S/hw04-charliebollinger documentation built on Dec. 18, 2021, noon