-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.Rmd
30 lines (26 loc) · 1.02 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
title: "An R Companion for the Applied Linear Statistical Models"
author: "Cengiz Zopluoglu"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
github-repo: rstudio/bookdown-demo
description: "This is an R companion for the Applied Linear Statistical Models (5th Edition) by Kutner, Nachtsheim, Neter, and Li (2005)."
---
`r if (knitr:::is_html_output()) '
# Welcome {-}
'`
This is an R companion for the Applied Linear Statistical Models [@kutner2005applied]. The purpose of the book is to reproduce all the examples in the book using R and to provide solutions to all exercises using R.
```{r, echo=FALSE, fig.align='center',fig.height=8,fig.width=6}
knitr::include_graphics("/Users/cengiz/Desktop/Github/rcompanionALSM/supp/cover.jpg")
```
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown'
), 'packages.bib')
```