Skip to content

Commit

Permalink
Update versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbosak01 committed Apr 16, 2024
1 parent d2862d1 commit 75e2c90
Show file tree
Hide file tree
Showing 56 changed files with 77 additions and 1,497 deletions.
16 changes: 8 additions & 8 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: sassy
Type: Package
Title: Makes 'R' Easier for Everyone
Version: 1.2.3
Version: 1.2.4
Author: David J. Bosak
Maintainer: David Bosak <dbosak01@gmail.com>
Description: A meta-package that aims to make 'R' easier for everyone,
Expand All @@ -14,7 +14,7 @@ Description: A meta-package that aims to make 'R' easier for everyone,
License: CC0
Encoding: UTF-8
Depends: R (>= 3.6.0)
URL: https://r-sassy.org
URL: https://r-sassy.org, https://github.com/dbosak01/sassy
BugReports: https://github.com/dbosak01/sassy/issues
Suggests:
testthat (>= 3.0.0),
Expand All @@ -23,12 +23,12 @@ Suggests:
tidylog,
magrittr,
covr
Imports: fmtr(>= 1.6.2),
common(>= 1.1.0),
logr(>= 1.3.4),
libr(>= 1.2.8),
reporter(>= 1.4.3),
procs(>= 1.0.4),
Imports: fmtr(>= 1.6.3),
common(>= 1.1.3),
logr(>= 1.3.7),
libr(>= 1.3.2),
reporter(>= 1.4.4),
procs(>= 1.0.6),
datasets,
tools,
utils
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# sassy 1.2.4

* Added oq validation for `proc_reg()`.
* Updated required versions.


# sassy 1.2.3

* Added oq validation for `proc_ttest()`.
Expand Down
18 changes: 18 additions & 0 deletions R/oq.R
Original file line number Diff line number Diff line change
Expand Up @@ -828,6 +828,24 @@ check_procs <- function(opth) {

ret <- rbind(ret, tmp)

# Check for proc_reg() function
res <- proc_reg(dt, model = "mpg = disp",
options = "noprint")
tmp <- tmplt
tmp[1, "Description"] <- "proc_reg() function works as expected."
if (any(round(res$RMSE, 8) != 0.86251743) ||
any(round(res$Intercept, 6) != 23.631007) ||
any(round(res$disp, 8) != -0.01267212)) {
tmp[1, "Pass"] <- FALSE
tmp[1, "Message"] <- "proc_reg() function not working."
put("proc_reg() function check failed.")
} else {

put("proc_reg() function check passed.")
}

ret <- rbind(ret, tmp)

# Check proc transpose
res <- proc_transpose(dt)
tmp <- tmplt
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-ae.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-ae2.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-chgbase.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-disclaimers.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-dm.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-ds.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-faq.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-figure.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-figureby.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-forest.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-intext.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-listing.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-pfigure.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-plisting.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-profile.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-shift.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-survival.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/sassy-vs.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions docs/articles/sassy.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ articles:
sassy-survival: sassy-survival.html
sassy-vs: sassy-vs.html
sassy: sassy.html
last_built: 2024-02-07T01:57Z
last_built: 2024-04-16T17:59Z
urls:
reference: https://sassy.r-sassy.org/reference
article: https://sassy.r-sassy.org/articles
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/run_iq.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/run_oq.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion docs/reference/sassy.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions man/sassy.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 75e2c90

Please sign in to comment.