-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julian Karch
committed
Nov 18, 2016
1 parent
03cea44
commit 57eabea
Showing
3 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
.Rhistory | ||
.RData | ||
.Ruserdata | ||
inst/doc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
title: "Readme for gppmr" | ||
author: "Julian Karch" | ||
date: "`r Sys.Date()`" | ||
output: rmarkdown::html_vignette | ||
vignette: > | ||
%\VignetteIndexEntry{Readme for gppmr} | ||
%\VignetteEngine{knitr::rmarkdown} | ||
%\VignetteEncoding{UTF-8} | ||
--- | ||
## Install | ||
|
||
To install the gppmr package. Copy the following line into R: | ||
```{r, eval=FALSE} | ||
source('https://raw.githubusercontent.com/karchjd/gppmr/master/tools/gppmrInstall.R') | ||
``` | ||
|
||
|
||
## Examples | ||
The examples for the paper are included as R demos. To see a list of all examples do the following: | ||
```{r} | ||
demo(package='gppmr') | ||
``` | ||
|
||
To run a particular example. You can do the following. Here exemplified for 'example1linearModel'. | ||
```{r, eval=FALSE} | ||
demo('example1linearModel',package='gppmr') | ||
``` | ||
|
||
However, the recommended approach is to look at the source directly. To locate the demo folder in which all examples resides on your computer do the following: | ||
```{r} | ||
system.file("demo", package ="gppmr") | ||
``` | ||
|
||
|