文献计量分析

Cleans bibliographic datasets and detects keyword bursts for CiteSpace-ready WoS exports.

Updated May 18, 2026
One-click install
npx skills add https://github.com/heyixue511-creator/ai --skill skill-heyixue511-creator
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: 文献计量分析
Source: https://github.com/heyixue511-creator/ai/tree/main/My-Own-Skills-main/%E6%96%87%E7%8C%AE%E8%AE%A1%E9%87%8F%E5%88%86%E6%9E%90%E6%8A%80%E8%83%BD
Command: npx skills add https://github.com/heyixue511-creator/ai --skill skill-heyixue511-creator

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Bibliographic exports from WoS, CNKI, Scopus, and PubMed contain noise from wildcard overflow, cross-language homographs, and weakly related records, which distorts bibliometric statistics and CiteSpace visualizations. This Skill provides a 16-stage pipeline that semantically cleans literature datasets, maintains a traceable mapping table, and exports analysis-ready files. ## Core Features & Use Cases - Semantic Noise Cleaning: Detects source platform and format, builds a mapping table as the single operation hub, and judges each record through a three-layer noise model (word-form, topic, boundary) with iterative multi-round refinement. - Quality Assurance Loop: Learns from manual review decisions, maintains a reusable noise pattern library, detects duplicates, and runs a six-dimension critical audit comparing expected versus actual noise rates. - Analysis & Export: Exports cleaned data in original WoS plain text format for direct CiteSpace import, plus keyword burst detection (Kleinberg algorithm), basic statistics, and network pruning references (Pathfinder, MST). - Use Case: A researcher exports 5,000 records from WoS using a wildcard query like meme*, then uses this Skill to remove homograph noise (memetic algorithms, French même), deduplicate records, audit cleaning quality, and produce a burst-analysis-ready dataset. ## Quick Start Start cleaning my exported literature file by detecting its source platform and building the mapping table for semantic noise removal.

Frequently Asked Questions about 文献计量分析

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I clean noise from Web of Science export files?▼

Provide the exported WoS plain text file and the pipeline detects the source format, builds a mapping table, then judges each record semantically across multiple rounds. Noise from wildcard overflow and cross-language homographs is removed iteratively until the noise density falls below threshold.

How to detect keyword bursts in bibliographic data?▼

Run the burst detection script on the cleaned WoS file, which extracts PY, DE, and ID fields and applies a simplified Kleinberg two-state automaton. It outputs burst strength, time intervals, and a CSV of emerging keywords ranked by strength.

Can cleaned data be imported directly into CiteSpace?▼

Yes, the S14 export stage regenerates the retained records in original WoS plain text format with identical field order and UTF-8 encoding. The output file loads directly into CiteSpace without conversion.

What bibliographic databases and formats are supported?▼

The source detection stage recognizes WoS plain text, BibTeX, RIS, CNKI custom exports, Scopus CSV, PubMed MEDLINE, plus Dimensions, IEEE Xplore, ProQuest, Wanfang, and CQVIP fingerprints. Encoding detection covers UTF-8, UTF-8 BOM, GBK, and GB2312.

Why does wildcard search create noise in literature datasets?▼

Wildcards like meme* match unrelated word forms such as memento, membrane, or memetic algorithms, and the same string carries different meanings across languages and disciplines. The pipeline models these as three noise layers and judges each record by semantic context rather than surface keyword matching.

What are the limitations of the simplified Kleinberg burst detection?▼

The simplified version uses sliding-window frequency comparison instead of full Viterbi state optimization, so it cannot distinguish true bursts from long-term rising trends and requires bursts to persist at least two years. For publication-grade results, cross-validate with CiteSpace or a full Kleinberg implementation.