Skip to content

Commit

Permalink
reorder columns
Browse files Browse the repository at this point in the history
  • Loading branch information
camillegiuliano committed Oct 2, 2024
1 parent 1ab68c4 commit a0eb1cb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions R/spadesCBMextraFunctions.R
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ spuDist <- function(mySpu, dbPath) {
englishTable <- englishTable[,c(2,5)]
# add the descriptive names
spuDist <- merge(dmid, englishTable, by = "disturbance_matrix_id")
spuDist <- spuDist[,c(2, 1, 3, 4)]
return(spuDist)
}

Expand Down

1 comment on commit a0eb1cb

@camillegiuliano
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This edit is in the spuDist function in the spadesCBMextraFunctions.R file

Please sign in to comment.