S10-结果导出与日志

Exports cleaned bibliographic datasets, exclusion lists, and cleaning logs after each noise-removal round.

Updated May 18, 2026
One-click install
npx skills add https://github.com/heyixue511-creator/ai --skill s10-heyixue511-creator
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: S10-结果导出与日志
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/S10-%E7%BB%93%E6%9E%9C%E5%AF%BC%E5%87%BA%E4%B8%8E%E6%97%A5%E5%BF%97
Command: npx skills add https://github.com/heyixue511-creator/ai --skill s10-heyixue511-creator

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? After each round of bibliometric noise removal, researchers need consistent, verifiable deliverables: a cleaned dataset in the original format, a traceable exclusion list, and an updated cleaning log. Doing this manually risks record loss, format corruption, and untraceable decisions. ## Core Features & Use Cases - Round-based export: Generates a retained-records file (preserving the original WoS plain-text or CSV format) plus an exclusion CSV listing seq, source_id, title, noise type, reason, and round for every record judged as NOISE. - Final dataset assembly: Builds the final deduplicated dataset directly from the original raw data using the final mapping table, preventing field-integrity loss from intermediate files. - History traceability: Maintains verdict_history, per-round noise_type fields, last_verdict, and first_round columns so every exclusion is auditable. - Validation and logging: Enforces record-count conservation checks and updates the cleaning log with noise-type distribution tables and output file inventories. - Use Case: After S07 finishes semantic judgment for round 2 of a Web of Science literature cleaning project, run this skill to export the retained WoS file, produce the round-2 exclusion CSV, and append the round summary to the cleaning log. ## Quick Start Run the round-2 export now: generate the retained records file and exclusion list from the current mapping table, then update the cleaning log.

Frequently Asked Questions about S10-结果导出与日志

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

FAQPage Schema
How do I export cleaned bibliographic data after a noise-removal round?▼

Extract all records whose verdict is not NOISE from the original data using the mapping table, keeping the original format (WoS plain text or CSV) and record order. Also generate an exclusion CSV with seq, source_id, title, noise type, reason, and round for removed records.

How to build a final deduplicated dataset from multiple cleaning rounds?▼

Extract final retained records directly from the original raw data using the final mapping table's seq set, never from intermediate round outputs. This guarantees field completeness identical to the source data.

Does the export preserve Web of Science plain-text format?▼

Yes. Retained files keep the original format unchanged, including WoS header fields like FN and VR and the EF file terminator. CSV inputs remain CSV with UTF-8 BOM encoding for exclusion lists.

How do I validate that no records were lost during export?▼

Check record-count conservation: retained count plus excluded count must equal the input total. Also verify every retained record exists in the original data and no NOISE-judged record appears in the retained set.

Why build the final dataset from original data instead of intermediate files?▼

Intermediate round files may lose fields during repeated extraction. Rebuilding from the original data via the final mapping table ensures the final dataset retains complete field integrity matching the source.