You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that the complete_forceatlas2 function does not accept overlap.method ="expand". I debugged the issue and I found out that there is a small typo in the if statement in the complete_forceatlas2 as follows:
This condition:
else if(overlap_method == "expand")
G <- adaptive_expand(G, overlap.iter)
need to be modified to:
else if(overlap.method == "expand")
G <- adaptive_expand(G, overlap.iter)
Thanks,
Ghaith,
The text was updated successfully, but these errors were encountered:
ghaithcode
changed the title
Bu report - complete_forceatlas2test - overlap_method
Bug report - complete_forceatlas2test - overlap_method
Mar 13, 2019
Hello,
I noticed that the complete_forceatlas2 function does not accept overlap.method ="expand". I debugged the issue and I found out that there is a small typo in the if statement in the complete_forceatlas2 as follows:
This condition:
need to be modified to:
Thanks,
Ghaith,
The text was updated successfully, but these errors were encountered: