-
Notifications
You must be signed in to change notification settings - Fork 0
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
5 changed files
with
60 additions
and
2 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,14 +1,15 @@ | ||
Package: philsfmisc | ||
Type: Package | ||
Title: philsf's miscellaneous R functions | ||
Version: 0.6.5.9000 | ||
Version: 0.6.5.9001 | ||
Authors@R: person("Felipe", "Figueiredo", email = "[email protected]", role = c("aut", "cre")) | ||
Description: Miscellaneous R functions for convenient data analyses. | ||
License: file LICENSE | ||
Encoding: UTF-8 | ||
LazyData: true | ||
URL: https://github.com/philsf/philsfmisc | ||
Depends: R (>= 3.3.0) | ||
RoxygenNote: 7.1.1 | ||
RoxygenNote: 7.1.2 | ||
Imports: | ||
ggplot2, | ||
stringr |
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,5 +1,7 @@ | ||
# philsfmisc (development version) | ||
|
||
- created ggplot2 theme_ff() #73 | ||
|
||
# philsfmisc 0.6.5 | ||
|
||
- New template: SAP #63 | ||
|
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#' @title FUNCTION_TITLE | ||
#' @description FUNCTION_DESCRIPTION | ||
#' @param ... PARAM_DESCRIPTION | ||
#' @return OUTPUT_DESCRIPTION | ||
#' @details DETAILS | ||
#' @examples | ||
#' \dontrun{ | ||
#' if(interactive()){ | ||
#' #EXAMPLE1 | ||
#' } | ||
#' } | ||
#' @seealso | ||
#' \code{\link[ggplot2]{ggtheme}} | ||
#' @rdname theme_ff | ||
#' @export | ||
#' @importFrom ggplot2 theme_classic | ||
theme_ff <- function(...) { | ||
ggplot2::theme_classic( | ||
..., | ||
) %+replace% theme( | ||
legend.position = "top", | ||
) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.