-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #130 from LAPKB/v2_dev
Release 4.0.2
- Loading branch information
Showing
226 changed files
with
7,082 additions
and
2,170 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,68 @@ | ||
#' The following functions are deprecated in Pmetrics. | ||
#' | ||
#' | ||
#' | ||
#' | ||
#' @title Deprecated functions. | ||
#' @aliases PMcheckMatrix, PMfixMatrix, NPload, ITload, NPreport, ITreport, | ||
#' @aliases PMFortranConfig, PMcheckMatrix, PMfixMatrix, NPload, ITload, NPreport, ITreport, | ||
#' PMdiag, PMreadDefaults, PMwriteDefaults, makeNPDE, PMupdate | ||
#' @author Michael Neely | ||
#' @export | ||
|
||
#' @export | ||
PMFortranConfig <- function(...) { | ||
cat("\nPMFortranConfig is deprecated. Use setPMoptions instead to change the compilation arguments.\n") | ||
} | ||
|
||
|
||
PMcheckMatrix <- function(...){ | ||
#' @export | ||
PMcheckMatrix <- function(...) { | ||
cat("\nPMcheckMatrix is deprecated. Use PMcheck() instead to check data and model files.\n") | ||
} | ||
|
||
#' @export | ||
PMfixMatrix <- function(...){ | ||
PMfixMatrix <- function(...) { | ||
cat("\nPMfixMatrix is deprecated. Use PMcheck(...,fix=T) instead to fix data files.\n") | ||
} | ||
|
||
#' @export | ||
NPload <- function(...){ | ||
NPload <- function(...) { | ||
cat("\nNPload is deprecated. Use PMload() instead to load results of NPAG or IT2B runs.\n") | ||
} | ||
|
||
#' @export | ||
ITload <- function(...){ | ||
ITload <- function(...) { | ||
cat("\nITload is deprecated. Use PMload() instead to load results of NPAG or IT2B runs.\n") | ||
} | ||
|
||
#' @export | ||
NPreport <- function(...){ | ||
NPreport <- function(...) { | ||
cat("\nNPreport is deprecated. Use PMreport() instead to process completed NPAG or IT2B runs.\n") | ||
} | ||
|
||
#' @export | ||
ITreport <- function(...){ | ||
ITreport <- function(...) { | ||
cat("\nITreport is deprecated. Use PMreport() instead to process completed NPAG or IT2B runs.\n") | ||
} | ||
|
||
#' @export | ||
PMdiag <- function(...){ | ||
PMdiag <- function(...) { | ||
cat("\nPMdiag is deprecated. Use makeNPDE() instead to internally validate a model.\n") | ||
} | ||
|
||
#' @export | ||
PMreadDefaults <- function(...){ | ||
PMreadDefaults <- function(...) { | ||
cat("\nPMreadDefaults is deprecated. Use getPMoptions() instead to read Pmetrics options.\n") | ||
} | ||
|
||
#' @export | ||
PMwriteDefaults <- function(...){ | ||
PMwriteDefaults <- function(...) { | ||
cat("\nPMwriteDefaults is deprecated. Use setPMoptions() instead to set Pmetrics options.\n") | ||
} | ||
|
||
#' @export | ||
makeNPDE <- function(...){ | ||
makeNPDE <- function(...) { | ||
cat("\nmakeNPDE is deprecated. Use $validate() on a PM_result object or makeValid() instead.\n") | ||
} | ||
|
||
#' @export | ||
PMupdate <- function(...){ | ||
PMupdate <- function(...) { | ||
cat("\nPMupdate is deprecated. Please restart Rstudio and do not load Pmetrics. Then use the command devtools::install_github(\"LAPKB/Pmetrics\")") | ||
} | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.