-
Notifications
You must be signed in to change notification settings - Fork 25
/
possum.txt
55 lines (34 loc) · 1.46 KB
/
possum.txt
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
possum R Documentation
possum
Description:
Data representing possums in Australia and New Guinea. This is a
copy of the data set by the same name in the ‘DAAG’ package,
however, the data set included here includes fewer variables.
Usage:
possum <- read.csv("https://raw.githubusercontent.com/roualdes/data/master/possum.csv")
Format:
A data frame with 104 observations on the following 8 variables.
‘site’ The site number where the possum was trapped.
‘pop’ Population, either ‘Vic’ (Victoria) or ‘other’ (New South
Wales or Queensland).
‘sex’ Gender, either ‘m’ (male) or ‘f’ (female).
‘age’ Age.
‘headL’ Head length, in mm.
‘skullW’ Skull width, in mm.
‘totalL’ Total length, in cm.
‘tailL’ Tail length, in cm.
Source:
Lindenmayer, D. B., Viggers, K. L., Cunningham, R. B., and
Donnelly, C. F. 1995. Morphological variation among columns of the
mountain brushtail possum, Trichosurus caninus Ogilby
(Phalangeridae: Marsupiala). Australian Journal of Zoology 43:
449-458.
References:
< http://www.openintro.org/>
Examples:
data(possum)
par(mfrow=1:2)
plot(possum$headL, possum$skullW)
densityPlot(possum$totalL, possum$sex, key=c('f','m'),
xlab='total length (cm)')
legend('topright', col=c('black', 'red'), lty=1:2, legend=c('f', 'm'))