Skip to content

Commit

Permalink
#11 Modif effectuée
Browse files Browse the repository at this point in the history
  • Loading branch information
JulienBretteville committed Aug 9, 2019
1 parent c031716 commit 3c5f4aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/getMaxImportExport.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ getMaxImportExport <- function(domainesFB) {
colnames(dtmaxReal) <- paste0("ValueMaxReal", colnames(dtmaxReal))
colnames(dtminReal) <- paste0("ValueMinReal", colnames(dtminReal))

dtmaxDiff <- abs(dtmaxModel-dtmaxReal)
dtminDiff <- abs(dtminModel-dtminReal)
dtmaxDiff <- dtmaxModel-dtmaxReal
dtminDiff <- dtminReal-dtminModel

colnames(dtmaxDiff) <- paste0("DiffMaxModelReal", colnames(dtmaxDiff))
colnames(dtminDiff) <- paste0("DiffMinModelReal", colnames(dtminDiff))
Expand Down

0 comments on commit 3c5f4aa

Please sign in to comment.