Token导航 LogoToken导航TokenDH.com
效率可写文件clawhub未标认证来源可访问clear审计提醒

pythesis-plot假设图

Agent Skill

pythesis-plot 用于辅助 Python 项目开发、测试和数据处理,适合在 OpenClaw 中需要阅读 Python 代码、运行测试或整理脚本流程时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

15,944

周安装

645

GitHub Stars

公开资料未说明

下载量

5,005
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:pythesis-plot(假设图)
来源仓库:https://github.com/stephenlzc/pythesis-plot
安装命令:
openclaw skills install pythesis-plot
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install pythesis-plot

简介

专为论文场景设计的 Python 科学绘图工具,支持数据上传与分析。

  • 适合在 OpenClaw 中生成图表、验证可视化效果或整理科研数据时使用。
  • 工作流程包括数据上传→分析→建议→确认→生成。
  • 安装命令:openclaw skills install pythesis-plot。
  • 需准备符合格式要求的数据文件并明确输出目标。

SKILL.md

name
pythesis-plot
description
>
Workflow
data upload → analysis → recommendations → confirmation → generation.

PyThesisPlot

Python scientific plotting workflow tool supporting the complete process from data upload to figure generation for academic publications.

Workflow

[User Uploads Data] → [Auto-save to output dir] → [Data Analysis]
                                           ↓
[Generate Images to output dir] ← [Code Generation] ← [User Confirms Scheme]

Required Steps

  1. Data Reception: User uploads data file (txt/md/xlsx/csv)
  2. Auto-save: Rename to timestamp-original_filename, save to output/YYYYMMDD-filename/
  3. Data Analysis: Analyze dimensions, types, statistical features, column relationships
  4. Chart Recommendations: Recommend chart schemes based on data characteristics (type, quantity, layout)
  5. User Confirmation: Display analysis report, must wait for user confirmation before generation
  6. Generation & Delivery: Python code + chart images, save to same output directory

Core Scripts

1. Main Workflow Script

python scripts/workflow.py --input data.csv --output-dir output/

2. Data Analysis

python scripts/data_analyzer.py --input data.csv

Output: Data characteristics report + chart recommendation scheme

3. Chart Generation

python scripts/plot_generator.py --config plot_config.json --output-dir output/

File Management Standards

Directory Structure

output/
└── 20250312-145230-data.csv/          # Named with timestamp + filename
    ├── 20250312-145230-data.csv       # Original data file (renamed)
    ├── analysis_report.md             # Data analysis report
    ├── plot_config.json               # Chart configuration (generated after user confirmation)
    ├── 20250312-145230_plot.py        # Generated Python code
    ├── 20250312-145230_fig1_line.png  # Chart (PNG image)
    └── 20250312-145230_fig2_bar.png

Naming Conventions

File TypeNaming FormatExample
Data File{timestamp}-{original}20250312-145230-data.csv
Analysis Reportanalysis_report.mdanalysis_report.md
Python Code{timestamp}_plot.py20250312-145230_plot.py
Chart PNG{timestamp}_fig{n}_{type}.png20250312-145230_fig1_line.png

Usage

Scenario 1: Complete Workflow

When user uploads a data file:

  1. Auto-save File
   # Rename and save to output/{timestamp}-{filename}/
   save_uploaded_file(input_file, output_base="output/")
  1. Execute Data Analysis
   # Analyze data characteristics, generate report
   python scripts/data_analyzer.py --input output/20250312-data/data.csv
  1. Display Analysis Report to User
   ## Data Analysis Report
   
   ### Data Overview
   - File: data.csv
   - Dimensions: 120 rows × 5 columns
   - Types: 3 numeric + 2 categorical columns
   
   ### Column Details
   | Column | Type | Description |
   |-----|------|-----|
   | date | datetime | 2023-01 to 2023-12 |
   | sales | numeric | mean=1250, std=320 |
   | region | categorical | 4 categories: N/S/E/W |
   
   ### Chart Recommendations
   Based on data characteristics, the following schemes are recommended:
   
   **Scheme 1: Time Trend Analysis** ⭐Recommended
   - Chart Type: Line plot
   - Content: Sales trend over time
   - Reason: Time series data, most intuitive for showing trends
   
   **Scheme 2: Regional Comparison**
   - Chart Type: Grouped bar chart
   - Content: Sales comparison across regions
   - Reason: Categorical comparison, suitable for showing differences
   
   **Scheme 3: Comprehensive Dashboard**
   - Chart Type: 2×2 subplot layout
   - Includes: Trend line + Bar chart + Box plot + Correlation heatmap
   - Reason: Rich data dimensions, comprehensive display
   
   Please tell me what you want:
   - "Generate schemes 1 and 2"
   - "Generate all"
   - "Modify scheme 3..." (provide your modification suggestions)
  1. Wait for User Confirmation ⚠️ Critical Step

- User may say: "Generate scheme 1" / "Generate all" / "Modify XX..." - Must wait for explicit instruction before entering generation phase

  1. Generate and Save
   # Generate Python code
   python scripts/plot_generator.py --config plot_config.json
   
   # Output to same directory
   output/20250312-data/
   ├── 20250312-145230_plot.py        # Code
   ├── 20250312-145230_fig1_line.png  # Chart
   └── 20250312-145230_fig2_bar.png

Scenario 2: Data Analysis Only

python scripts/data_analyzer.py --input data.csv --output report.md

Scenario 3: Generate from Config

python scripts/plot_generator.py --config config.json --output-dir ./

Chart Recommendation Logic

Data CharacteristicsRecommended ChartApplication
Time series + NumericLine plotTrend display
Categorical + Single numericBar chartCategory comparison
Categorical + DistributionBox/Violin plotDistribution display
Two numeric (correlated)Scatter (+regression)Correlation analysis
Multiple numeric (correlated)HeatmapCorrelation matrix
Single numeric distributionHistogram/DensityDistribution characteristics
Multi-dimensional rich data2×2 subplotsComprehensive display

Supported File Formats

  • CSV: .csv (Recommended)
  • Excel: .xlsx, .xls
  • Text: .txt, .md (table format)

Dependencies

pandas >= 1.3.0
matplotlib >= 3.5.0
seaborn >= 0.11.0
openpyxl >= 3.0.0  # Excel support
numpy >= 1.20.0
scipy >= 1.7.0

Reference Documents

Important Notes

  1. User confirmation is mandatory: Must wait for user confirmation after analysis, cannot generate directly
  2. Unified file management: All output files saved to same output/{timestamp}-{filename}/ directory
  3. High-resolution output: Generate PNG at 300 DPI (suitable for publication)
  4. Code traceability: Generated Python code also saved to same directory for user modification
  5. Academic style: Charts follow top journal standards (Nature/Science/Lancet style)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

76.7%
按下载量换算3,839

安全审计

VirusTotal

通过

ClawScan

可疑

Static analysis

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills