-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaustraits-package.R
76 lines (71 loc) · 1.47 KB
/
austraits-package.R
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
# Importing the package that austraits depends on
#' @import RefManageR
# Recommendation by jennybc https://github.com/STAT545-UBC/Discussion/issues/451
## quiets concerns of R CMD check re: the .'s that appear in pipelines
if(getRversion() >= "2.15.1") utils::globalVariables(c(".", "dplyr::n()"))
.onAttach <- function(libname, pkgname) {
packageStartupMessage("Thanks for showing interest in `austraits`! Please consider citing this package - citation('austraits')")
}
#' @keywords internal
"_PACKAGE"
## usethis namespace: start
#' @importFrom lifecycle deprecated
## usethis namespace: end
NULL
utils::globalVariables(c(
"aus_traits",
"..density..",
"description",
".data",
"doi",
"given_name",
"Group",
"abort",
"australia",
"basis_of_value",
"category",
"colour",
"context",
"context_name",
"context_property",
"contributor",
"data",
"dataset_id",
"data_contributors",
"identifier",
"last_name",
"latitude (deg)",
"link_id",
"link_vals",
"location_id",
"location_name",
"location_property",
"location_properties",
"longitude (deg)",
"method_context_id",
"method_id",
"n",
"name",
"n_vals",
"n_value_type",
"observation_id",
"original_name",
"percent",
"percent_total",
"publication_date",
"repeat_measurements_id",
"relation_type",
"replicates",
"shapes",
"site_name",
"site_property",
"source_id",
"taxon_name",
"text",
"trait_name",
"value",
"value_type",
"x",
"y"
)
)