-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathreport.html
54 lines (49 loc) · 2.17 KB
/
report.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />
<meta name="generator" content="pandoc" />
<meta name="author" content="The author" />
<title>A sample report</title>
<style type="text/css">
table.sourceCode, tr.sourceCode, td.lineNumbers, td.sourceCode {
margin: 0; padding: 0; vertical-align: baseline; border: none; }
table.sourceCode { width: 100%; }
td.lineNumbers { text-align: right; padding-right: 4px; padding-left: 4px; color: #aaaaaa; border-right: 1px solid #aaaaaa; }
td.sourceCode { padding-left: 5px; }
code > span.kw { color: #007020; font-weight: bold; }
code > span.dt { color: #902000; }
code > span.dv { color: #40a070; }
code > span.bn { color: #40a070; }
code > span.fl { color: #40a070; }
code > span.ch { color: #4070a0; }
code > span.st { color: #4070a0; }
code > span.co { color: #60a0b0; font-style: italic; }
code > span.ot { color: #007020; }
code > span.al { color: #ff0000; font-weight: bold; }
code > span.fu { color: #06287e; }
code > span.er { color: #ff0000; font-weight: bold; }
</style>
</head>
<body>
<div id="header">
<h1 class="title">A sample report</h1>
<h2 class="author">The author</h2>
<h3 class="date"><code>Thu May 17 13:03:43 2012</code></h3>
</div>
<!-- Setting up R -->
<!-- read external r code -->
<h1 id="the-first-part-of-my-r-script">The first part of my R script</h1>
<p>Here I can generate my data</p>
<pre class="sourceCode r"><code class="sourceCode r">a <- <span class="kw">matrix</span>(<span class="kw">rnorm</span>(<span class="dv">100</span>), <span class="dt">nrow =</span> <span class="dv">10</span>)</code></pre>
<h1 id="results">Results</h1>
<p>An now the reults are plotted</p>
<pre class="sourceCode r"><code class="sourceCode r"><span class="kw">image</span>(a)</code></pre>
<div class="figure">
<img src="figure/plot-fig.png" /><p class="caption"></p>
</div>
<h1 id="more">More</h1>
<p>Of course I can use inline elemtnts: 3 + 3 = <code>6</code>.</p>
</body>
</html>