Closed Feakster closed 1 year ago
Forgot to add to the PR the reason for making the PR. I was trying to address some masking problems causes by whole package imports (as opposed to just importing individual functions from packages). The mcmcr warning message on package load was a result of this.
Amazing, thank you!!
GENERAL
^\.git
,^\.github
and^README\.md$
, and removed patterns for^Meta
.roxygen2::roxygenise()
.DESCRIPTION
Authors@R
vector and removed thec()
wrapper from the 'role' field of authors with one role.URL
andBugReports
fields.>= 3.6.1
in theDepends
field, as all other core packages listed inSuggests
have their minimum versions set to>=3.6.1
.Depends
toImports
.Imports
in alphabetical order and added coda to the list.Suggests
section as these are not required by the end user.License_is_FOSSS
&License_restricts_use
fields to helpavailable.packages()
filters identify the type of license being used.NAMESPACE
R/
inherits()
to remove the notes triggered bydevtools::check()
.'data'
,'offset'
'sd'
to the list ofglobalVariables()
. These were previously listed as being imports from the stats and utils packages, but these functions are not used within BUGSnet. Instead, they are probably a result of tidyverse non-standard evaluation. Hence, what I've done is just a different bodge from the previous import bodge.@importFrom
definitions by moving them from the BUGSnet-package.R script to the roxygen2 headers of the individual functions where they are used. This helps identify redundant/missing imports.@title
field to all roxygen2 headers and made use of line breaks to help readability of the roxygen2 headers.@export
or@noRd
to all defined functions.man/
inst/CITATION
number
parameter and addedpages
anddoi
parameters.}
in the title.\
in the lead author's name.textVersion
. It was only present for some before.citHeader()
function and added the text to theheader
field of thebibentry()
function. This is now the preferred method of generating header text.bugsnet-package
).