We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8561d63 + 870d0b2 commit 323f194Copy full SHA for 323f194
python-wrapper/src/neo4j_viz/pandas.py
@@ -74,7 +74,7 @@ def _parse_nodes(
74
has_size = True
75
nodes = []
76
for node_df in node_dfs_iter:
77
- has_size &= "size" in node_df.columns
+ has_size &= "size" in [c.lower() for c in node_df.columns]
78
for _, row in node_df.iterrows():
79
if dropna:
80
row = row.dropna(inplace=False)
0 commit comments