Skip to content

Commit

Permalink
Fix bug on data type for bands
Browse files Browse the repository at this point in the history
  • Loading branch information
isaacfink21 committed Sep 5, 2021
1 parent 44a56ec commit 5d30ada
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/BiomeHorizon.R
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ horizonplot <- function(parameterList, aesthetics=horizonaes()) {
for(n in (-1*nbands+1):(nbands-1)) {
bands <- bands + (nums > n*bt)
}
bands <- bands-nbands
bands <- as.numeric(bands-nbands)

x <- numeric()
y <- numeric()
Expand Down

0 comments on commit 5d30ada

Please sign in to comment.