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
From the igraph documentation on graph_from_data_frame, I think the graph you make from this call will only get directed edges of wb-X -> nex-Y but I don't think you get the nex-X -> wb-Y edges. The dataframe columns need to have the toID -> ID mappings appended to the ID -> toID mappings to create the fully connected graph before the DAG check is performed.
The text was updated successfully, but these errors were encountered:
What isn't clear is if network_list in the calling function has the nexus data available, or if that will require some refactoring to provide it to this function when called.
hydrofab/R/hyaggregate_utils.R
Line 95 in 78e8450
From the igraph documentation on graph_from_data_frame, I think the graph you make from this call will only get directed edges of
wb-X -> nex-Y
but I don't think you get thenex-X -> wb-Y
edges. The dataframe columns need to have thetoID -> ID
mappings appended to theID -> toID
mappings to create the fully connected graph before the DAG check is performed.The text was updated successfully, but these errors were encountered: