Count
Count is a collaborative data analytics platform combining notebook-style analysis with visualization capabilities. In Data Team we use it for ad-hoc analysis.
Overview
Count combines features of:
- 📓 Digital Whiteboards - Flexible canvas for analysis
- 📊 BI Tools - Create charts and dashboards
- 💻 Notebooks - SQL and Python cells
- 🤝 Collaboration - Real-time teamwork
Access
Ask Data Team for access.
Resources
Data Architecture
[TODO] move the architecture to the documentation repo View our data warehouse architecture and data flow diagrams:
Best Practices
- aggregate early
- prefix SQL cells with
c_when caching - prefix parameters with
p_(easier to find)
Useful Link Patterns
Hydra User Link
Create clickable links to Hydra user profiles:
Hydra KYC Link
Link to KYC attempts in Hydra:
Alloy Evaluation Link
Link to Alloy evaluations:
concat('https://app.alloy.co/entities/', entity_token, '/evaluations/', evaluation_token) as alloy_evaluation
Example Usage
SELECT
user_id,
user_name,
concat('https://hydra.majority.com/user/', user_id) as hydra,
kyc_status
FROM users
WHERE kyc_status = 'pending'
This creates a clickable hydra column that opens the user profile directly.