Skip to content

Commit

Permalink
updated default argument in plotLatLonDAG()
Browse files Browse the repository at this point in the history
  • Loading branch information
MNLR committed Jan 24, 2020
1 parent 8877a9a commit d23e2b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/plotLatLonDAG.R
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ plotLatLonDAG <- function(dbn, positions, no.colors = FALSE, no.labels = FALSE,
vertex.color=COL, vertex.label=NA, rescale=F,
edge.color = edge.color.pattern,
xlim=c(minx, maxx), ylim=c(miny, maxy),
xlab = xlab, ylab = ylab, asp=FALSE, axes = FALSE,
xlab = xlab, ylab = ylab, asp=FALSE, axes = axes,
edge.width = edge.width,
edge.arrow.size = edge.arrow.size)
} else { plot.igraph(a, layout=t(positions),
Expand All @@ -97,7 +97,7 @@ plotLatLonDAG <- function(dbn, positions, no.colors = FALSE, no.labels = FALSE,
rescale=F,
edge.color = edge.color.pattern,
xlim=c(minx, maxx), ylim=c(miny, maxy),
xlab = xlab, ylab = ylab, asp = FALSE , axes = FALSE,
xlab = xlab, ylab = ylab, asp = FALSE , axes = axes,
edge.width = edge.width, edge.arrow.size = edge.arrow.size)
}
}
Expand Down

0 comments on commit d23e2b3

Please sign in to comment.