-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added optional keyword parameter to gplot for plotting Chain Graphs #110
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,7 +1,24 @@ | ||||||||||||||||||||||||||||
function hasReverseEdge(g, e) | ||||||||||||||||||||||||||||
return has_edge(g,dst(e),src(e)) | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
function filterUndef(array) | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
or Reason is, that when one uses the |
||||||||||||||||||||||||||||
result = [] | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||
for i in 1:length(array) | ||||||||||||||||||||||||||||
if isassigned(array,i) | ||||||||||||||||||||||||||||
if result == [] | ||||||||||||||||||||||||||||
result = typeof(array[i])[] | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
Comment on lines
+9
to
+11
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
We can remove this as we can already initialize the list correctly above. |
||||||||||||||||||||||||||||
push!(result,array[i]) | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
return result | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||
Return lines and arrow heads | ||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||
function graphline(g, locs_x, locs_y, nodesize::Vector{T}, arrowlength, angleoffset) where {T<:Real} | ||||||||||||||||||||||||||||
function graphline(g, locs_x, locs_y, nodesize::Vector{T}, arrowlength, angleoffset, chainGraph) where {T<:Real} | ||||||||||||||||||||||||||||
lines = Array{Vector{Tuple{Float64,Float64}}}(undef, ne(g)) | ||||||||||||||||||||||||||||
arrows = Array{Vector{Tuple{Float64,Float64}}}(undef, ne(g)) | ||||||||||||||||||||||||||||
for (e_idx, e) in enumerate(edges(g)) | ||||||||||||||||||||||||||||
|
@@ -15,13 +32,21 @@ function graphline(g, locs_x, locs_y, nodesize::Vector{T}, arrowlength, angleoff | |||||||||||||||||||||||||||
endx = locs_x[j] + nodesize[j]*cos(θ+π) | ||||||||||||||||||||||||||||
endy = locs_y[j] + nodesize[j]*sin(θ+π) | ||||||||||||||||||||||||||||
lines[e_idx] = [(startx, starty), (endx, endy)] | ||||||||||||||||||||||||||||
arr1, arr2 = arrowcoords(θ, endx, endy, arrowlength, angleoffset) | ||||||||||||||||||||||||||||
arrows[e_idx] = [arr1, (endx, endy), arr2] | ||||||||||||||||||||||||||||
if chainGraph | ||||||||||||||||||||||||||||
if !hasReverseEdge(g,e) | ||||||||||||||||||||||||||||
arr1, arr2 = arrowcoords(θ, endx, endy, arrowlength, angleoffset) | ||||||||||||||||||||||||||||
arrows[e_idx] = [arr1, (endx, endy), arr2] | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||
arr1, arr2 = arrowcoords(θ, endx, endy, arrowlength, angleoffset) | ||||||||||||||||||||||||||||
arrows[e_idx] = [arr1, (endx, endy), arr2] | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
Comment on lines
+35
to
+43
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
arrows = chainGraph ? filterUndef(arrows) : arrows | ||||||||||||||||||||||||||||
lines, arrows | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
function graphline(g::AbstractGraph{T}, locs_x, locs_y, nodesize::Real, arrowlength, angleoffset) where {T<:Integer} | ||||||||||||||||||||||||||||
function graphline(g::AbstractGraph{T}, locs_x, locs_y, nodesize::Real, arrowlength, angleoffset, chainGraph) where {T<:Integer} | ||||||||||||||||||||||||||||
lines = Array{Vector{Tuple{Float64,Float64}}}(undef, ne(g)) | ||||||||||||||||||||||||||||
arrows = Array{Vector{Tuple{Float64,Float64}}}(undef, ne(g)) | ||||||||||||||||||||||||||||
for (e_idx, e) in enumerate(edges(g)) | ||||||||||||||||||||||||||||
|
@@ -35,9 +60,17 @@ function graphline(g::AbstractGraph{T}, locs_x, locs_y, nodesize::Real, arrowlen | |||||||||||||||||||||||||||
endx = locs_x[j] + nodesize*cos(θ+π) | ||||||||||||||||||||||||||||
endy = locs_y[j] + nodesize*sin(θ+π) | ||||||||||||||||||||||||||||
lines[e_idx] = [(startx, starty), (endx, endy)] | ||||||||||||||||||||||||||||
arr1, arr2 = arrowcoords(θ, endx, endy, arrowlength, angleoffset) | ||||||||||||||||||||||||||||
arrows[e_idx] = [arr1, (endx, endy), arr2] | ||||||||||||||||||||||||||||
if chainGraph | ||||||||||||||||||||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You seem to have used tabs here. For consistency with the rest of the project we should spaces instead. |
||||||||||||||||||||||||||||
if !hasReverseEdge(g,e) | ||||||||||||||||||||||||||||
arr1, arr2 = arrowcoords(θ, endx, endy, arrowlength, angleoffset) | ||||||||||||||||||||||||||||
arrows[e_idx] = [arr1, (endx, endy), arr2] | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
else | ||||||||||||||||||||||||||||
arr1, arr2 = arrowcoords(θ, endx, endy, arrowlength, angleoffset) | ||||||||||||||||||||||||||||
arrows[e_idx] = [arr1, (endx, endy), arr2] | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
arrows = chainGraph ? filterUndef(arrows) : arrows | ||||||||||||||||||||||||||||
lines, arrows | ||||||||||||||||||||||||||||
end | ||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.