cschwarz-stat-sfu-ca / BTSPAS

Bayesian Time Stratified Petersen Analysis System
1 stars 3 forks source link

Change T/F in function arguments to TRUE/FALSE #3

Closed cschwarz-stat-sfu-ca closed 5 years ago

cschwarz-stat-sfu-ca commented 5 years ago

The object 'T' and 'F' used as default for several arguments in several of the functions. This causes the check to produce a warning about possible global variables because R thinks that 'T' and 'F' may refer to complex objects and not simple boolean values. These should be changed to the full reserved words 'TRUE' and 'FALSE'.

Carried forward from Rforge

cschwarz-stat-sfu-ca commented 5 years ago

This seems to be fixed because R CMD check doesn't flag anymore occurrences.

Carl