Skip to content

Commit 90a24c9

Browse files
authored
Merge pull request #213 from easystats/cran_fix
Fix visualisation_recipe class issue
2 parents a71043f + 1e1deae commit 90a24c9

8 files changed

+22
-13
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: correlation
33
Title: Methods for Correlation Analysis
4-
Version: 0.7.0
4+
Version: 0.7.1
55
Authors@R:
66
c(person(given = "Dominique",
77
family = "Makowski",

NEWS.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# correlation 0.7.1
2+
3+
## Bug Fixes
4+
5+
- Bug fix in `plot()` methods
6+
17
# correlation 0.7.0
28

39
## Breaking Changes

R/visualisation_recipe.cor_test.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ visualisation_recipe.easycor_test <- function(x,
7070
}
7171

7272
# Out
73-
class(layers) <- c("visualisation_recipe", class(layers))
73+
class(layers) <- c("visualisation_recipe", "see_visualisation_recipe", class(layers))
7474
attr(layers, "data") <- data
7575
layers
7676
}

R/visualisation_recipe.easycormatrix.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ visualisation_recipe.easycormatrix <- function(x,
132132
layers[[paste0("l", l)]] <- .visualisation_easycormatrix_labs(labs)
133133

134134
# Out
135-
class(layers) <- c("visualisation_recipe", class(layers))
135+
class(layers) <- c("visualisation_recipe", "see_visualisation_recipe", class(layers))
136136
attr(layers, "data") <- data
137137
layers
138138

man/cor_smooth.Rd

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/cor_test.Rd

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/cor_to_p.Rd

+2-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/correlation.Rd

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)