-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' # Conflicts: # R/insert_worksheet.R # R/quickXLSX.R # R/splitXLSX.R # README.md
- Loading branch information
Showing
177 changed files
with
13,273 additions
and
773 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,2 +1,7 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ | ||
^LICENSE\.md$ | ||
^pkgdown$ | ||
^docs$ | ||
^man-roxygen$ | ||
^index\.html$ |
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,20 +1,32 @@ | ||
Package: statR | ||
Title: statR | ||
Version: 0.0.0.9000 | ||
Version: 2.0.0 | ||
Authors@R: as.person(c( | ||
"Andrea Schnell <[email protected]> [aut]", | ||
"Thomas Lo Russo <[email protected]> [aut,cre]")) | ||
Description: statR bundles a variety of functions that allow to generate ready-to-publish plots (ggplot2-theme & colorpalettes) as well as saving data in formated excel-tables. The generated outputs are aligned with the corporate design of the Canton Zurich. | ||
"Thomas Lo Russo <[email protected]> [aut,cre]", | ||
"Michelle Donzallaz <[email protected]> [ctb]")) | ||
Description: statR beinhaltet eine Reihe von Funktionen mit denen unter anderem publikationsfertige Visualisierungen (mittels ggplot2-themes und Farbpaletten) und formatierte Excel-Tabellen erstellt werden können. Die generierten Visualisierungen und Tabellen sind an das Corporate Design des Kantons Zürich angepasst. | ||
Depends: R (>= 3.3.0) | ||
License: What license is it under? | ||
License: GPL-3 | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 6.0.1 | ||
RoxygenNote: 7.1.1 | ||
Imports: | ||
dplyr, | ||
ggrepel, | ||
ggplot2, | ||
openxlsx, | ||
magrittr | ||
openxlsx, | ||
magrittr, | ||
stats, | ||
grDevices, | ||
RColorBrewer, | ||
gridExtra, | ||
rlang, | ||
scales, | ||
stringr, | ||
tidyr, | ||
dichromat, | ||
purrr | ||
URL: https://statistikzh.github.io/statR/ | ||
BugReports: https://github.com/statistikZH/statR/issues | ||
Suggests: | ||
|
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,29 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
export(datasetsXLSX) | ||
export(display) | ||
export(display.statcol.all) | ||
export(insert_worksheet) | ||
export(interpolate2) | ||
export(quickXLSX) | ||
export(quick_sum) | ||
export(splitXLSX) | ||
export(stattheme_data) | ||
export(theme_stat) | ||
export(zhpal) | ||
importFrom(dplyr,"%>%") | ||
importFrom(dplyr,group_by) | ||
importFrom(dplyr,n) | ||
importFrom(dplyr,summarize) | ||
importFrom(dplyr,ungroup) | ||
importFrom(ggplot2,continuous_scale) | ||
importFrom(ggplot2,element_blank) | ||
importFrom(ggplot2,element_line) | ||
importFrom(ggplot2,ggplotGrob) | ||
importFrom(ggplot2,theme) | ||
importFrom(ggplot2,theme_minimal) | ||
importFrom(ggplot2,unit) | ||
importFrom(grDevices,"colorRampPalette") | ||
importFrom(graphics,"rect") | ||
importFrom(stats,median) | ||
importFrom(stats,quantile) | ||
importFrom(stats,sd) |
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,8 @@ | ||
# statR 2.0.0 | ||
|
||
* An R Markdown template `ZH report` for .html-reports is now available. | ||
* New function `datasetsXLSX()`: several datasets and/or figures can now be exported from R to a single .xlsx-file. The function creates an overview sheet and separate sheets for each dataset/figure. | ||
* Additional function arguments for `quickXLSX()`, `splitXLSX()`, and `datasetsXLSX()` have been implemented, for example the author's initials and individual contact details can be specified and the logo of the canton of Zurich can be added. | ||
* The column widths in the output of `quickXLSX()`, `splitXLSX()`, and `datasetsXLSX()` are set automatically and the first row no longer freezes. | ||
* The documentation has been extended. | ||
* `theme_stat()` has been revised and a couple of theme arguments have been added for increased flexibility (e.g., axis ticks, position of axis labels) |
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.