forked from vincentarelbundock/Rdatasets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
complete_old.html
77 lines (60 loc) · 2.46 KB
/
complete_old.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html><html><head><title>R: Complete survey data from 1977 to 1989.</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css">
<script type="text/javascript">
const macros = { "\\R": "\\textsf{R}", "\\code": "\\texttt"};
function processMathHTML() {
var l = document.getElementsByClassName('reqn');
for (let e of l) { katex.render(e.textContent, e, { throwOnError: false, macros }); }
return;
}</script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js"
onload="processMathHTML();"></script>
<link rel="stylesheet" type="text/css" href="R.css" />
</head><body><div class="container">
<table style="width: 100%;"><tr><td>complete_old</td><td style="text-align: right;">R Documentation</td></tr></table>
<h2>Complete survey data from 1977 to 1989.</h2>
<h3>Description</h3>
<p>Data on individual rodents captured at the Portal Project and the plots they were captured in. This data.frame is the same as 'complete', but only containing data from 1977 to 1989. This is so that instructors can have learners begin working with a clean, older dataset, and later introduce a messy version of the newer years of data, in whatever format fits their needs.
</p>
<h3>Usage</h3>
<pre><code class='language-R'>complete_old
</code></pre>
<h3>Format</h3>
<p>A data frame with columns:
</p>
<dl>
<dt>record_id</dt><dd><p>Unique record identifier</p>
</dd>
<dt>month</dt><dd><p>Month captured</p>
</dd>
<dt>day</dt><dd><p>Day captured</p>
</dd>
<dt>year</dt><dd><p>Year captured</p>
</dd>
<dt>plot_id</dt><dd><p>Plot individual was captured on</p>
</dd>
<dt>species_id</dt><dd><p>Species identifier</p>
</dd>
<dt>sex</dt><dd><p>Sex of the individual</p>
</dd>
<dt>hindfoot_length</dt><dd><p>Length of a back foot in mm</p>
</dd>
<dt>weight</dt><dd><p>Weight of the individual in g' Species data.</p>
</dd>
<dt>genus</dt><dd><p>The genus of the species</p>
</dd>
<dt>species</dt><dd><p>The latin species name</p>
</dd>
<dt>taxa</dt><dd><p>General taxonomic category of the species</p>
</dd>
<dt>plot_type</dt><dd><p>Type of experimental manipulation conducted on the plot</p>
</dd>
</dl>
<h3>Source</h3>
<p>Portal Project Teaching Database,
doi: <a href="https://doi.org/10.6084/m9.figshare.1314459">10.6084/m9.figshare.1314459</a>
</p>
</div>
</body></html>