بنقرة واحدة
performing-centrality-analysis
当用户需要执行社会网络中心性分析,包括度中心性、接近中心性、介数中心性和特征向量中心性的计算和解释时使用此技能
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
当用户需要执行社会网络中心性分析,包括度中心性、接近中心性、介数中心性和特征向量中心性的计算和解释时使用此技能
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
行动者网络理论专家分析技能,整合参与者识别、网络分析和转译过程追踪功能,提供全面的ANT分析框架
当用户需要执行行动者网络理论分析,包括参与者识别、关系网络构建、转译过程追踪和网络动态分析时使用此技能
当用户需要检验扎根理论饱和度,包括新概念识别、范畴完善度、关系充分性和理论完整性评估时使用此技能
执行布迪厄场域分析,包括场域边界识别、资本分布分析、自主性评估和习性模式分析。当需要分析社会场域的结构、权力关系和文化资本时使用此技能。
扎根理论专家分析技能,整合开放编码、轴心编码、选择式编码、备忘录撰写和理论饱和度检验功能,提供完整的扎根理论分析框架
当用户需要执行扎根理论的轴心编码,包括范畴识别、属性维度分析、关系建立和Paradigm模型构建时使用此技能
| name | performing-centrality-analysis |
| description | 当用户需要执行社会网络中心性分析,包括度中心性、接近中心性、介数中心性和特征向量中心性的计算和解释时使用此技能 |
| version | 1.0.0 |
| author | socienceAI.com |
| tags | ["social-network-analysis","centrality-measures","network-analysis","graph-theory","node-importance"] |
识别网络中的关键节点,为中文社会科学研究提供网络结构和权力关系的量化分析。
Use this skill when the user requests:
When a user requests centrality analysis:
当用户提到以下需求时,使用此技能:
# 1. 计算所有中心性指标
python scripts/calculate_centrality.py \
--input network.json \
--output centrality.json
# 2. 按特定指标排序
python scripts/calculate_centrality.py \
--input network.json \
--metric betweenness \
--top 20
# 3. 识别关键节点
python scripts/identify_key_nodes.py \
--input centrality.json \
--output key_nodes.json
# 4. 比较不同中心性
python scripts/compare_centralities.py \
--input centrality.json \
--output comparison.json
# 5. 网络可视化
python scripts/visualize_centrality.py \
--input network.json \
--centrality centrality.json \
--output network_viz.png
使用预处理工具清洗网络数据:
python scripts/preprocess_network_data.py --input raw_data.json --output clean_network.json
关键要点:
详见:references/data-preparation.md
使用计算工具获得四种中心性指标:
python scripts/calculate_centrality.py --input clean_network.json --output centrality_measures.json
计算指标:
详见:references/centrality-theory.md
使用分类工具识别不同类型的节点:
python scripts/identify_key_nodes.py --input centrality_measures.json --output node_classifications.json
节点类型:
详见:references/node-classification.md
使用比较工具分析不同中心性指标的关系:
python scripts/compare_centralities.py --input centrality_measures.json --output comparison_report.json
比较维度:
详见:references/centrality-comparison.md
结合社会背景解释中心性结果:
详见:references/social-interpretation.md
统一的三层JSON格式:
{
"summary": {
"total_nodes": 50,
"total_edges": 120,
"network_density": 0.098,
"top_node": "节点A",
"hubs_count": 5,
"bridges_count": 3,
"influencers_count": 4
},
"details": {
"centralities": {
"degree": [...],
"closeness": [...],
"betweenness": [...],
"eigenvector": [...]
},
"top_nodes": [...],
"key_nodes": {
"hubs": [...],
"bridges": [...],
"influencers": [...]
}
},
"metadata": {
"timestamp": "2025-12-21T10:30:00",
"version": "1.0.0"
}
}
详见:references/output-format.md
在完成中心性分析后,请检查以下项目:
详见:references/quality-checklist.md
references/centrality-theory.md - 公式和算法references/chinese-network-characteristics.md - 关系网络特点references/case-studies.md - 完整分析案例references/troubleshooting.md - 问题诊断完成高质量的中心性分析应该:
此技能为中文社会科学研究提供全面的网络中心性分析支持,帮助研究者深入理解网络结构和权力关系。