-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
156 additions
and
87 deletions.
There are no files selected for viewing
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,6 +1,17 @@ | ||
linters: with_defaults(object_name_linter = NULL, | ||
object_length_linter(40), | ||
commented_code_linter = NULL, | ||
object_usage_linter = NULL, | ||
line_length_linter(120), | ||
cyclocomp_linter = cyclocomp_linter(20)) | ||
linters: linters_with_defaults( | ||
absolute_path_linter = NULL, | ||
commented_code_linter = NULL, | ||
cyclocomp_linter = cyclocomp_linter(25), | ||
extraction_operator_linter = NULL, | ||
implicit_integer_linter = NULL, | ||
line_length_linter(120), | ||
namespace_linter = NULL, | ||
nonportable_path_linter = NULL, | ||
object_name_linter = NULL, | ||
object_length_linter(50), | ||
object_usage_linter = NULL, | ||
todo_comment_linter = NULL, | ||
undesirable_function_linter(c("mapply" = NA, "sapply" = NA, "setwd" = NA)), | ||
undesirable_operator_linter = NULL, | ||
defaults = linters_with_tags(tags = NULL) | ||
) |
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 |
---|---|---|
|
@@ -2,21 +2,21 @@ Package: sjPlot | |
Type: Package | ||
Encoding: UTF-8 | ||
Title: Data Visualization for Statistics in Social Science | ||
Version: 2.8.13.1 | ||
Version: 2.8.16.2 | ||
Authors@R: c( | ||
person("Daniel", "Lüdecke", email = "[email protected]", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-8895-3206")), | ||
person("Alexander", "Bartel", role = "ctb", comment = c(ORCID = "0000-0002-1280-6138")), | ||
person("Carsten", "Schwemmer", email = "[email protected]", role = "ctb"), | ||
person(given = "Chuck", family = "Powell", role = "ctb", email = "[email protected]", comment = c(ORCID = "0000-0002-3606-2188")), | ||
person(given = "Chuck", family = "Powell", role = "ctb", email = "[email protected]", comment = c(ORCID = "0000-0002-3606-2188")), | ||
person(given = "Amir", family = "Djalovski", role = "ctb", email = "[email protected]"), | ||
person(given = "Johannes", family = "Titz", role = "ctb", email = "[email protected]", comment = c(ORCID = "0000-0002-1102-5719"))) | ||
Maintainer: Daniel Lüdecke <[email protected]> | ||
Description: Collection of plotting and table output functions for data | ||
visualization. Results of various statistical analyses (that are commonly used | ||
in social sciences) can be visualized using this package, including simple and | ||
cross tabulated frequencies, histograms, box plots, (generalized) linear models, | ||
mixed effects models, principal component analysis and correlation matrices, | ||
cluster analyses, scatter plots, stacked scales, effects plots of regression | ||
mixed effects models, principal component analysis and correlation matrices, | ||
cluster analyses, scatter plots, stacked scales, effects plots of regression | ||
models (including interaction terms) and much more. This package supports | ||
labelled data. | ||
License: GPL-3 | ||
|
@@ -30,7 +30,6 @@ Imports: | |
bayestestR, | ||
datawizard, | ||
dplyr, | ||
effectsize, | ||
ggeffects, | ||
ggplot2 (>= 3.2.0), | ||
knitr, | ||
|
@@ -52,6 +51,7 @@ Suggests: | |
clubSandwich, | ||
cluster, | ||
cowplot, | ||
effects, | ||
haven, | ||
GPArotation, | ||
ggrepel, | ||
|
@@ -71,5 +71,5 @@ Suggests: | |
testthat | ||
URL: https://strengejacke.github.io/sjPlot/ | ||
BugReports: https://github.com/strengejacke/sjPlot/issues | ||
RoxygenNote: 7.2.3 | ||
RoxygenNote: 7.3.1 | ||
VignetteBuilder: knitr |
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
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
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
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
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
Oops, something went wrong.