solsticestudioai commited on
Commit
da70aed
·
verified ·
1 Parent(s): c95286d

Point all canonical links at www.solsticestudio.ai/datasets

Browse files
Files changed (1) hide show
  1. README.md +155 -156
README.md CHANGED
@@ -1,156 +1,155 @@
1
- ---
2
- license: cc-by-4.0
3
- task_categories:
4
- - tabular-classification
5
- - tabular-regression
6
- - time-series-forecasting
7
- language:
8
- - en
9
- tags:
10
- - synthetic
11
- - energy
12
- - solar
13
- - battery
14
- - residential-energy
15
- - vpp
16
- - virtual-power-plant
17
- - distributed-energy
18
- - tariff-modeling
19
- - outage-resilience
20
- - analytics
21
- - tabular
22
- pretty_name: Solstice Residential Energy Pack
23
- size_categories:
24
- - 100K<n<1M
25
- configs:
26
- - config_name: households
27
- data_files:
28
- - split: train
29
- path: households.csv
30
- - config_name: daily_generation_consumption
31
- data_files:
32
- - split: train
33
- path: daily_generation_consumption.csv
34
- - config_name: dispatch_events
35
- data_files:
36
- - split: train
37
- path: dispatch_events.csv
38
- - config_name: billing_and_savings
39
- data_files:
40
- - split: train
41
- path: billing_and_savings.csv
42
- - config_name: metric_definitions
43
- data_files:
44
- - split: train
45
- path: metric_definitions.csv
46
- - config_name: dashboard_suggestions
47
- data_files:
48
- - split: train
49
- path: dashboard_suggestions.csv
50
- ---
51
-
52
- # Solstice Residential Energy Pack (Sample)
53
-
54
- **A synthetic residential solar-plus-storage operations dataset for VPP dispatch, tariff-aware savings, billing, and outage resilience.** This sample is designed for product demos, analytics workflows, dashboard prototyping, and AI model validation where real customer or utility data is unavailable or too sensitive to use.
55
-
56
- Built by [SolsticeAI](https://www.solsticestudio.ai) as a free sample of a larger commercial pack. 100% synthetic. No real customer, meter, or utility records.
57
-
58
- ## What is included
59
-
60
- | File | Rows | Grain | Purpose |
61
- |---|---:|---|---|
62
- | `households.csv` | 500 | household | Household archetypes, geography, electrification, and outage risk |
63
- | `daily_generation_consumption.csv` | 90,000 | date x household | Load, solar generation, import/export, battery usage, and daily savings |
64
- | `dispatch_events.csv` | 5,819 | dispatch event | Requested vs delivered dispatch, participation, incentives, and grid value |
65
- | `billing_and_savings.csv` | 3,000 | month x household | Counterfactual bills, subscription payments, credits, and net customer value |
66
- | `metric_definitions.csv` | 3 | metric | Metric formulas and table-level documentation |
67
- | `dashboard_suggestions.csv` | 3 | chart | Starter dashboard recipes for product and analytics teams |
68
-
69
- **Coverage:** USA
70
- **Period:** 6 months (`2025-01-01` to `2025-06-29`)
71
- **Join key:** `household_id`
72
- **Formats in this sample repo:** CSV
73
-
74
- ## Why this dataset is useful
75
-
76
- Most public solar or energy datasets are either too generic, too narrow, or detached from the operating model of a residential energy business. This sample is shaped around the questions a solar-plus-storage platform, VPP operator, DERMS vendor, or energy analytics team actually cares about:
77
-
78
- - Which household profiles create the highest dispatch value?
79
- - How much do tariff design and load shape affect savings?
80
- - Which homes deliver the most outage resilience value?
81
- - How reliable is dispatch participation across a residential fleet?
82
- - How do billing, credits, and contract economics affect customer value?
83
-
84
- ## What makes the sample credible
85
-
86
- - Stable relational keys and business-readable tables
87
- - Daily operational energy facts rather than flat summary rows
88
- - Dispatch, billing, and savings data tied to the same household base
89
- - Structured for dashboarding, workflow testing, demos, and model development
90
- - Synthetic by design, so it can be shared safely across internal and external teams
91
-
92
- ## Typical use cases
93
-
94
- - Residential energy product demos
95
- - VPP dispatch and participation analytics
96
- - Tariff-aware savings analysis
97
- - Billing workflow and customer-value testing
98
- - Outage resilience reporting
99
- - AI model validation on structured energy operations data
100
- - Dashboard and BI template development
101
-
102
- ## Quick start
103
-
104
- ```python
105
- import pandas as pd
106
-
107
- households = pd.read_csv("households.csv")
108
- daily = pd.read_csv("daily_generation_consumption.csv", parse_dates=["date"])
109
- dispatch = pd.read_csv("dispatch_events.csv", parse_dates=["date"])
110
- billing = pd.read_csv("billing_and_savings.csv")
111
-
112
- # Example: average savings by state
113
- savings_by_state = (
114
- daily.merge(households[["household_id", "state"]], on="household_id", how="left")
115
- .groupby("state")["customer_savings_usd"]
116
- .mean()
117
- .reset_index()
118
- )
119
- ```
120
-
121
- ## Schema
122
-
123
- See [SCHEMA.md](./SCHEMA.md) for the full field definitions and pack design.
124
- See `manifest.json` for sample generation metadata and row counts.
125
-
126
- ## License
127
-
128
- Released under **CC BY 4.0**. Use freely for demos, internal tooling, research, education, and commercial prototyping with attribution.
129
-
130
- Synthetic data only. No real customer, patient, meter, or utility information.
131
-
132
- ## Get the full pack
133
-
134
- This Hugging Face repo is a **500-household, 6-month sample**. The production pack scales to 5,000–25,000+ households, 12+ month historical windows, additional tables (tariffs, outage events, service tickets, contracts, installations, enrollment, portfolio KPIs), CSV and Parquet delivery, and buyer-specific variants.
135
-
136
- **Self-serve (Stripe checkout):**
137
- - [**Sample Scale tier — $5,000**](https://buy.stripe.com/7sY5kD2j85QTfSb5lfeEo03) — ~25K records, one subject, 72-hour delivery.
138
-
139
- **Full pack + enterprise scope:**
140
- - [www.solsticestudio.ai/datasets](https://www.solsticestudio.ai/datasets) — per-SKU pricing across Starter / Professional / Enterprise tiers.
141
- - [www.solsticestudio.ai/datasets](https://www.solsticestudio.ai/contact) — discovery call for commercial licensing, custom generation, or buyer-specific variants.
142
-
143
- **Procurement catalog:**
144
- - [SolsticeAI Data Storefront](https://solsticeai.mydatastorefront.com) — available via Datarade / Monda.
145
-
146
- ## Citation
147
-
148
- ```bibtex
149
- @dataset{solstice_residential_energy_pack_2026,
150
- title = {Solstice Residential Energy Pack (Sample)},
151
- author = {SolsticeAI},
152
- year = {2026},
153
- publisher = {Hugging Face},
154
- url = {https://huggingface.co/datasets/solsticestudioai/solstice-residential-energy-pack}
155
- }
156
- ```
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - tabular-classification
5
+ - tabular-regression
6
+ - time-series-forecasting
7
+ language:
8
+ - en
9
+ tags:
10
+ - synthetic
11
+ - energy
12
+ - solar
13
+ - battery
14
+ - residential-energy
15
+ - vpp
16
+ - virtual-power-plant
17
+ - distributed-energy
18
+ - tariff-modeling
19
+ - outage-resilience
20
+ - analytics
21
+ - tabular
22
+ pretty_name: Solstice Residential Energy Pack
23
+ size_categories:
24
+ - 100K<n<1M
25
+ configs:
26
+ - config_name: households
27
+ data_files:
28
+ - split: train
29
+ path: households.csv
30
+ - config_name: daily_generation_consumption
31
+ data_files:
32
+ - split: train
33
+ path: daily_generation_consumption.csv
34
+ - config_name: dispatch_events
35
+ data_files:
36
+ - split: train
37
+ path: dispatch_events.csv
38
+ - config_name: billing_and_savings
39
+ data_files:
40
+ - split: train
41
+ path: billing_and_savings.csv
42
+ - config_name: metric_definitions
43
+ data_files:
44
+ - split: train
45
+ path: metric_definitions.csv
46
+ - config_name: dashboard_suggestions
47
+ data_files:
48
+ - split: train
49
+ path: dashboard_suggestions.csv
50
+ ---
51
+
52
+ # Solstice Residential Energy Pack (Sample)
53
+
54
+ **A synthetic residential solar-plus-storage operations dataset for VPP dispatch, tariff-aware savings, billing, and outage resilience.** This sample is designed for product demos, analytics workflows, dashboard prototyping, and AI model validation where real customer or utility data is unavailable or too sensitive to use.
55
+
56
+ Built by [SolsticeAI](https://www.solsticestudio.ai/datasets) as a free sample of a larger commercial pack. 100% synthetic. No real customer, meter, or utility records.
57
+
58
+ ## What is included
59
+
60
+ | File | Rows | Grain | Purpose |
61
+ |---|---:|---|---|
62
+ | `households.csv` | 500 | household | Household archetypes, geography, electrification, and outage risk |
63
+ | `daily_generation_consumption.csv` | 90,000 | date x household | Load, solar generation, import/export, battery usage, and daily savings |
64
+ | `dispatch_events.csv` | 5,819 | dispatch event | Requested vs delivered dispatch, participation, incentives, and grid value |
65
+ | `billing_and_savings.csv` | 3,000 | month x household | Counterfactual bills, subscription payments, credits, and net customer value |
66
+ | `metric_definitions.csv` | 3 | metric | Metric formulas and table-level documentation |
67
+ | `dashboard_suggestions.csv` | 3 | chart | Starter dashboard recipes for product and analytics teams |
68
+
69
+ **Coverage:** USA
70
+ **Period:** 6 months (`2025-01-01` to `2025-06-29`)
71
+ **Join key:** `household_id`
72
+ **Formats in this sample repo:** CSV
73
+
74
+ ## Why this dataset is useful
75
+
76
+ Most public solar or energy datasets are either too generic, too narrow, or detached from the operating model of a residential energy business. This sample is shaped around the questions a solar-plus-storage platform, VPP operator, DERMS vendor, or energy analytics team actually cares about:
77
+
78
+ - Which household profiles create the highest dispatch value?
79
+ - How much do tariff design and load shape affect savings?
80
+ - Which homes deliver the most outage resilience value?
81
+ - How reliable is dispatch participation across a residential fleet?
82
+ - How do billing, credits, and contract economics affect customer value?
83
+
84
+ ## What makes the sample credible
85
+
86
+ - Stable relational keys and business-readable tables
87
+ - Daily operational energy facts rather than flat summary rows
88
+ - Dispatch, billing, and savings data tied to the same household base
89
+ - Structured for dashboarding, workflow testing, demos, and model development
90
+ - Synthetic by design, so it can be shared safely across internal and external teams
91
+
92
+ ## Typical use cases
93
+
94
+ - Residential energy product demos
95
+ - VPP dispatch and participation analytics
96
+ - Tariff-aware savings analysis
97
+ - Billing workflow and customer-value testing
98
+ - Outage resilience reporting
99
+ - AI model validation on structured energy operations data
100
+ - Dashboard and BI template development
101
+
102
+ ## Quick start
103
+
104
+ ```python
105
+ import pandas as pd
106
+
107
+ households = pd.read_csv("households.csv")
108
+ daily = pd.read_csv("daily_generation_consumption.csv", parse_dates=["date"])
109
+ dispatch = pd.read_csv("dispatch_events.csv", parse_dates=["date"])
110
+ billing = pd.read_csv("billing_and_savings.csv")
111
+
112
+ # Example: average savings by state
113
+ savings_by_state = (
114
+ daily.merge(households[["household_id", "state"]], on="household_id", how="left")
115
+ .groupby("state")["customer_savings_usd"]
116
+ .mean()
117
+ .reset_index()
118
+ )
119
+ ```
120
+
121
+ ## Schema
122
+
123
+ See [SCHEMA.md](./SCHEMA.md) for the full field definitions and pack design.
124
+ See `manifest.json` for sample generation metadata and row counts.
125
+
126
+ ## License
127
+
128
+ Released under **CC BY 4.0**. Use freely for demos, internal tooling, research, education, and commercial prototyping with attribution.
129
+
130
+ Synthetic data only. No real customer, patient, meter, or utility information.
131
+
132
+ ## Get the full pack
133
+
134
+ This Hugging Face repo is a **500-household, 6-month sample**. The production pack scales to 5,000–25,000+ households, 12+ month historical windows, additional tables (tariffs, outage events, service tickets, contracts, installations, enrollment, portfolio KPIs), CSV and Parquet delivery, and buyer-specific variants.
135
+
136
+ **Self-serve (Stripe checkout):**
137
+ - [**Sample Scale tier — $5,000**](https://buy.stripe.com/7sY5kD2j85QTfSb5lfeEo03) — ~25K records, one subject, 72-hour delivery.
138
+
139
+ **Full pack + enterprise scope:**
140
+ - [www.solsticestudio.ai/datasets](https://www.solsticestudio.ai/datasets) — per-SKU pricing across Starter / Professional / Enterprise tiers, plus commercial licensing, custom generation, and buyer-specific variants.
141
+
142
+ **Procurement catalog:**
143
+ - [SolsticeAI Data Storefront](https://solsticeai.mydatastorefront.com) — available via Datarade / Monda.
144
+
145
+ ## Citation
146
+
147
+ ```bibtex
148
+ @dataset{solstice_residential_energy_pack_2026,
149
+ title = {Solstice Residential Energy Pack (Sample)},
150
+ author = {SolsticeAI},
151
+ year = {2026},
152
+ publisher = {Hugging Face},
153
+ url = {https://huggingface.co/datasets/solsticestudioai/solstice-residential-energy-pack}
154
+ }
155
+ ```