Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStats

Categories

πŸ€– Artificial Intelligence
☁️ Cloud and Infrastructure
πŸ’Ύ Data and Databases
πŸ’Ό Professional Skills
🎯 Programming and Development
πŸ”’ Security and Networking
πŸ“š Specialized Topics
HomeAboutTopicsPricingMy VaultStats
LEVEL 0
0/5 XP
GitHub
Β© 2026 CheatGridβ„’. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Hex Data Notebooks and Apps Cheat Sheet

Hex Data Notebooks and Apps Cheat Sheet

Back to Business Intelligence
Updated 2026-05-23
Next Topic: HR and People Analytics Cheat Sheet

Hex is a cloud-based collaborative data platform where SQL, Python, and no-code analyses live side-by-side in notebook projects. Cells chain together through a reactive DAG engine, so upstream changes automatically re-execute dependent cells; finished notebooks publish as polished interactive apps with a single click. This cheat sheet covers everything from cell types and SQL chaining through scheduling, secrets, semantic models, embedded analytics, and the Magic AI suite.

What This Cheat Sheet Covers

This topic spans 15 focused tables and 213 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: Cell TypesTable 2: SQL Cells β€” Warehouse SQL vs DataFrame SQLTable 3: Input Parameter CellsTable 4: Reactive Execution Model (DAG)Table 5: Magic AI SuiteTable 6: App BuilderTable 7: Publishing and Sharing AppsTable 8: Scheduling and Triggered RunsTable 9: Secrets, Environment Variables, and ComputeTable 10: Data Connections and Semantic LayerTable 11: Version History and Git IntegrationTable 12: Embedded AnalyticsTable 13: Collaboration FeaturesTable 14: Public API and IntegrationsReferences

Table 1: Cell Types

Every Hex project is built from typed cells, each with its own execution engine and output. Choosing the right cell type for the job β€” rather than forcing everything into Python β€” keeps notebooks readable and lets Hex optimize execution.

TypeExampleDescription
SQL Cell
SELECT user_id, SUM(revenue) AS total
FROM orders
GROUP BY 1
β€’ Queries a connected data warehouse or an in-memory DataFrame
β€’ result exposed as a named Pandas DataFrame automatically
Python Cell
import pandas as pd
df = df_orders[df_orders.revenue > 0]
β€’ Runs arbitrary Python 3
β€’ all cell outputs (DataFrames, variables, figures) are available to downstream cells
Markdown / Text Cell
## Analysis Summary
Revenue grew **12 %** QoQ.
β€’ Renders GitHub-flavored Markdown
β€’ used for narrative, headings, and callout text between analytical cells
Chart Cell
(drag columns onto X/Y axes in the no-code chart builder)
β€’ No-code drag-and-drop visualization powered by Vega-Lite
β€’ auto-suggests chart types based on data shape

More in Business Intelligence

  • Geospatial BI and Map Visualizations Cheat Sheet
  • HR and People Analytics Cheat Sheet
  • Agentic Analytics and AI Copilots in BI Cheat Sheet
  • Data Storytelling Cheat Sheet
  • Looker Studio Cheat Sheet
  • QlikView Cheat Sheet
View all 61 topics in Business Intelligence