Dataset Preview
Duplicate
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed because of a cast error
Error code:   DatasetGenerationCastError
Exception:    DatasetGenerationCastError
Message:      An error occurred while generating the dataset

All the data files must have the same columns, but at some point there are 6 new columns ({'growth_style', 'initial_active_customers', 'avg_revenue_per_customer', 'industry', 'founded_date', 'gross_margin_pct'}) and 9 missing columns ({'date', 'revenue_generated', 'click_through_rate', 'channel', 'clicks', 'cost', 'impressions', 'conversion_rate', 'conversions'}).

This happened while the csv dataset builder was generating data using

hf://datasets/solsticestudioai/saas-growth-pack/companies.csv (at revision a8194358907fddae33ad04988120b9dd086dd31c), [/tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/channel_performance.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/channel_performance.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/companies.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/companies.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/customer_segments.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/customer_segments.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/dashboard_suggestions.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/dashboard_suggestions.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/growth_metrics.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/growth_metrics.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/metric_definitions.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/metric_definitions.csv)]

Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback:    Traceback (most recent call last):
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1800, in _prepare_split_single
                  writer.write_table(table)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 765, in write_table
                  self._write_table(pa_table, writer_batch_size=writer_batch_size)
                File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 773, in _write_table
                  pa_table = table_cast(pa_table, self._schema)
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2281, in table_cast
                  return cast_table_to_schema(table, schema)
                         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2227, in cast_table_to_schema
                  raise CastError(
              datasets.table.CastError: Couldn't cast
              company_id: string
              company_name: string
              industry: string
              growth_style: string
              founded_date: string
              avg_revenue_per_customer: double
              gross_margin_pct: double
              initial_active_customers: int64
              -- schema metadata --
              pandas: '{"index_columns": [{"kind": "range", "name": null, "start": 0, "' + 1294
              to
              {'date': Value('string'), 'company_id': Value('string'), 'company_name': Value('string'), 'channel': Value('string'), 'impressions': Value('int64'), 'clicks': Value('int64'), 'conversions': Value('int64'), 'cost': Value('float64'), 'revenue_generated': Value('float64'), 'conversion_rate': Value('float64'), 'click_through_rate': Value('float64')}
              because column names don't match
              
              During handling of the above exception, another exception occurred:
              
              Traceback (most recent call last):
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1347, in compute_config_parquet_and_info_response
                  parquet_operations = convert_to_parquet(builder)
                                       ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 980, in convert_to_parquet
                  builder.download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 882, in download_and_prepare
                  self._download_and_prepare(
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 943, in _download_and_prepare
                  self._prepare_split(split_generator, **prepare_split_kwargs)
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1646, in _prepare_split
                  for job_id, done, content in self._prepare_split_single(
                                               ^^^^^^^^^^^^^^^^^^^^^^^^^^^
                File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1802, in _prepare_split_single
                  raise DatasetGenerationCastError.from_cast_error(
              datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
              
              All the data files must have the same columns, but at some point there are 6 new columns ({'growth_style', 'initial_active_customers', 'avg_revenue_per_customer', 'industry', 'founded_date', 'gross_margin_pct'}) and 9 missing columns ({'date', 'revenue_generated', 'click_through_rate', 'channel', 'clicks', 'cost', 'impressions', 'conversion_rate', 'conversions'}).
              
              This happened while the csv dataset builder was generating data using
              
              hf://datasets/solsticestudioai/saas-growth-pack/companies.csv (at revision a8194358907fddae33ad04988120b9dd086dd31c), [/tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/channel_performance.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/channel_performance.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/companies.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/companies.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/customer_segments.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/customer_segments.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/dashboard_suggestions.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/dashboard_suggestions.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/growth_metrics.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/growth_metrics.csv), /tmp/hf-datasets-cache/medium/datasets/42735426264253-config-parquet-and-info-solsticestudioai-saas-gro-5aea1384/hub/datasets--solsticestudioai--saas-growth-pack/snapshots/a8194358907fddae33ad04988120b9dd086dd31c/metric_definitions.csv (origin=hf://datasets/solsticestudioai/saas-growth-pack@a8194358907fddae33ad04988120b9dd086dd31c/metric_definitions.csv)]
              
              Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

date
string
company_id
string
company_name
string
channel
string
impressions
int64
clicks
int64
conversions
int64
cost
float64
revenue_generated
float64
conversion_rate
float64
click_through_rate
float64
2026-01-01
C001
AlphaFlow
SEO
108
17
0
98.06
0
0
0.1574
2026-01-01
C001
AlphaFlow
Paid Search
452
24
0
50.68
0
0
0.0531
2026-01-01
C001
AlphaFlow
Content
372
23
0
78.45
0
0
0.0618
2026-01-01
C001
AlphaFlow
LinkedIn Ads
405
20
0
55.75
0
0
0.0494
2026-01-01
C001
AlphaFlow
Partnerships
85
5
0
47.07
0
0
0.0588
2026-01-01
C001
AlphaFlow
Outbound Sales
419
25
0
55.75
0
0
0.0597
2026-01-01
C001
AlphaFlow
Referral
322
30
1
70.45
386.57
0.0333
0.0932
2026-01-02
C001
AlphaFlow
SEO
521
8
0
118.49
0
0
0.0154
2026-01-02
C001
AlphaFlow
Paid Search
421
22
0
61.24
0
0
0.0523
2026-01-02
C001
AlphaFlow
Content
217
14
0
94.79
0
0
0.0645
2026-01-02
C001
AlphaFlow
LinkedIn Ads
323
18
0
67.36
0
0
0.0557
2026-01-02
C001
AlphaFlow
Partnerships
419
1
0
56.88
0
0
0.0024
2026-01-02
C001
AlphaFlow
Outbound Sales
568
4
0
67.36
0
0
0.007
2026-01-02
C001
AlphaFlow
Referral
391
30
1
85.13
388.91
0.0333
0.0767
2026-01-03
C001
AlphaFlow
SEO
439
12
0
117.42
0
0
0.0273
2026-01-03
C001
AlphaFlow
Paid Search
516
4
0
60.69
0
0
0.0078
2026-01-03
C001
AlphaFlow
Content
205
25
0
93.94
0
0
0.122
2026-01-03
C001
AlphaFlow
LinkedIn Ads
346
24
0
66.75
0
0
0.0694
2026-01-03
C001
AlphaFlow
Partnerships
249
1
0
56.36
0
0
0.004
2026-01-03
C001
AlphaFlow
Outbound Sales
386
14
0
66.75
0
0
0.0363
2026-01-03
C001
AlphaFlow
Referral
537
74
1
84.37
506.11
0.0135
0.1378
2026-01-04
C001
AlphaFlow
SEO
569
1
0
97.92
0
0
0.0018
2026-01-04
C001
AlphaFlow
Paid Search
272
2
0
50.6
0
0
0.0074
2026-01-04
C001
AlphaFlow
Content
350
18
0
78.33
0
0
0.0514
2026-01-04
C001
AlphaFlow
LinkedIn Ads
421
18
0
55.67
0
0
0.0428
2026-01-04
C001
AlphaFlow
Partnerships
226
12
0
47
0
0
0.0531
2026-01-04
C001
AlphaFlow
Outbound Sales
91
2
0
55.67
0
0
0.022
2026-01-04
C001
AlphaFlow
Referral
549
76
1
70.34
480.33
0.0132
0.1384
2026-01-05
C001
AlphaFlow
SEO
406
17
0
98.22
0
0
0.0419
2026-01-05
C001
AlphaFlow
Paid Search
403
17
0
50.76
0
0
0.0422
2026-01-05
C001
AlphaFlow
Content
242
3
0
78.57
0
0
0.0124
2026-01-05
C001
AlphaFlow
LinkedIn Ads
370
20
0
55.84
0
0
0.0541
2026-01-05
C001
AlphaFlow
Partnerships
533
20
0
47.14
0
0
0.0375
2026-01-05
C001
AlphaFlow
Outbound Sales
253
8
0
55.84
0
0
0.0316
2026-01-05
C001
AlphaFlow
Referral
415
33
1
70.55
392.01
0.0303
0.0795
2026-01-06
C001
AlphaFlow
SEO
415
33
1
389.06
432.75
0.0303
0.0795
2026-01-06
C001
AlphaFlow
Paid Search
306
11
0
201.07
0
0
0.0359
2026-01-06
C001
AlphaFlow
Content
356
33
1
311.25
570.82
0.0303
0.0927
2026-01-06
C001
AlphaFlow
LinkedIn Ads
266
5
0
221.18
0
0
0.0188
2026-01-06
C001
AlphaFlow
Partnerships
347
13
0
186.75
0
0
0.0375
2026-01-06
C001
AlphaFlow
Outbound Sales
322
15
0
221.18
0
0
0.0466
2026-01-06
C001
AlphaFlow
Referral
1,051
75
2
279.47
1,099.11
0.0267
0.0714
2026-01-07
C001
AlphaFlow
SEO
505
16
0
208.64
0
0
0.0317
2026-01-07
C001
AlphaFlow
Paid Search
270
8
0
107.83
0
0
0.0296
2026-01-07
C001
AlphaFlow
Content
412
11
0
166.91
0
0
0.0267
2026-01-07
C001
AlphaFlow
LinkedIn Ads
346
6
0
118.61
0
0
0.0173
2026-01-07
C001
AlphaFlow
Partnerships
302
21
0
100.15
0
0
0.0695
2026-01-07
C001
AlphaFlow
Outbound Sales
217
10
0
118.61
0
0
0.0461
2026-01-07
C001
AlphaFlow
Referral
680
45
2
149.88
872.93
0.0444
0.0662
2026-01-08
C001
AlphaFlow
SEO
406
18
0
115.56
0
0
0.0443
2026-01-08
C001
AlphaFlow
Paid Search
434
25
0
59.72
0
0
0.0576
2026-01-08
C001
AlphaFlow
Content
278
25
0
92.45
0
0
0.0899
2026-01-08
C001
AlphaFlow
LinkedIn Ads
322
2
0
65.69
0
0
0.0062
2026-01-08
C001
AlphaFlow
Partnerships
573
7
0
55.47
0
0
0.0122
2026-01-08
C001
AlphaFlow
Outbound Sales
297
18
0
65.69
0
0
0.0606
2026-01-08
C001
AlphaFlow
Referral
365
28
1
83.02
504.9
0.0357
0.0767
2026-01-09
C001
AlphaFlow
SEO
302
40
1
397.27
465.17
0.025
0.1325
2026-01-09
C001
AlphaFlow
Paid Search
559
4
0
205.31
0
0
0.0072
2026-01-09
C001
AlphaFlow
Content
428
57
1
317.81
495.89
0.0175
0.1332
2026-01-09
C001
AlphaFlow
LinkedIn Ads
553
17
0
225.84
0
0
0.0307
2026-01-09
C001
AlphaFlow
Partnerships
370
7
0
190.69
0
0
0.0189
2026-01-09
C001
AlphaFlow
Outbound Sales
374
2
0
225.84
0
0
0.0053
2026-01-09
C001
AlphaFlow
Referral
701
90
2
285.39
795.01
0.0222
0.1284
2026-01-10
C001
AlphaFlow
SEO
516
6
0
196.17
0
0
0.0116
2026-01-10
C001
AlphaFlow
Paid Search
493
24
0
101.38
0
0
0.0487
2026-01-10
C001
AlphaFlow
Content
318
13
0
156.93
0
0
0.0409
2026-01-10
C001
AlphaFlow
LinkedIn Ads
515
21
0
111.52
0
0
0.0408
2026-01-10
C001
AlphaFlow
Partnerships
124
17
0
94.16
0
0
0.1371
2026-01-10
C001
AlphaFlow
Outbound Sales
231
13
0
111.52
0
0
0.0563
2026-01-10
C001
AlphaFlow
Referral
609
37
2
140.93
825.42
0.0541
0.0608
2026-01-11
C001
AlphaFlow
SEO
0
0
0
118.09
0
0
0
2026-01-11
C001
AlphaFlow
Paid Search
123
2
0
61.03
0
0
0.0163
2026-01-11
C001
AlphaFlow
Content
328
4
0
94.47
0
0
0.0122
2026-01-11
C001
AlphaFlow
LinkedIn Ads
364
22
0
67.13
0
0
0.0604
2026-01-11
C001
AlphaFlow
Partnerships
250
3
0
56.68
0
0
0.012
2026-01-11
C001
AlphaFlow
Outbound Sales
485
21
0
67.13
0
0
0.0433
2026-01-11
C001
AlphaFlow
Referral
464
23
1
84.85
541.1
0.0435
0.0496
2026-01-12
C001
AlphaFlow
SEO
436
1
0
232.24
0
0
0.0023
2026-01-12
C001
AlphaFlow
Paid Search
0
0
0
120.02
0
0
0
2026-01-12
C001
AlphaFlow
Content
570
20
0
185.79
0
0
0.0351
2026-01-12
C001
AlphaFlow
LinkedIn Ads
583
8
0
132.03
0
0
0.0137
2026-01-12
C001
AlphaFlow
Partnerships
175
7
0
111.48
0
0
0.04
2026-01-12
C001
AlphaFlow
Outbound Sales
489
21
0
132.03
0
0
0.0429
2026-01-12
C001
AlphaFlow
Referral
796
55
2
166.83
825.61
0.0364
0.0691
2026-01-13
C001
AlphaFlow
SEO
329
2
0
233.23
0
0
0.0061
2026-01-13
C001
AlphaFlow
Paid Search
602
20
0
120.53
0
0
0.0332
2026-01-13
C001
AlphaFlow
Content
400
7
0
186.58
0
0
0.0175
2026-01-13
C001
AlphaFlow
LinkedIn Ads
441
23
0
132.59
0
0
0.0522
2026-01-13
C001
AlphaFlow
Partnerships
300
23
0
111.95
0
0
0.0767
2026-01-13
C001
AlphaFlow
Outbound Sales
307
6
0
132.59
0
0
0.0195
2026-01-13
C001
AlphaFlow
Referral
665
64
2
167.54
955.27
0.0312
0.0962
2026-01-14
C001
AlphaFlow
SEO
134
8
0
205.67
0
0
0.0597
2026-01-14
C001
AlphaFlow
Paid Search
606
24
0
106.29
0
0
0.0396
2026-01-14
C001
AlphaFlow
Content
278
10
0
164.53
0
0
0.036
2026-01-14
C001
AlphaFlow
LinkedIn Ads
492
2
0
116.92
0
0
0.0041
2026-01-14
C001
AlphaFlow
Partnerships
416
25
0
98.72
0
0
0.0601
2026-01-14
C001
AlphaFlow
Outbound Sales
330
19
0
116.92
0
0
0.0576
2026-01-14
C001
AlphaFlow
Referral
728
94
2
147.75
1,094.48
0.0213
0.1291
2026-01-15
C001
AlphaFlow
SEO
534
30
1
341.85
423.7
0.0333
0.0562
2026-01-15
C001
AlphaFlow
Paid Search
87
5
0
176.67
0
0
0.0575
End of preview.

YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.


license: cc-by-4.0

task_categories:

  • tabular-classification

  • tabular-regression

  • time-series-forecasting

language:

  • en

tags:

  • synthetic

  • saas

  • business-intelligence

  • analytics

  • dashboards

  • startup

  • growth

  • mrr

  • cac

  • ltv

  • churn

  • marketing

  • tabular

pretty_name: Solstice SaaS Growth Pack

size_categories:

  • 1K<n<10K

configs:

  • config_name: companies

    data_files:

    • split: train

      path: companies.csv

  • config_name: growth_metrics

    data_files:

    • split: train

      path: growth_metrics.csv

  • config_name: channel_performance

    data_files:

    • split: train

      path: channel_performance.csv

  • config_name: customer_segments

    data_files:

    • split: train

      path: customer_segments.csv

  • config_name: metric_definitions

    data_files:

    • split: train

      path: metric_definitions.csv

  • config_name: dashboard_suggestions

    data_files:

    • split: train

      path: dashboard_suggestions.csv


Solstice SaaS Growth Pack (Sample)

A dashboard-ready synthetic SaaS metrics dataset. Import the 6 CSVs straight into any BI tool and have a credible SaaS growth dashboard in under 10 minutes β€” no cleanup, no modeling.

Built by Solstice AI Studio as a free sample of a larger commercial pack. 100% synthetic β€” no real company, customer, or personal data.

What's in the box

| File | Rows | Grain | Purpose |

|---|---|---|---|

| companies.csv | 6 | company | Master dimension β€” 6 synthetic startups spanning 6 distinct growth narratives |

| growth_metrics.csv | 540 | date Γ— company | Daily revenue, MRR, customer counts, CAC, LTV, churn |

| channel_performance.csv | 3,780 | date Γ— company Γ— channel | Marketing channel impressions, clicks, conversions, cost, attribution |

| customer_segments.csv | 18 | company Γ— segment | SMB / Mid-Market / Enterprise unit economics |

| metric_definitions.csv | 7 | metric | Self-documenting formulas |

| dashboard_suggestions.csv | 8 | chart | 4 starter dashboards with suggested axes |

Period: 90 days. Currency: USD. Dates: ISO-8601 (YYYY-MM-DD). Join key: company_id.

Growth narratives included

Each company embodies a distinct SaaS growth profile β€” so dashboards show realistic variance instead of random noise:

  • Steady PLG β€” strong SEO/content/referral, efficient long-term growth

  • Paid accelerator β€” aggressive paid acquisition, higher CAC

  • Enterprise lumpy β€” quarter-end deal spikes, lower churn

  • Seasonal B2C β€” demand seasonality and periodic swings

  • Churn recovery β€” visible churn event followed by stabilization

  • Capital infusion β€” growth acceleration after mid-period expansion

Why this dataset

Clean joins, zero cleanup. Stable IDs, one clear grain per table, no null-heavy columns, no ambiguous foreign keys. Import order: companies β†’ growth_metrics β†’ channel_performance β†’ customer_segments.

Pre-calculated SaaS metrics. MRR, CAC, LTV, churn rate, conversion rate, CTR β€” all included, formulas documented in metric_definitions.csv. Users get to insight on first import.

Cross-table consistency. Daily channel conversions sum exactly to new_customers. Daily channel cost sums exactly to marketing_spend. Active customer counts respect prev + new βˆ’ churned = active on every row.

Realistic magnitudes. Daily revenue reconciles to MRR over a month. ARR, LTV:CAC, and payback periods sit in credible SaaS ranges.

Use cases

  • Instant demo dashboards for BI / analytics tools

  • User onboarding & first-value experiences

  • SaaS metrics dashboard templates

  • Product showcase & sales enablement

  • Analytics workflow testing (imports, joins, filters)

  • Startup & growth analytics education

  • Customer success & retention analysis

  • Marketing performance & attribution analysis

Quick start



companies.csv           β†’ dimension table


growth_metrics.csv      β†’ primary fact (time Γ— company)


channel_performance.csv β†’ secondary fact (time Γ— company Γ— channel)


customer_segments.csv   β†’ segment roll-up

Join key is company_id. All dates are ISO-8601. All currency is USD.

Suggested first dashboard: SaaS Growth Overview

  • Line chart: date Γ— revenue, filter by company_name

  • Dual-axis line: date Γ— (mrr, active_customers), filter by company_name

Full dashboard recipes in dashboard_suggestions.csv.

Load with pandas



import pandas as pd





companies = pd.read_csv("companies.csv")


growth = pd.read_csv("growth_metrics.csv", parse_dates=["date"])


channels = pd.read_csv("channel_performance.csv", parse_dates=["date"])


segments = pd.read_csv("customer_segments.csv")





# Monthly MRR per company


monthly_mrr = (


    growth.assign(month=growth["date"].dt.to_period("M"))


          .groupby(["company_name", "month"])["mrr"].mean()


          .reset_index()


)

Data quality checklist

  • All foreign keys resolve (0 orphans)

  • No nulls in required columns

  • No negative revenue, spend, or counts

  • Derived metrics reproduce from inputs (mrr, cac, ltv, churn_rate, conversion_rate, click_through_rate)

  • Continuity invariant holds: prev_active + new βˆ’ churned = active on every row

  • impressions β‰₯ clicks β‰₯ conversions on every channel row

Schema

See SCHEMA.md for full column definitions, join model, metric formulas, and synthetic profile documentation.

License

Released under CC BY 4.0 β€” use freely for demos, research, internal tooling, education, and commercial templates. Attribution appreciated.

Synthetic data only β€” no real company, customer, or personal information.

Get the full pack

This repo is a 6-company, 90-day sample. The production pack scales to any company count (12 / 50 / 500+), any date range (1 quarter / 1 year / 3 years), any seed for reproducibility, custom growth-profile mixes, and custom industry / channel configurations.

Self-serve (Stripe checkout):

Full pack + enterprise scope:

  • www.solsticestudio.ai/datasets β€” per-SKU pricing across Starter / Professional / Enterprise tiers, plus commercial licensing, custom generation, and buyer-specific variants.

Procurement catalog:

Citation



@dataset{solstice_saas_growth_pack_2026,


  title        = {Solstice SaaS Growth Pack (Sample)},


  author       = {Solstice AI Studio},


  year         = {2026},


  publisher    = {Hugging Face},


  url          = {https://huggingface.co/datasets/solsticestudioai/saas-growth-pack}


}

Downloads last month
59