Skip to content

Commit

Permalink
functions reversed to old name
Browse files Browse the repository at this point in the history
  • Loading branch information
iramosgutierrez committed Jan 12, 2024
1 parent 8df7126 commit c718bb8
Show file tree
Hide file tree
Showing 30 changed files with 2,049 additions and 50 deletions.
6 changes: 3 additions & 3 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Generated by roxygen2: do not edit by hand

export(create_attendance_certificate)
export(create_badge)
export(create_certificate_attendance)
export(create_certificate_participation)
export(create_collection_label)
export(create_herbarium_label)
export(create_participation_certificate)
export(create_tiny_label)
export(create_tinylabel)
4 changes: 2 additions & 2 deletions R/certificate_attendance.R
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
#'
#' @examplesIf interactive()
#'
#' create_attendance_certificate(
#' create_certificate_attendance(
#' data = attendance.table,
#' path = "labeleR_output",
#' language = "English",
Expand All @@ -52,7 +52,7 @@
#' )


create_attendance_certificate <- function(
create_certificate_attendance <- function(
data = NULL,
path = NULL,
filename = NULL,
Expand Down
4 changes: 2 additions & 2 deletions R/certificate_participation.R
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#'
#' @examplesIf interactive()
#
#' create_participation_certificate(
#' create_certificate_participation(
#' data = participation.table,
#' path = "labeleR_output",
#' language = "Spanish",
Expand All @@ -59,7 +59,7 @@
#' signature.pic = NULL
#' )

create_participation_certificate <- function(
create_certificate_participation <- function(
data = NULL,
path = NULL,
filename = NULL,
Expand Down
4 changes: 2 additions & 2 deletions R/tiny_label.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#' @author Ignacio Ramos-Gutierrez, Julia G. de Aledo, Francisco Rodriguez-Sanchez
#'
#' @examplesIf interactive()
#' create_tiny_label(
#' create_tinylabel(
#' data = tiny.table,
#' qr = "QR_code",
#' path = "labeleR_output",
Expand All @@ -40,7 +40,7 @@
#' )
#'

create_tiny_label <- function(data = NULL,
create_tinylabel <- function(data = NULL,
qr = NULL,
path = NULL,
filename = NULL,
Expand Down
8 changes: 4 additions & 4 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ information is stored, two-word parameters are used (i.e. `name.column`
or `species.column`). The only parameter that does not follow this
philosophy is `qr` in the functions that allow to plot them (i.e.
`create_herbarium_label`, `create_collection_label` and
`create_tiny_label`). This parameter can be set as a column name, which
`create_tinylabel`). This parameter can be set as a column name, which
will result in variable parameter, or as a free text (not column name),
which will be used as a fixed one.

Expand Down Expand Up @@ -167,7 +167,7 @@ of Hogwarts School, in which the Headmaster certifies they have attended

```{r create attendance certificates, eval=FALSE}
create_attendance_certificate(
create_certificate_attendance(
data = attendance.table,
path = "labeleR_output",
filename = "attendance_certificates",
Expand Down Expand Up @@ -214,7 +214,7 @@ participated in some seminars with different titles, different
affiliations, dates and communication types.

```{r create participation certificates, eval=FALSE}
create_participation_certificate(
create_certificate_participation(
data = participation.table,
path = "labeleR_output",
filename = "participation_certificates",
Expand Down Expand Up @@ -405,7 +405,7 @@ Here, tinylabels are created for typical collections stored in boxes, so
a normal collection label would be to big.

```{r tinylabels, eval=FALSE}
create_tiny_label(
create_tinylabel(
data = tiny.table,
qr="QR_code",
path = "labeleR_output",
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ of Hogwarts School, in which the Headmaster certifies they have attended

``` r

create_attendance_certificate(
create_certificate_attendance(
data = attendance.table,
path = "labeleR_output",
filename = "attendance_certificates",
Expand Down Expand Up @@ -197,7 +197,7 @@ participated in some seminars with different titles, different
affiliations, dates and communication types.

``` r
create_participation_certificate(
create_certificate_participation(
data = participation.table,
path = "labeleR_output",
filename = "participation_certificates",
Expand Down
10 changes: 5 additions & 5 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ pandoc: 2.19.2
pkgdown: 2.0.7
pkgdown_sha: ~
articles: {}
last_built: 2024-01-12T12:42Z
last_built: 2024-01-12T13:00Z

Binary file added docs/reference/Rplot001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
90 changes: 90 additions & 0 deletions docs/reference/attendance.table.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c718bb8

Please sign in to comment.