用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill h-index-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
正在显示 SKILL.md
| name | h-index-guide |
| description | Understanding and calculating research impact metrics |
| metadata | {"openclaw":{"emoji":"🏅","category":"literature","subcategory":"metadata","keywords":["h-index","impact factor","bibliometrics","academic metrics","citation statistics"],"source":"wentor-research-plugins"}} |
Understand, calculate, and responsibly interpret bibliometric indicators including h-index, impact factor, and related metrics.
The h-index (Hirsch index) is defined as: a researcher has an h-index of h if h of their papers have each been cited at least h times.
Example: If a researcher has published 20 papers with citation counts [120, 80, 55, 40, 22, 18, 15, 12, 10, 8, 5, 3, 2, 2, 1, 1, 0, 0, 0, 0], their h-index is 10 (10 papers with at least 10 citations each).
def calculate_h_index(citation_counts):
"""Calculate h-index from a list of citation counts."""
sorted_counts = sorted(citation_counts, reverse=True)
h = 0
for i, count in enumerate(sorted_counts):
if count >= i + 1:
h = i + 1
else:
break
return h
# Example
citations = [120, 80, 55, 40, 22, 18, 15, 12, 10, 8, 5, 3, 2, 2, 1, 1, 0, 0, 0, 0]
print(f"h-index: {calculate_h_index(citations)}") # Output: 10
| Metric | Definition | Advantage |
|---|---|---|
| h-index | h papers with >= h citations | Simple, robust to outliers |
| i10-index | Number of papers with >= 10 citations | Intuitive threshold (Google Scholar uses this) |
| g-index | Largest g such that top g papers have >= g^2 total citations | Rewards highly cited papers more |
| m-quotient | h-index divided by years since first publication | Normalizes for career length |
| hI-norm | h-index divided by average number of co-authors | Adjusts for team size |
def calculate_g_index(citation_counts):
"""Calculate g-index from citation counts."""
sorted_counts = sorted(citation_counts, reverse=True)
cumulative = 0
g = 0
for i, count in enumerate(sorted_counts):
cumulative += count
if cumulative >= (i + 1) ** 2:
g = i + 1
return g
def calculate_i10_index(citation_counts):
"""Calculate i10-index."""
return sum(1 for c in citation_counts if c >= 10)
print(f"g-index: {calculate_g_index(citations)}") # Output: 19
print(f"i10-index: {calculate_i10_index(citations)}") # Output: 10
Published annually by Clarivate in the Journal Citation Reports (JCR). The 2-year impact factor for year Y is:
JIF(Y) = (Citations in Y to articles published in Y-1 and Y-2)
/ (Number of citable items published in Y-1 and Y-2)
| Metric | Provider | Window | Notable Features |
|---|---|---|---|
| Impact Factor | Clarivate (JCR) | 2-year or 5-year | Gold standard, subscription only |
| CiteScore | Scopus (Elsevier) | 4-year | Free, includes all document types |
| SJR (Scimago) | Scopus data | 3-year | Weights citations by journal prestige (PageRank-like) |
| SNIP | Scopus data | 3-year | Normalizes for citation potential of each field |
| h5-index | Google Scholar | 5-year | Free, h-index applied to a journal |
import requests
# Using the OpenAlex API to get journal/source information
journal_name = "Nature"
response = requests.get(
"https://api.openalex.org/sources",
params={"filter": f"display_name.search:{journal_name}", "per_page": 5}
)
results = response.json()["results"]
for source in results:
print(f"Name: {source['display_name']}")
print(f" ISSN: {source.get('issn_l', 'N/A')}")
print(f" Works count: {source.get('works_count', 'N/A')}")
print(f" Cited by count: {source.get('cited_by_count', 'N/A')}")
print(f" h-index: {source.get('summary_stats', {}).get('h_index', 'N/A')}")
print(f" 2-year mean citedness: {source.get('summary_stats', {}).get('2yr_mean_citedness', 'N/A')}")
Google Scholar profiles automatically display h-index and i10-index. No calculation needed, but coverage is the broadest (includes non-peer-reviewed sources).
# OpenAlex provides h-index directly in author profiles
author_name = "Geoffrey Hinton"
response = requests.get(
"https://api.openalex.org/authors",
params={"filter": f"display_name.search:{author_name}", "per_page": 1}
)
author = response.json()["results"][0]
print(f"h-index: {author['summary_stats']['h_index']}")
print(f"i10-index: {author['summary_stats']['i10_index']}")
print(f"2-year mean citedness: {author['summary_stats']['2yr_mean_citedness']}")
The San Francisco Declaration on Research Assessment (DORA) recommends: