structurecc 3.3.1 → 3.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/commands/structure.md +7 -4
- package/package.json +1 -1
package/commands/structure.md
CHANGED
|
@@ -192,6 +192,9 @@ Output as JSON with this schema:
|
|
|
192
192
|
|
|
193
193
|
Figures are data, not decorations. Extract the actual values.
|
|
194
194
|
|
|
195
|
+
**READ THE GRID:** Estimate values by finding where each data point falls on the x/y axes.
|
|
196
|
+
Example: if a point is halfway between 0.2 and 0.4 on y-axis, record ~0.3.
|
|
197
|
+
|
|
195
198
|
{
|
|
196
199
|
"figure_type": "bar_chart|line_graph|scatter_plot|kaplan_meier|forest_plot|other",
|
|
197
200
|
"description": "Brief description (SECONDARY to actual data)",
|
|
@@ -201,16 +204,16 @@ Figures are data, not decorations. Extract the actual values.
|
|
|
201
204
|
},
|
|
202
205
|
"data_series": [ // REQUIRED - the actual data, not optional
|
|
203
206
|
{
|
|
204
|
-
"name": "HSV
|
|
207
|
+
"name": "HSV: Dementia Risk",
|
|
205
208
|
"color": "purple",
|
|
206
209
|
"line_type": "step",
|
|
207
|
-
"values": [[0, 0], [1000, 0.
|
|
210
|
+
"values": [[0, 0], [1000, 0.02], [2000, 0.05], [3000, 0.08], [4000, 0.12], [5000, 0.18], [6000, 0.22], [6500, 0.32], [7000, 0.35]]
|
|
208
211
|
},
|
|
209
212
|
{
|
|
210
|
-
"name": "Control
|
|
213
|
+
"name": "Control: Dementia Risk",
|
|
211
214
|
"color": "blue",
|
|
212
215
|
"line_type": "step",
|
|
213
|
-
"values": [[0, 0], [
|
|
216
|
+
"values": [[0, 0], [3000, 0.02], [4000, 0.04], [5000, 0.06], [6000, 0.07], [7000, 0.08]]
|
|
214
217
|
}
|
|
215
218
|
],
|
|
216
219
|
"legend": ["HSV Group", "Control Group", "HSV 95% CI", "Control 95% CI"],
|
package/package.json
CHANGED