Agent skill
ydata-profiling-1-use-minimal-mode-for-large-datasets
Sub-skill of ydata-profiling: 1. Use Minimal Mode for Large Datasets (+3).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/data/analysis/ydata-profiling/1-use-minimal-mode-for-large-datasets
SKILL.md
1. Use Minimal Mode for Large Datasets (+3)
1. Use Minimal Mode for Large Datasets
# GOOD: Minimal mode for large data
profile = ProfileReport(large_df, minimal=True)
# AVOID: Full explorative on large data
# profile = ProfileReport(large_df, explorative=True) # Slow!
2. Sample for Initial Exploration
# GOOD: Sample first, then full profile
sample = df.sample(n=10000, random_state=42)
profile = ProfileReport(sample, title="Sample Profile")
# If interesting, profile full data
# profile_full = ProfileReport(df, minimal=True)
3. Customize for Your Needs
# GOOD: Disable unnecessary computations
profile = ProfileReport(
df,
correlations={"pearson": {"calculate": True}}, # Only Pearson
missing_diagrams={"bar": True, "matrix": False, "heatmap": False}
)
4. Use Lazy Evaluation
# GOOD: Lazy profile, compute when needed
profile = ProfileReport(df, lazy=True)
# ... do other work ...
profile.to_file("report.html") # Computes here
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?