Skip to content

Commit

Permalink
Merge pull request #44 from philsf/release-0.6.1
Browse files Browse the repository at this point in the history
Release 0.6.1
  • Loading branch information
philsf authored Oct 5, 2018
2 parents 789abc7 + 51dca7c commit c8f3a7c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Package: philsfmisc
Type: Package
Title: philsf's miscellaneous R functions
Version: 0.6.0
Version: 0.6.1
Authors@R: person("Felipe", "Figueiredo", email = "[email protected]", role = c("aut", "cre"))
Description: Miscellaneous R functions for convenient data analyses.
License: GPL-2
License: file LICENSE
Encoding: UTF-8
LazyData: true
URL: https://github.com/philsf/philsfmisc
Expand Down
20 changes: 20 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# philsfmisc 0.6.1

- Styles updated #41
- Print the percent sign optionally in format.pct #40

# philsfmisc 0.6.0

# philsfmisc 0.5.1

# philsfmisc 0.5.0

# philsfmisc 0.4.0

# philsfmisc 0.3.0

# philsfmisc 0.2.1

# philsfmisc 0.2.0

# philsfmisc 0.1.0
2 changes: 1 addition & 1 deletion R/format.pct.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
format.pct <- function(p, digits = 1, pct.symbol = TRUE) {
format.pct <- function(p, digits = 1, pct.symbol = FALSE) {
symbol <- "%"
if (!pct.symbol) symbol <- NULL
paste0(format.float(p*100, digits), symbol)
Expand Down
Binary file modified inst/rmarkdown/templates/Relatorio/skeleton/misc/style.docx
Binary file not shown.

0 comments on commit c8f3a7c

Please sign in to comment.