Skip to content

Commit 26b38d3

Browse files
committed
added Beazley dataset
1 parent 79e6fd9 commit 26b38d3

8 files changed

Lines changed: 85 additions & 25 deletions

File tree

DESCRIPTION

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,11 @@ License: CC BY-SA 4.0
99
Encoding: UTF-8
1010
LazyData: true
1111
RoxygenNote: 7.1.0
12-
Suggests: testthat, devtools
12+
Suggests:
13+
testthat,
14+
devtools,
15+
knitr,
16+
rmarkdown
17+
Depends:
18+
R (>= 2.10)
19+
VignetteBuilder: knitr

R/DAT_df.R

Lines changed: 0 additions & 20 deletions
This file was deleted.

R/data.R

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#' datplot Testing data
2+
#'
3+
#' A test dataset containing a data.frame how it should ideally be arranged to work with datplot.
4+
#' Data are not real and illustrate some common problems such as lower and upper dating in the wrong columns.
5+
#'
6+
#' \itemize{
7+
#' \item ID. Identifier of the Objects (has to be unique)
8+
#' \item var. Grouping variable, such as a Type or a Findspot
9+
#' \item DAT_min. Integer: lower range of the dating, BCE in negative numbers
10+
#' \item DAT_max. Integer: uppder range of the dating, BCE in negative numbers
11+
#' }
12+
#'
13+
#' @docType data
14+
#' @keywords datasets
15+
#' @name DAT_df
16+
#' @usage data(DAT_df)
17+
#' @format A data frame with 5000 rows and 4 variables
18+
19+
"DAT_df"
20+
NULL
21+
22+
23+
#' Beazley (sample of 1000)
24+
#'
25+
#' A test dataset containing a data.frame how it should ideally be arranged to work with datplot.
26+
#' Data are gathered from the Beazley Archive Pottery Database (BAPD) -- https://www.beazley.ox.ac.uk/pottery/default.htm
27+
#' and transformed to work with datplot
28+
#'
29+
#' \itemize{
30+
#' \item Identifier (Vase.Number in BAPD)
31+
#' \item Technique: Sample contains only red- or blackfigured objects
32+
#' \item DAT_min. Integer: lower range of the dating, BCE in negative numbers
33+
#' \item DAT_max. Integer: uppder range of the dating, BCE in negative numbers
34+
#' }
35+
#'
36+
#' @docType data
37+
#' @keywords datasets
38+
#' @name Beazley
39+
#' @usage data(Beazley)
40+
#' @format A data frame with 1000 rows and 4 variables
41+
#' @source https://www.beazley.ox.ac.uk/pottery/default.htm
42+
43+
"Beazley"
44+
NULL

data/Beazley.RData

9.65 KB
Binary file not shown.

data/Beazley.rda

7.15 KB
Binary file not shown.

data/DAT_df.rda

19.7 KB
Binary file not shown.

man/Beazley.Rd

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

man/DAT_df.Rd

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

0 commit comments

Comments
 (0)