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

Bis557

Travis build status

codecov

This Package contains my homeworks for Bis 557

Installation

The development version of the packages

install.packages("bis557")

And the development version from GitHub with:

# install.packages("devtools")
devtools::install_github("importbq/bis557")

Example

We have an example here to show the usage of linear_model:

library(bis557)
data(iris)
fit_linear_model <- linear_model(Sepal.Length ~ ., iris)
print(fit_linear_model)

We see that gradient descent achieved very good results for OLS.

Please read Vignette for details

HW2 Vignette has the solution to HW2

HW3 Pdf has been included in the Vignette folder

HW4 Pdf has been included in the Vignette folder. Benchmark(test code) is produced in chunck.

Final Project was updated.



importbq/bis557 documentation built on Dec. 21, 2020, 3:05 a.m.