-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsample.json
40 lines (40 loc) · 971 Bytes
/
sample.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"regression_result_set": {
"models": [
{
"model_type": "OLS",
"sample_size": 1324.0,
"model_name": "Table 3 in Krumhanzl",
"goodness_of_fit": 0.9
}
],
"independent_variables": [
{
"variable_description": "pupil / teacher ratio",
"variable_name": "PupilTeach"
},
{
"variable_description": "size of class",
"variable_name": "ClassN"
}
],
"effects": [
{
"independent_variable": "PupilTeach",
"model_name": "Table 3 in Krumhanzl",
"standard_error": 2.5,
"significance": -10.5
},
{
"independent_variable": "ClassN",
"model_name": "Table 3 in Krumhanzl",
"standard_error": null,
"significance": null
}
],
"dependent_variable": {
"variable_description": "Job performance after school",
"variable_name": "Performance"
}
}
}