Skip to content

Commit c1656c0

Browse files
committed
changes to pass checks
1 parent a05385c commit c1656c0

21 files changed

Lines changed: 289 additions & 2057 deletions

.gitignore

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
.Rproj.user
2-
.Rhistory
3-
.RData
4-
.Ruserdata
5-
inst/prep.R
6-
inst/data/beazley_archive.csv
7-
inst/data/testset_beazley.csv
8-
inst/literatur.bib.bak
9-
inst/literatur.bib.sav
10-
private/
11-
inst/data/testset_beazley_shape.csv
12-
vignettes/Explanation.Rmd
13-
*.log
14-
*.aux
15-
*.out
16-
*.fls
17-
*.fdb*
18-
*.ttf
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata
5+
inst/prep.R
6+
inst/data/beazley_archive.csv
7+
inst/data/testset_beazley.csv
8+
inst/literatur.bib.bak
9+
inst/literatur.bib.sav
10+
private/
11+
inst/data/testset_beazley_shape.csv
12+
vignettes/Explanation.Rmd
13+
*.log
14+
*.aux
15+
*.out
16+
*.fls
17+
*.fdb*
18+
*.ttf

DESCRIPTION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: datplot
22
Type: Package
3-
Title: Preparation of object dating for nice density plots
3+
Title: Preparation of object dating ranges for density plots
44
Version: 0.1.0
55
Author: Lisa Steinmann
66
Maintainer: Lisa Steinmann <lisa.steinmann@rub.de>
@@ -9,3 +9,4 @@ License: CC BY-SA 4.0
99
Encoding: UTF-8
1010
LazyData: true
1111
RoxygenNote: 7.1.0
12+

NAMESPACE

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Generated by roxygen2: do not edit by hand
2-
3-
export(create.sub.objects)
4-
export(datsteps)
5-
export(get.weights)
6-
export(scaleweight)
7-
export(switch.dating)
1+
# Generated by roxygen2: do not edit by hand
2+
3+
export(create.sub.objects)
4+
export(datsteps)
5+
export(generate.stepsize)
6+
export(get.weights)
7+
export(scaleweight)
8+
export(switch.dating)

R/DAT_df.R

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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 at 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 carat. 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 10000 rows and 4 variables
18+
19+
"DAT_df"
20+
NULL

R/datplot_funs.R

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

0 commit comments

Comments
 (0)