lmeyerov
lmeyerov
Closing as this functionality is implemented in the Graphistry UI - you can screenshot/save visualizations directly from the browser interface. As discussed in the comments: - Right-click on the canvas...
@DataBoyTX any way to know if they have additional surprisingly named columns? we don't assume hard-coded names, so the issue is generally excess results, not missing...
elid is not a variable name in this repo so I don't know why it would collide, so I'm wondering if their data has more columns , and the bug...
This is fascinating, I think the actual issue is when the node id col matches one of the edge src/dst col names: ```python g = graphistry.nodes(df1, n).edges(df2, e1, e2) assert...
Yep that's it: ``` =================================== FAILURES =================================== ____________________________ test_hop_binding_reuse ____________________________ def test_hop_binding_reuse(): edges_df = pd.DataFrame({'s': ['a', 'b'], 'd': ['b', 'c']}) nodes1_df = pd.DataFrame({'v': ['a', 'b', 'c']}) nodes2_df = pd.DataFrame({'s': ['a',...
This can likely be solved through renaming src/dst col names during `.hop()` (see test in https://github.com/graphistry/pygraphistry/pull/623) . It's a bit tricky because predicates may use the original column name. I...
I think there are potentially a couple of diff issues here: * initial layout when setting `play=0` is still via FDL instead of passed in * race on loading, e.g.,...
@aucahuasi feels like the encodings loader bug @dess890 can you record some dataset/session id's so we can check otel etc?
Thanks @maksim-mihtech Any chance you can share the file of `df.sample(100).to_parquet('nodes.parquet')` ? cc @silkspace
Also, what versions of `python`, `dirty_cat` , `sci-kit`, and `pandas` are you on?