survey-analysis
Installation
SKILL.md
survy — Survey Data Analysis Skill
survy is a lightweight Python library for processing, transforming, and analyzing survey data.
Its central design principle is treating survey constructs — especially multiselect questions — as
first-class concepts rather than awkward DataFrame workarounds.
Install: Always install the latest version — pip install --upgrade survy
Powered by: Polars (all DataFrames returned are Polars, not pandas)
1. Core Objects
Survey
Top-level container. Created via read_* functions — never instantiate directly.
Access variables with survey["Q1"]. Print for a compact summary.
Variable
Related skills