Skip to content

Commit

Permalink
Merge pull request #609 from tengguozheng/patch-2
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
lmeyerov authored Oct 30, 2024
2 parents e8ca2a5 + a14f9b8 commit ca4a80d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ df = pd.DataFrame({
g1 = graphistry.edges(df, 'src', 'dst')

# Override styling defaults
g1_styled = g1.encode_edge_color('friendship', as_continuous=True, ['blue', 'red'])
g1_styled = g1.encode_edge_color('friendship', ['blue', 'red'], as_continuous=True)

# Connect: Free GPU accounts and self-hosting @ graphistry.com/get-started
graphistry.register(api=3, username='your_username', password='your_password')
Expand Down

2 comments on commit ca4a80d

@tengguozheng
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you for the timely correction. Will this project later include a data ETL processing module? This could include, but not be limited to, a drag-and-drop canvas interface allowing users to customize data flows.

@lmeyerov
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Accelerated & streamlined ETL is very much a focus, eg, part of what gfql needs to wrangle, and what .featurize() does for data prep for ML operators

It's an interesting question what to do for easier interfaces:

  • we have been improving docs in prep for making an LLM text2code converter that does pygraphistry, gfql, etc better. OpenAI has already been crawling out examples, so appears to be working somewhat.

  • ... and via louie.ai, a conversational & point-and-click editor. It includes marble diagrams for flows, so it is somewhere between jupyter and nifi

Bringing ETL deeper in-tool for the UI is interesting. We are redoing the filter pipeline to sinplify in-viz pipelines, and hopefully then making the pipelines dynamic. At that point, in-viz ETL/connectors makes a lot of sense! Louie.ai will be doing the same from the outside in a more notebook flow.

Hope that helps , lmk if thoughts!

Please sign in to comment.