Dask
Dask is a Python library for parallel and distributed computing that enables three critical capabilities: - **Larger-than-memory execution**…
Maintainer K-Dense Inc. · Last updated March 31, 2026
NetworkX is a Python package for creating, manipulating, and analy.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/networkx
Skill Snapshot
Source Doc
Invoke this skill when tasks involve:
NetworkX supports four main graph types:
Create graphs by:
import networkx as nx
## Add edges
G.add_edge(1, 2)
G.add_edges_from([(1, 3), (2, 4)])
G.add_edge(1, 4, weight=0.8, relation='interacts')
Reference: See references/graph-basics.md for comprehensive guidance on creating, modifying, examining, and managing graph structures, including working with attributes and subgraphs.
Related skills
Dask is a Python library for parallel and distributed computing that enables three critical capabilities: - **Larger-than-memory execution**…
Perform comprehensive exploratory data analysis (EDA) on scientific data files across multiple domains. This skill provides automated file t…
Comprehensive geospatial science skill covering GIS, remote sensing, spatial analysis, and ML for Earth observation across 70+ topics with 5…
GeoPandas extends pandas to enable spatial operations on geometric types. It combines the capabilities of pandas and shapely for geospatial…