pygraphistry-ai

Doc routing (local + canonical)

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "pygraphistry-ai" with this command: npx skills add graphistry/graphistry-skills/graphistry-graphistry-skills-pygraphistry-ai

PyGraphistry AI

Doc routing (local + canonical)

  • First route with ../pygraphistry/references/pygraphistry-readthedocs-toc.md .

  • Use ../pygraphistry/references/pygraphistry-readthedocs-top-level.tsv for section-level shortcuts.

  • Only scan ../pygraphistry/references/pygraphistry-readthedocs-sitemap.xml when a needed page is missing.

  • Use one batched discovery read before deep-page reads; avoid cat * and serial micro-reads.

  • In user-facing answers, prefer canonical https://pygraphistry.readthedocs.io/en/latest/... links.

Typical workflow

  • Build graph from nodes/edges.

  • Run feature/embedding method (umap , embed , optional dbscan ).

  • Inspect derived columns/features and visualize.

  • Iterate on feature columns and sampling strategy.

Baseline examples

Similarity embedding / projection

g2 = graphistry.nodes(df, 'id').umap(X=['f1', 'f2', 'f3']) g2.plot()

Fit/transform flow for consistent projection on new batches

g_train = graphistry.nodes(df_train, 'id').umap(X=['f1', 'f2']) g_batch = g_train.transform_umap(df_batch, return_graph=True) g_batch.plot()

Semantic search over embedded features

g2 = graphistry.nodes(df, 'id').umap(X=['text_col']) results_df, query_vector = g2.search('suspicious login pattern')

Text-first workflow: featurize then search/cluster

g2 = graphistry.nodes(df, 'id').featurize(kind='nodes', X=['title', 'body']).umap(kind='nodes').dbscan() hits, qv = g2.search('credential stuffing campaign')

Precomputed embedding columns

embedding_cols = [c for c in df.columns if c.startswith('emb_')] g2 = graphistry.nodes(df, 'id').umap(X=embedding_cols) g_new = g2.transform_umap(df_new, return_graph=True)

Practical guardrails

  • Start with small/representative samples before full runs.

  • Keep explicit feature lists (X=... ) for reproducibility.

  • Track engine/dataframe type for CPU vs GPU behavior.

  • For anomaly workflows, document thresholds and false-positive assumptions.

  • For graph ML tasks, route deeper model workflows to RGCN/link-prediction references.

  • For text workflows, prefer featurize(...).umap(...).search(...) when queries are natural language.

  • If users already have embeddings, reuse them via explicit embedding column lists (X=[...] ) before recomputing.

  • When user asks for a concise workflow snippet, prefer one short code block and avoid long narrative wrappers.

Canonical docs

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

pygraphistry-visualization

No summary provided by upstream source.

Repository SourceNeeds Review
General

pygraphistry-connectors

No summary provided by upstream source.

Repository SourceNeeds Review
General

pygraphistry

No summary provided by upstream source.

Repository SourceNeeds Review
General

pygraphistry-gfql

No summary provided by upstream source.

Repository SourceNeeds Review