Sub-skill of autoviz: Common Issues.
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill common-issues --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Common Issues?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-common-issues-ded3ae7c)More formats (shields.io, HTML) on the badges page.
---
name: autoviz-common-issues
description: 'Sub-skill of autoviz: Common Issues.'
version: 1.0.0
category: data-analysis
type: reference
scripts_exempt: true
---
# Common Issues
## Common Issues
**Issue: Charts not displaying in Jupyter**
```python
# Solution: Use server format
%matplotlib inline
AV.AutoViz(filename="", dfte=df, chart_format="server")
```
**Issue: Memory error with large dataset**
```python
# Solution: Reduce sample size
AV.AutoViz(
filename="",
dfte=df,
max_rows_analyzed=25000, # Reduce sample
max_cols_analyzed=15 # Limit columns
)
```
**Issue: Too many charts generated**
```python
# Solution: Limit columns analyzed
df_subset = df[["col1", "col2", "col3", "target"]]
AV.AutoViz(filename="", dfte=df_subset)
```
**Issue: Categorical columns not recognized**
```python
# Solution: Convert to proper dtype
df["category"] = df["category"].astype("category")
AV.AutoViz(filename="", dfte=df)
```
**Issue: Date columns causing issues**
```python
# Solution: Convert to datetime or extract features
df["date"] = pd.to_datetime(df["date"])
df["year"] = df["date"].dt.year
df["month"] = df["date"].dt.month
df_features = df.drop(columns=["date"])
AV.AutoViz(filename="", dfte=df_features)
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
This skill helps you track, analyze, and report on keyword ranking positions over time. It monitors both traditional SERP rankings and AI/GEO visibility to provide comprehensive search performance insights.
Find and analyze YouTube competitor channels using YouTube Data API v3. Discover competitors through keyword search, category matching, content similarity, and related channel discovery. Compare metrics, content strategies, and market positioning. Use when users want to (1) Find competitors for their YouTube channel, (2) Analyze competitor performance metrics, (3) Compare their channel against competitors, (4) Identify content gaps and opportunities, (5) Benchmark against similar creators, (6...
Analyze and optimize tweets for maximum reach using Twitter's open-source algorithm insights. Rewrite and edit user tweets to improve engagement and visibility based on how the recommendation system ranks content.
Instructions for fetching current weather temperature data for Karachi, Pakistan from wttr.in API
Get current weather and forecasts (no API key required).