Skip to content

Commit

Permalink
Fix issue 31
Browse files Browse the repository at this point in the history
  • Loading branch information
sashahafner committed Jan 30, 2020
1 parent b690c86 commit 77df718
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: biogas
Type: Package
Title: Process Biogas Data and Predict Biogas Production
Version: 1.23.2
Version: 1.24.0
Date: 2020
Authors@R: c(person("Sasha D.", "Hafner", role = c("aut", "cre"), email = "sasha.hafner@eng.au.dk"), person("Charlotte", "Rennuit", role = "aut"), person("Camilla", "Justesen", role = "aut"), person("Nanna", "Lojborg", role = "aut"), person("Jacob", "Mortensen", role = "aut"), person("Sergi", "Astals", role = "ctb"), person("Konrad", "Koch", role = "ctb"), person("Soeren", "Weinrich", role = "ctb"), person("Jin Mi", "Triolo", role = "ctb"), person("Ali", "Heidarzadeh Vazifehkhoran", role = "ctb"))
Author: Sasha D. Hafner [aut, cre], Charlotte Rennuit [aut], Camilla Justesen [aut], Nanna Lojborg [aut], Jacob Mortensen [aut], Sergi Astals [ctb], Konrad Koch [ctb], Soeren Weinrich [ctb], Jin Mi Triolo [ctb], Ali Heidarzadeh Vazifehkhoran [ctb]
Expand Down
2 changes: 1 addition & 1 deletion R/summBg.R
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ summBg <- function(
names(summ1) <- c(id.name, time.name, vol.name)

# Sort, in order to find latest values
vol <- vol[order(vol[, id.name], vol[, vol.name]), ]
vol <- vol[order(vol[, id.name], vol[, time.name]), ]

for(i in ids) {
dc <- vol[vol[, id.name]==i, ]
Expand Down

0 comments on commit 77df718

Please sign in to comment.