-
Notifications
You must be signed in to change notification settings - Fork 1
/
test_quart.qmd
200 lines (167 loc) · 4.75 KB
/
test_quart.qmd
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
---
format: acm-pdf
# use keep-tex to cause quarto to generate a .tex file
# which you can eventually use with TAPS
keep-tex: true
params:
eval_models: true
knitr:
opts_chunk:
cache_comments: false
crop: true
execute:
echo: false
warning: false
message: false
include: false
bibliography: bibliography.bib
title: The Name of the Title Is RUM
# if short-title is defined, then it's used
short-title: Hope
author:
- name: Ben Trovato
email: [email protected]
orcid: 1234-5678-9012
- name: G.K.M. Tobin
email: [email protected]
affiliation:
name: Institute for Clarity in Documentation
address: P.O. Box 1212
city: Dublin
state: Ohio
country: USA
postal-code: 43017-6221
- name: Lars Thørväld
email: [email protected]
affiliation:
name: The Thørväld Group
address: 1 Thørväld Circle
city: Hekla
country: Iceland
- name: Valerie Béranger
affiliation:
name: Inria Paris-Rocquencourt
city: Rocquencourt
country: France
- name: Aparna Patel
affiliation:
name: Rajiv Gandhi University
address: Rono-Hills
city: Doimukh
state: Arunachal Pradesh
country: India
- name: Huifen Chan
affiliation:
name: Tsinghua University
address: 30 Shuangqing Rd
city: Haidian Qu
state: Beijing Shi
country: China
- name: Charles Palmer
affiliation:
name: Palmer Research Laboratories
address: 8600 Datapoint Drive
city: San Antonio
state: Texas
country: USA
postal-code: 78829
email: [email protected]
- name: John Smith
affiliation:
name: The Thørväld Group
address: 1 Thørväld Circle
city: Hekla
country: Iceland
email: [email protected]
- name: Julius P. Kumquat
affiliation:
name: The Kumquat Consortium
city: New York
country: USA
email: [email protected]
# acm-specific metadata
acm-metadata:
# comment this out to make submission anonymous
# anonymous: true
# comment this out to build a draft version
final: true
# comment this out to specify detailed document options
# acmart-options: sigconf, review
# acm preamble information
copyright-year: 2018
acm-year: 2018
copyright: acmcopyright
doi: XXXXXXX.XXXXXXX
conference-acronym: "Conference acronym 'XX"
conference-name: |
Make sure to enter the correct
conference title from your rights confirmation emai
conference-date: June 03--05, 2018
conference-location: Woodstock, NY
price: "15.00"
isbn: 978-1-4503-XXXX-X/18/06
# if present, replaces the list of authors in the page header.
shortauthors: Trovato et al.
# The code below is generated by the tool at http://dl.acm.org/ccs.cfm.
# Please copy and paste the code instead of the example below.
ccs: |
\begin{CCSXML}
<ccs2012>
<concept>
<concept_id>10010520.10010553.10010562</concept_id>
<concept_desc>Computer systems organization~Embedded systems</concept_desc>
<concept_significance>500</concept_significance>
</concept>
<concept>
<concept_id>10010520.10010575.10010755</concept_id>
<concept_desc>Computer systems organization~Redundancy</concept_desc>
<concept_significance>300</concept_significance>
</concept>
<concept>
<concept_id>10010520.10010553.10010554</concept_id>
<concept_desc>Computer systems organization~Robotics</concept_desc>
<concept_significance>100</concept_significance>
</concept>
<concept>
<concept_id>10003033.10003083.10003095</concept_id>
<concept_desc>Networks~Network reliability</concept_desc>
<concept_significance>100</concept_significance>
</concept>
</ccs2012>
\end{CCSXML}
\ccsdesc[500]{Computer systems organization~Embedded systems}
\ccsdesc[300]{Computer systems organization~Redundancy}
\ccsdesc{Computer systems organization~Robotics}
\ccsdesc[100]{Networks~Network reliability}
keywords:
- datasets
- neural networks
- gaze detection
- text tagging
abstract: |
Test document for the RUM quarto and Docker demo
---
# Introduction
```{r}
#| label: setup #the chunk labelled setup will always be run when running any other chunk.
library(tidyverse)
library(MASS)
library(qwraps2)
```
```{r}
#| label: lazyload-cache
if (!params$eval_models){ lazyload_cache_dir("test_quart/pdf") }
```
```{r}
#| label: model
#| eval: !expr params$eval_models
#| cache: !expr params$eval_models
n <- 100
x <- rnorm(n, mean = 5, sd = 2)
error <- rnorm(n, mean = 0, sd = 1)
y <- 3 + 2 * x + error
data <- data.frame(x = x, y = y)
model <- lm(y ~ x, data = data)
```
Some text here. Citation demo [@Novak03]
# References {-}