Skip to content

Commit

Permalink
Merge pull request #56 from EcologyR/cran2
Browse files Browse the repository at this point in the history
First release after examples
  • Loading branch information
juliagdealedo committed Jan 11, 2024
2 parents 8bc9c88 + 24a671e commit c85b8a6
Show file tree
Hide file tree
Showing 14 changed files with 7 additions and 518 deletions.
2 changes: 1 addition & 1 deletion R/certificate_attendance.R
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ create_certificate_attendance <- function(

data <- as.data.frame(data) ## to exploit drop = TRUE when selecting cols below

for (i in 1:nrow(data)) {
for (i in seq_along(nrow(data))) {
out.name <- filename
out.name <- paste0(out.name, "_", data[i, name.column])
output_file <- paste0(out.name, '.pdf')
Expand Down
2 changes: 1 addition & 1 deletion R/certificate_participation.R
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ create_certificate_participation <- function(

data <- as.data.frame(data) ## to exploit drop = TRUE when selecting cols below

for (i in 1:nrow(data)) {
for (i in seq_along(nrow(data))) {
out.name <- filename
out.name <- paste0(out.name, "_", data[i, name.column], "_",
gsub("/","-", data[i, date.column]))
Expand Down
2 changes: 1 addition & 1 deletion R/herbarium.R
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ create_herbarium_label <- function(data = data,
data <- as.data.frame(data) ## to exploit drop = TRUE when selecting cols below
bl.char <- rep("~", times = nrow(data))

for (i in 1:ncol(data)) {
for (i in seq_along(nrow(data))) {
data[is.na(data[,i]), i] <- "~"
}

Expand Down
Binary file removed docs/reference/Rplot001.png
Binary file not shown.
98 changes: 0 additions & 98 deletions docs/reference/exampledata.html

This file was deleted.

Binary file removed docs/reference/make_scatterplot-1.png
Binary file not shown.
100 changes: 0 additions & 100 deletions docs/reference/make_scatterplot.html

This file was deleted.

Loading

0 comments on commit c85b8a6

Please sign in to comment.