Skip to content

Commit

Permalink
ymax fix in RCall plot
Browse files Browse the repository at this point in the history
  • Loading branch information
cecileane committed Apr 5, 2018
1 parent 7a84874 commit 1ca033c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plotRCall.jl
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ function plot(net::HybridNetwork, method::Symbol; useEdgeLength=false::Bool,
xmin=xlim[1]; xmax=xlim[2]
end
if length(ylim)==2
ymin=ylim[1]; xmax=ylim[2]
ymin=ylim[1]; ymax=ylim[2]
end
leaves = [n.leaf for n in net.node]
eCol = fill(edgeColor, length(net.edge))
Expand Down

0 comments on commit 1ca033c

Please sign in to comment.