Sub-skill of polars: 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-832810c5)More formats (shields.io, HTML) on the badges page.
---
name: polars-common-issues
description: 'Sub-skill of polars: Common Issues.'
version: 1.0.0
category: data-analysis
type: reference
scripts_exempt: true
---
# Common Issues
## Common Issues
**Issue: Out of Memory**
```python
# Solution 1: Use streaming
result = lf.collect(streaming=True)
# Solution 2: Sink to file
lf.sink_parquet("output.parquet")
# Solution 3: Process in chunks
for chunk in pl.read_csv_batched("large.csv", batch_size=100000):
process(chunk)
```
**Issue: Slow Performance**
```python
# Check query plan for inefficiencies
print(lf.explain(optimized=True))
# Use profiling
result = lf.profile()
print(result[1]) # Timing information
```
**Issue: Type Mismatch in Join**
```python
# Ensure matching types before join
df1 = df1.with_columns(pl.col("id").cast(pl.Int64))
df2 = df2.with_columns(pl.col("id").cast(pl.Int64))
result = df1.join(df2, on="id")
```
**Issue: Date Parsing Errors**
```python
# Explicit format specification
df = df.with_columns([
pl.col("date_str").str.strptime(pl.Date, "%Y-%m-%d"),
pl.col("datetime_str").str.strptime(pl.Datetime, "%Y-%m-%d %H:%M:%S")
])
```
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!
Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.
Draft release notes and changelog entries from git history or merged PRs between two refs (tags/SHAs/branches), including breaking changes, migrations, and upgrade steps. Use when the user asks for release notes, changelog updates, or a GitHub Release draft.
Documentation style guide enforcer by @planetabhi. Applies and reviews the writing style guide when authoring or editing product documentation and tutorials. Use to check prose for voice, tense, word choice, inclusive language, formatting, code block, UI, Markdown, and number/date conventions.
Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger: /caveman-help, "caveman help", "what caveman commands", "how do I use caveman".
Explain how claude-mem captures observations, when memory injection kicks in, and where data lives. Use when the user asks "how does claude-mem work?" or "what is this thing doing?".