π What's Included in v1.0.0 (Stata)
This is the **first public release** of RegiStream for Stata, providing automatic labeling of register data.
β
Main Features:
- **`autolabel.ado`** β Automatically applies **variable** and **value labels** based on predefined domain mappings.
- **Helper files** β Additional utilities to streamline register data workflows.
- **Preconfigured installation files** (`.pkg` and `.toc`) β Ensures smooth installation via `net install`.
- **Stata Help Files (`.sthlp`)** β Documentation and usage examples.
---
π Installation Instructions
π‘ Option 1: Install via Net Install (Recommended)
To install RegiStream in Stata, run:
stata
net install registream, from("https://registream.com/install/stata/latest") replace
This command will install the latest version automatically.
π‘ Option 2: Manual Installation (For Secure Systems)
1. **Download the `.zip` package**:
[π₯ Download RegiStream v1.0.0 (Stata)](https://registream.com/install/stata/registream_stata.zip)
2. **Transfer and unzip** the file in a Stata-friendly location.
3. **Add the package to Stataβs `adopath`**:
stata
adopath + "/your/custom/path/registream"
---
π Example Usage
β Label all variables in English:
stata
autolabel variables, domain(scb) lang(eng)
β Apply value labels for a specific variable:
stata
autolabel values kon, domain(scb) lang(swe)
β Label selected variables while excluding some:
stata
autolabel variables ku*ink yrkarbtyp, domain(scb) lang(eng) exclude(ku3ink)
β Lookup a variable in the domain data:
stata
autolabel lookup carb yrkarbtyp kaross, domain(scb) lang(eng)
---
π Documentation & Support
π **Full documentation & examples:**
π [RegiStream Stata Documentation](https://registream.com/stata)
π¬ **Questions or Issues?**
- Reach out via email: π© jeffrey.clarksu.se
- Report issues on GitHub