Skip to content

Commit 0704312

Browse files
committed
Additional documentation
1 parent 2e33301 commit 0704312

20 files changed

+2168
-0
lines changed

.Rbuildignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
^_pkgdown\.yml$
2+
^docs$
3+
^pkgdown$

_pkgdown.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
template:
2+
params:
3+
bootswatch: united
4+
5+
reference:
6+
- title: Infrastructure
7+
contents:
8+
- finalize
9+
- fit
10+
- varying
11+
- title: Models
12+
contents:
13+
- rand_forest
14+
- logistic_reg
15+
16+
navbar:
17+
left:
18+
- text: Basic Usage
19+
href: articles/parsnip_Intro.html
20+
- text: Reference
21+
href: reference/index.html
22+

docs/articles/index.html

Lines changed: 102 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/articles/parsnip_Intro.html

Lines changed: 245 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/authors.html

Lines changed: 107 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/extra.css

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
/* Syntax highlighting ---------------------------------------------------- */
2+
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
3+
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
4+
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700);
5+
@import url(https://fonts.googleapis.com/css?family=Source+Code+Pro:300,300i,400,400i,500,500i,700,700i);
6+
@import url(https://cdn.rawgit.com/tonsky/FiraCode/1.204/distr/fira_code.css);
7+
@import url(https://fonts.googleapis.com/css?family=Noto+Serif);
8+
9+
body {
10+
font-family: 'Fira Sans','Droid Serif', 'Palatino Linotype', 'Book Antiqua', Palatino, 'Microsoft YaHei', 'Songti SC', serif;
11+
}
12+
13+
14+
h1 {
15+
font-size: 2.5em;
16+
font-family: 'Fira Sans','Droid Serif', 'Palatino Linotype', 'Book Antiqua', Palatino, 'Microsoft YaHei', 'Songti SC', serif;
17+
}
18+
19+
h2 {
20+
font-size: 1.875em;
21+
font-family: 'Fira Sans','Droid Serif', 'Palatino Linotype', 'Book Antiqua', Palatino, 'Microsoft YaHei', 'Songti SC', serif;
22+
}
23+
24+
25+
pre {
26+
word-wrap: normal;
27+
word-break: normal;
28+
border: 1px solid #eee;
29+
}
30+
31+
pre, code {
32+
background-color: #f8f8f8;
33+
font-family: 'Source Code Pro', 'Lucida Console', Monaco, monospace;
34+
font-size: 100%;
35+
}
36+
37+
pre .img {
38+
margin: 5px 0;
39+
}
40+
41+
pre .img img {
42+
background-color: #fff;
43+
display: block;
44+
height: auto;
45+
}
46+
47+
.fl {color: #3b6ac8;}
48+
.fu {color: #3b6ac8; font-weight: 500} /* function */
49+
.ch,.st {color: #1094a0;} /* string */
50+
.kw {color: #a00050;} /* keyword like <- or %>% */
51+
.fl {color: #3b6ac8;}
52+
.no {color: black;} /* object and variable names */
53+
54+
.message { color: gray; font-weight: bolder;}
55+
.error { color: red; font-weight: bolder;}
56+
.warning { color: purple; font-weight: bolder;}
57+

0 commit comments

Comments
 (0)