数据与复现科研绘图与可视化K-Dense-AI/claude-scientific-skills数据与复现
UM

UMAP-learn

维护者 K-Dense Inc. · 最近更新 2026年4月1日

UMAP-learn:UMAP (Uniform Manifold Approximation 、 Projection) is dimensionality reduction technique ,用于 visuali。

Claude CodeOpenClawNanoClaw分析处理写作整理umap-learnmachine-learningpackagemachine learning & deep learning

原始来源

K-Dense-AI/claude-scientific-skills

https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/umap-learn

维护者
K-Dense Inc.
许可
BSD-3-Clause license
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • UMAP (Uniform Manifold Approximation 、 Projection) is dimensionality reduction technique ,用于 visualization 、 general non-linear dimensionality reduction. Apply this skill ,用于 fast,scalable embeddings that preserve local 、 global structure,supervised learning,、 聚类 preprocessing。
  • scaled_data = StandardScaler().fit_transform(data)。

原始文档

SKILL.md 摘录

Basic Usage

UMAP follows scikit-learn conventions and can be used as a drop-in replacement for t-SNE or PCA.

import umap
from sklearn.preprocessing import StandardScaler

## Method 1: Single step (fit and transform)

embedding = umap.UMAP().fit_transform(scaled_data)

## Method 2: Separate steps (for reusing trained model)

reducer = umap.UMAP(random_state=42)
reducer.fit(scaled_data)
embedding = reducer.embedding_  # Access the trained embedding

Critical preprocessing requirement: Always standardize features to comparable scales before applying UMAP to ensure equal weighting across dimensions.

适用场景

  • Use UMAP-learn to prepare 论文级图表。
  • Apply UMAP-learn when results need clear visual communication。
  • Use umap-learn to prepare 论文级图表。
  • Apply umap-learn when results need clear visual communication。

不适用场景

  • Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。

相关技能

相关技能

返回目录
BI
数据与复现科研绘图与可视化

bio-data-visualization-ggplot2-fundamentals

bio-data-visualization-ggplot2-fundamentals:R ggplot2 ,用于 publication-quality genomics 、 omics figures。

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研绘图与可视化

bio-data-visualization-upset-plots

bio-data-visualization-upset-plots:UpSet plots ,用于 multi-set intersection visualization。

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研绘图与可视化

bio-data-visualization-volcano-customization

bio-data-visualization-volcano-customization:Customized volcano plots ,支持 ggplot2 或 matplotlib ,用于 DE results。

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现科研绘图与可视化

bio-longread-qc

bio-longread-qc:Quality control ,用于 long-read sequencing data ,使用 NanoPlot,NanoStat,、 chopper。 生成 QC reports,filter read…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看