AutoViz

SkillDev tools

"Routes AutoViz users to automated EDA, data-quality, and

Available today. Use it from your connected AI after setup.

Connect ahel once, and every AI you use reads what you have installed.

Then ask your AI: use the AutoViz skill

What this skill tells your AI

The instructions your AI receives, as published by vectorspacelab/arex-skill in skills/repositories/repo-skills/autoviz/SKILL.md and read by ahel’s review.

Use this skill when a user wants to explore a tabular dataset with AutoViz, fix data-quality problems with FixDQ, or generate wordclouds from string columns. Keep this skill router-like: send the user to the most specific sub-skill, then use the bundled references and scripts for details.

First decision

Minimal usage shape

from autoviz import AutoViz_Class

AV = AutoViz_Class()
dft = AV.AutoViz(
    filename,
    sep=",",
    depVar="",
    dfte=df,
    header=0,
    verbose=1,
    lowess=False,
    chart_format="svg",
    max_rows_analyzed=150000,
    max_cols_analyzed=30,
    save_plot_dir=None,
)

What to read next

Common routing cues

  • AutoViz_Class, AutoViz_Main, filename, dfte, chart_format, save_plot_dir, max_rows_analyzed, or max_cols_analyzed usually mean the EDA sub-skill.
  • FixDQ, data_cleaning_suggestions, duplicate rows, infinity, rare categories, mixed types, or leakage usually mean the data-quality sub-skill.
  • wordcloud, nltk, textblob, emoji, stopwords, discrete string, or NLP columns usually mean the text sub-skill.
  • If the user asks about installation, package versions, or why import autoviz fails, route to the relevant references first and then return to the right sub-skill.

Import note

import autoviz prints a banner in this repository version. That is expected and not a failure.

Quick expectations

  • The package is CPU-oriented.
  • Interactive chart formats depend on hvplot, holoviews, panel, bokeh, and IPython.
  • data_cleaning_suggestions uses pandas_dq.
  • FixDQ is the transformer-style path for reusable data-quality cleanup.
  • Wordcloud generation may trigger an NLTK download if string columns are present.
  • A tiny toy DataFrame can be classified in surprising ways, so use the bundled smoke scripts when debugging.

What not to do

  • Do not point users at the original source checkout as a required runtime dependency.
  • Do not suggest source notebooks or repo tests as the primary user workflow when a bundled script exists.
  • Do not claim accelerator requirements; this skill's covered workflows are CPU-based.
  • Do not hide compatibility warnings in prose when pip check or import output shows a concrete failure.

Handoff shape

When the user is still deciding, keep the response short and route them to the right sub-skill plus the correct reference. When the user wants action, use the bundled script for that sub-skill, verify the runtime, and then summarize the result in package terms rather than source-file terms.

Escalation

If the user wants a broader comparison with another package, first finish the AutoViz route and then explain the boundary clearly. If the issue is really a repository install or compatibility failure, point them to the install-and-compatibility and troubleshooting references before changing the workflow.

Signals

GitHub stars
266
Forks
21
Last commit
Sep 2026

ahel review

  • K1binfo
    installs-packages (in references/install-and-compatibility.md)

Automated review, not a security audit. Ruleset v1+k2.

Advanced
Catalog kind
skill
Gateway key
autoviz
Source
github.com/vectorspacelab/arex-skill