Datasets:
Upload 3 files
Browse files- README.md +20 -0
- student performance.py +175 -0
- student_performance.csv +1001 -0
README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- student performance
|
| 6 |
+
- tabular_classification
|
| 7 |
+
- binary_classification
|
| 8 |
+
pretty_name: Student Performance
|
| 9 |
+
size_categories:
|
| 10 |
+
- 100<n<1K
|
| 11 |
+
task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts
|
| 12 |
+
- tabular-classification
|
| 13 |
+
configs:
|
| 14 |
+
- encoding
|
| 15 |
+
- math
|
| 16 |
+
- writing
|
| 17 |
+
- reading
|
| 18 |
+
---
|
| 19 |
+
# Student performance
|
| 20 |
+
The [Student performance dataset](https://www.kaggle.com/datasets/ulrikthygepedersen/student_performances) is cool.
|
student performance.py
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""StudentPerformance Dataset"""
|
| 2 |
+
|
| 3 |
+
from typing import List
|
| 4 |
+
from functools import partial
|
| 5 |
+
|
| 6 |
+
import datasets
|
| 7 |
+
|
| 8 |
+
import pandas
|
| 9 |
+
|
| 10 |
+
|
| 11 |
+
VERSION = datasets.Version("1.0.0")
|
| 12 |
+
_BASE_FEATURE_NAMES = [
|
| 13 |
+
"sex",
|
| 14 |
+
"ethnicity",
|
| 15 |
+
"parental_level_of_education",
|
| 16 |
+
"has_standard_lunch",
|
| 17 |
+
"has_completed_preparation_test",
|
| 18 |
+
"math_score",
|
| 19 |
+
"reading_score",
|
| 20 |
+
"writing_score"
|
| 21 |
+
]
|
| 22 |
+
|
| 23 |
+
_ENCODING_DICS = {
|
| 24 |
+
"gender": {
|
| 25 |
+
"\"female\"": 0,
|
| 26 |
+
"\"male\"": 1
|
| 27 |
+
},
|
| 28 |
+
"parental_level_of_education": {
|
| 29 |
+
"some high school": 0,
|
| 30 |
+
"high school": 1,
|
| 31 |
+
"some college": 2,
|
| 32 |
+
"bachelor's degree": 3,
|
| 33 |
+
"master's degree": 4,
|
| 34 |
+
"associate's degree": 5,
|
| 35 |
+
},
|
| 36 |
+
"has_standard_lunch" : {
|
| 37 |
+
"free/reduced": 0,
|
| 38 |
+
"standard": 1
|
| 39 |
+
},
|
| 40 |
+
"has_completed_preparation_test": {
|
| 41 |
+
"none": 0,
|
| 42 |
+
"completed": 1
|
| 43 |
+
}
|
| 44 |
+
}
|
| 45 |
+
|
| 46 |
+
DESCRIPTION = "StudentPerformance dataset."
|
| 47 |
+
_HOMEPAGE = "https://www.kaggle.com/datasets/ulrikthygepedersen/student_performances"
|
| 48 |
+
_URLS = ("https://www.kaggle.com/datasets/ulrikthygepedersen/student_performances")
|
| 49 |
+
_CITATION = """"""
|
| 50 |
+
|
| 51 |
+
# Dataset info
|
| 52 |
+
urls_per_split = {
|
| 53 |
+
"train": "https://huggingface.co/datasets/mstz/student_performances/raw/main/student_performances.csv",
|
| 54 |
+
}
|
| 55 |
+
features_types_per_config = {
|
| 56 |
+
"encoding": {
|
| 57 |
+
"feature": datasets.Value("string"),
|
| 58 |
+
"original_value": datasets.Value("string"),
|
| 59 |
+
"encoded_value": datasets.Value("int64")
|
| 60 |
+
},
|
| 61 |
+
"math": {
|
| 62 |
+
"sex": datasets.Value("int8"),
|
| 63 |
+
"ethnicity": datasets.Value("string"),
|
| 64 |
+
"parental_level_of_education": datasets.Value("int8"),
|
| 65 |
+
"has_standard_lunch": datasets.Value("int8"),
|
| 66 |
+
"test_preparation_course": datasets.Value("string"),
|
| 67 |
+
"reading_score": datasets.Value("int64"),
|
| 68 |
+
"writing_score": datasets.Value("int64"),
|
| 69 |
+
"has_passed_math_exam": datasets.ClassLabel(num_classes=2, names=("no", "yes"))
|
| 70 |
+
},
|
| 71 |
+
"writing": {
|
| 72 |
+
"sex": datasets.Value("int8"),
|
| 73 |
+
"ethnicity": datasets.Value("string"),
|
| 74 |
+
"parental_level_of_education": datasets.Value("int8"),
|
| 75 |
+
"has_standard_lunch": datasets.Value("int8"),
|
| 76 |
+
"test_preparation_course": datasets.Value("string"),
|
| 77 |
+
"reading_score": datasets.Value("int64"),
|
| 78 |
+
"math_score": datasets.Value("int64"),
|
| 79 |
+
"has_passed_writing_exam": datasets.ClassLabel(num_classes=2, names=("no", "yes")),
|
| 80 |
+
},
|
| 81 |
+
"reading": {
|
| 82 |
+
"sex": datasets.Value("int8"),
|
| 83 |
+
"ethnicity": datasets.Value("string"),
|
| 84 |
+
"parental_level_of_education": datasets.Value("int8"),
|
| 85 |
+
"has_standard_lunch": datasets.Value("int8"),
|
| 86 |
+
"test_preparation_course": datasets.Value("string"),
|
| 87 |
+
"writing_score": datasets.Value("int64"),
|
| 88 |
+
"math_score": datasets.Value("int64"),
|
| 89 |
+
"has_passed_reading_exam": datasets.ClassLabel(num_classes=2, names=("no", "yes")),
|
| 90 |
+
}
|
| 91 |
+
}
|
| 92 |
+
features_per_config = {k: datasets.Features(features_types_per_config[k]) for k in features_types_per_config}
|
| 93 |
+
|
| 94 |
+
|
| 95 |
+
class StudentPerformanceConfig(datasets.BuilderConfig):
|
| 96 |
+
def __init__(self, **kwargs):
|
| 97 |
+
super(StudentPerformanceConfig, self).__init__(version=VERSION, **kwargs)
|
| 98 |
+
self.features = features_per_config[kwargs["name"]]
|
| 99 |
+
|
| 100 |
+
|
| 101 |
+
class StudentPerformance(datasets.GeneratorBasedBuilder):
|
| 102 |
+
# dataset versions
|
| 103 |
+
DEFAULT_CONFIG = "math"
|
| 104 |
+
BUILDER_CONFIGS = [
|
| 105 |
+
StudentPerformanceConfig(name="encoding",
|
| 106 |
+
description="Encoding dictionaries."),
|
| 107 |
+
StudentPerformanceConfig(name="math",
|
| 108 |
+
description="Binary classification, predict if the student has passed the math exam."),
|
| 109 |
+
StudentPerformanceConfig(name="reading",
|
| 110 |
+
description="Binary classification, predict if the student has passed the reading exam."),
|
| 111 |
+
StudentPerformanceConfig(name="writing",
|
| 112 |
+
description="Binary classification, predict if the student has passed the writing exam."),
|
| 113 |
+
]
|
| 114 |
+
|
| 115 |
+
|
| 116 |
+
def _info(self):
|
| 117 |
+
if self.config.name not in features_per_config:
|
| 118 |
+
raise ValueError(f"Unknown configuration: {self.config.name}")
|
| 119 |
+
|
| 120 |
+
info = datasets.DatasetInfo(description=DESCRIPTION, citation=_CITATION, homepage=_HOMEPAGE,
|
| 121 |
+
features=features_per_config[self.config.name])
|
| 122 |
+
|
| 123 |
+
return info
|
| 124 |
+
|
| 125 |
+
def _split_generators(self, dl_manager: datasets.DownloadManager) -> List[datasets.SplitGenerator]:
|
| 126 |
+
downloads = dl_manager.download_and_extract(urls_per_split)
|
| 127 |
+
|
| 128 |
+
return [
|
| 129 |
+
datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": downloads["train"]}),
|
| 130 |
+
]
|
| 131 |
+
|
| 132 |
+
def _generate_examples(self, filepath: str):
|
| 133 |
+
data = pandas.read_csv(filepath)
|
| 134 |
+
data = self.preprocess(data, config=self.config.name)
|
| 135 |
+
|
| 136 |
+
for row_id, row in data.iterrows():
|
| 137 |
+
data_row = dict(row)
|
| 138 |
+
|
| 139 |
+
yield row_id, data_row
|
| 140 |
+
|
| 141 |
+
def preprocess(self, data: pandas.DataFrame, config: str = "cut") -> pandas.DataFrame:
|
| 142 |
+
if config == "encoding":
|
| 143 |
+
return self.encoding_dics()
|
| 144 |
+
|
| 145 |
+
data.columns = [c.replace("\"", "") for c in data.columns]
|
| 146 |
+
|
| 147 |
+
data.loc[:, "race/ethnicity"] = data["race/ethnicity"].apply(lambda x: x.replace("group ", ""))
|
| 148 |
+
|
| 149 |
+
for feature in _ENCODING_DICS:
|
| 150 |
+
encoding_function = partial(self.encode, feature)
|
| 151 |
+
data.loc[:, feature] = data[feature].apply(encoding_function)
|
| 152 |
+
|
| 153 |
+
data.columns = _BASE_FEATURE_NAMES
|
| 154 |
+
|
| 155 |
+
if config == "math":
|
| 156 |
+
data = data.rename(colums={"math_score", "has_passed_math_exam"})
|
| 157 |
+
return data[list(features_types_per_config["math"].keys())]
|
| 158 |
+
elif config == "reading":
|
| 159 |
+
data = data.rename(colums={"reading_score", "has_passed_reading_exam"})
|
| 160 |
+
return data[list(features_types_per_config["reading"].keys())]
|
| 161 |
+
elif config == "writing":
|
| 162 |
+
data = data.rename(colums={"writing_score", "has_passed_writing_exam"})
|
| 163 |
+
return data[list(features_types_per_config["writing"].keys())]
|
| 164 |
+
else:
|
| 165 |
+
raise ValueError(f"Unknown config: {config}")
|
| 166 |
+
|
| 167 |
+
def encode(self, feature, value):
|
| 168 |
+
return _ENCODING_DICS[feature][value]
|
| 169 |
+
|
| 170 |
+
def encoding_dics(self):
|
| 171 |
+
data = [pandas.Dataframe([(feature, original, encoded) for original, encoded in d.items()])
|
| 172 |
+
for feature, d in _ENCODING_DICS.items()]
|
| 173 |
+
data = pandas.concat(data, axis="rows")
|
| 174 |
+
|
| 175 |
+
return data
|
student_performance.csv
ADDED
|
@@ -0,0 +1,1001 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"gender","race/ethnicity","parental level of education","lunch","test preparation course","math score","reading score","writing score"
|
| 2 |
+
"female","group D","some college","standard","completed","59","70","78"
|
| 3 |
+
"male","group D","associate's degree","standard","none","96","93","87"
|
| 4 |
+
"female","group D","some college","free/reduced","none","57","76","77"
|
| 5 |
+
"male","group B","some college","free/reduced","none","70","70","63"
|
| 6 |
+
"female","group D","associate's degree","standard","none","83","85","86"
|
| 7 |
+
"male","group C","some high school","standard","none","68","57","54"
|
| 8 |
+
"female","group E","associate's degree","standard","none","82","83","80"
|
| 9 |
+
"female","group B","some high school","standard","none","46","61","58"
|
| 10 |
+
"male","group C","some high school","standard","none","80","75","73"
|
| 11 |
+
"female","group C","bachelor's degree","standard","completed","57","69","77"
|
| 12 |
+
"male","group B","some high school","standard","none","74","69","69"
|
| 13 |
+
"male","group B","master's degree","standard","none","53","50","49"
|
| 14 |
+
"male","group B","bachelor's degree","free/reduced","none","76","74","76"
|
| 15 |
+
"male","group A","some college","standard","none","70","73","70"
|
| 16 |
+
"male","group C","master's degree","free/reduced","none","55","54","52"
|
| 17 |
+
"male","group E","master's degree","free/reduced","none","56","46","43"
|
| 18 |
+
"female","group C","some college","free/reduced","none","35","47","41"
|
| 19 |
+
"female","group C","high school","standard","none","87","92","81"
|
| 20 |
+
"female","group E","associate's degree","free/reduced","none","80","82","85"
|
| 21 |
+
"female","group D","associate's degree","standard","completed","65","71","74"
|
| 22 |
+
"male","group C","high school","free/reduced","none","66","66","62"
|
| 23 |
+
"female","group D","associate's degree","standard","completed","67","71","76"
|
| 24 |
+
"female","group B","some college","standard","none","70","71","71"
|
| 25 |
+
"male","group E","associate's degree","standard","none","89","88","86"
|
| 26 |
+
"male","group D","associate's degree","standard","completed","99","85","88"
|
| 27 |
+
"male","group B","some college","standard","none","74","83","72"
|
| 28 |
+
"male","group D","high school","free/reduced","none","58","52","51"
|
| 29 |
+
"male","group D","some high school","standard","none","70","66","59"
|
| 30 |
+
"female","group E","associate's degree","standard","none","80","79","71"
|
| 31 |
+
"male","group D","associate's degree","standard","none","90","87","86"
|
| 32 |
+
"female","group B","associate's degree","standard","completed","80","81","85"
|
| 33 |
+
"female","group D","associate's degree","free/reduced","none","68","76","79"
|
| 34 |
+
"female","group B","high school","free/reduced","completed","69","78","75"
|
| 35 |
+
"female","group D","master's degree","free/reduced","none","32","35","37"
|
| 36 |
+
"male","group D","high school","standard","completed","82","82","82"
|
| 37 |
+
"female","group A","some high school","standard","none","57","53","54"
|
| 38 |
+
"female","group E","some college","free/reduced","none","69","74","75"
|
| 39 |
+
"male","group D","associate's degree","standard","completed","68","66","72"
|
| 40 |
+
"male","group C","associate's degree","free/reduced","completed","74","85","87"
|
| 41 |
+
"male","group E","master's degree","standard","none","89","85","78"
|
| 42 |
+
"male","group C","associate's degree","free/reduced","completed","46","46","48"
|
| 43 |
+
"male","group C","associate's degree","standard","completed","76","82","77"
|
| 44 |
+
"male","group B","high school","standard","none","86","82","72"
|
| 45 |
+
"male","group D","some college","standard","none","69","73","67"
|
| 46 |
+
"female","group B","high school","standard","none","52","56","54"
|
| 47 |
+
"male","group C","bachelor's degree","standard","none","63","71","65"
|
| 48 |
+
"male","group A","associate's degree","standard","completed","96","82","90"
|
| 49 |
+
"male","group C","some college","standard","completed","80","76","68"
|
| 50 |
+
"female","group E","high school","standard","none","59","52","56"
|
| 51 |
+
"male","group D","some high school","standard","completed","80","77","80"
|
| 52 |
+
"female","group E","high school","free/reduced","completed","65","77","74"
|
| 53 |
+
"female","group E","master's degree","free/reduced","completed","74","83","84"
|
| 54 |
+
"male","group D","some high school","standard","none","90","93","84"
|
| 55 |
+
"female","group B","some college","standard","completed","69","72","72"
|
| 56 |
+
"male","group C","high school","standard","none","69","67","63"
|
| 57 |
+
"female","group C","some college","standard","none","62","64","61"
|
| 58 |
+
"female","group D","master's degree","standard","none","67","75","80"
|
| 59 |
+
"female","group E","some high school","standard","completed","89","93","93"
|
| 60 |
+
"female","group C","bachelor's degree","standard","none","79","86","78"
|
| 61 |
+
"male","group C","some high school","standard","none","67","66","66"
|
| 62 |
+
"male","group D","some high school","standard","completed","82","74","75"
|
| 63 |
+
"male","group C","some high school","free/reduced","completed","63","69","63"
|
| 64 |
+
"female","group D","some college","free/reduced","none","71","83","80"
|
| 65 |
+
"female","group C","associate's degree","standard","none","55","68","73"
|
| 66 |
+
"female","group B","high school","free/reduced","none","61","74","71"
|
| 67 |
+
"female","group B","associate's degree","free/reduced","none","35","34","36"
|
| 68 |
+
"male","group C","high school","free/reduced","none","75","77","66"
|
| 69 |
+
"female","group B","some high school","free/reduced","completed","73","91","88"
|
| 70 |
+
"female","group C","high school","free/reduced","none","56","62","57"
|
| 71 |
+
"male","group D","associate's degree","standard","none","80","70","73"
|
| 72 |
+
"male","group C","some high school","standard","completed","83","81","78"
|
| 73 |
+
"female","group D","some college","free/reduced","completed","64","82","80"
|
| 74 |
+
"female","group C","some high school","standard","none","23","33","33"
|
| 75 |
+
"female","group D","some high school","free/reduced","completed","41","58","59"
|
| 76 |
+
"male","group E","some college","standard","completed","61","49","52"
|
| 77 |
+
"male","group B","bachelor's degree","standard","none","63","46","46"
|
| 78 |
+
"male","group B","associate's degree","free/reduced","completed","84","91","89"
|
| 79 |
+
"male","group C","some college","standard","none","55","61","59"
|
| 80 |
+
"male","group A","associate's degree","standard","completed","85","75","74"
|
| 81 |
+
"male","group B","high school","standard","none","65","61","57"
|
| 82 |
+
"male","group C","associate's degree","standard","none","88","80","81"
|
| 83 |
+
"male","group D","master's degree","free/reduced","completed","91","93","95"
|
| 84 |
+
"female","group A","some college","standard","none","51","46","42"
|
| 85 |
+
"male","group C","some college","standard","completed","73","77","76"
|
| 86 |
+
"female","group D","some college","standard","none","73","89","89"
|
| 87 |
+
"male","group D","master's degree","standard","none","100","97","91"
|
| 88 |
+
"female","group D","some high school","standard","completed","48","68","68"
|
| 89 |
+
"male","group E","some college","standard","none","98","79","85"
|
| 90 |
+
"male","group B","master's degree","standard","none","68","65","60"
|
| 91 |
+
"male","group C","bachelor's degree","standard","none","64","62","58"
|
| 92 |
+
"male","group C","associate's degree","free/reduced","completed","72","67","61"
|
| 93 |
+
"female","group C","bachelor's degree","standard","none","63","74","75"
|
| 94 |
+
"male","group C","some college","standard","none","43","51","38"
|
| 95 |
+
"male","group D","some college","standard","none","80","75","74"
|
| 96 |
+
"female","group C","some college","standard","none","71","88","83"
|
| 97 |
+
"female","group C","associate's degree","standard","completed","91","96","97"
|
| 98 |
+
"female","group D","some college","standard","completed","68","84","87"
|
| 99 |
+
"female","group B","associate's degree","standard","none","73","80","78"
|
| 100 |
+
"female","group B","high school","free/reduced","completed","75","90","95"
|
| 101 |
+
"male","group C","some college","free/reduced","none","83","62","64"
|
| 102 |
+
"male","group D","high school","standard","none","88","72","74"
|
| 103 |
+
"male","group C","bachelor's degree","standard","none","59","50","53"
|
| 104 |
+
"male","group D","associate's degree","standard","none","74","69","63"
|
| 105 |
+
"female","group C","some college","free/reduced","none","43","58","60"
|
| 106 |
+
"female","group C","high school","free/reduced","none","76","90","84"
|
| 107 |
+
"female","group D","some high school","standard","none","74","75","74"
|
| 108 |
+
"female","group B","some high school","standard","completed","69","76","72"
|
| 109 |
+
"female","group B","some high school","standard","none","62","78","74"
|
| 110 |
+
"male","group C","associate's degree","free/reduced","completed","61","58","56"
|
| 111 |
+
"male","group E","some college","standard","none","88","81","77"
|
| 112 |
+
"female","group D","some high school","free/reduced","completed","64","84","83"
|
| 113 |
+
"female","group B","bachelor's degree","standard","none","65","79","73"
|
| 114 |
+
"female","group C","some college","standard","completed","73","86","89"
|
| 115 |
+
"female","group C","master's degree","standard","completed","50","64","63"
|
| 116 |
+
"female","group B","associate's degree","standard","completed","63","72","78"
|
| 117 |
+
"female","group E","bachelor's degree","standard","none","98","95","100"
|
| 118 |
+
"female","group E","high school","standard","none","90","96","88"
|
| 119 |
+
"male","group C","high school","free/reduced","completed","64","71","68"
|
| 120 |
+
"female","group B","high school","free/reduced","none","38","55","52"
|
| 121 |
+
"female","group B","bachelor's degree","standard","none","84","91","93"
|
| 122 |
+
"male","group D","high school","standard","completed","81","74","79"
|
| 123 |
+
"male","group D","master's degree","standard","none","82","84","81"
|
| 124 |
+
"female","group D","associate's degree","free/reduced","completed","64","67","75"
|
| 125 |
+
"female","group B","high school","standard","none","55","60","67"
|
| 126 |
+
"female","group D","bachelor's degree","free/reduced","completed","59","78","80"
|
| 127 |
+
"female","group E","some college","standard","none","83","90","88"
|
| 128 |
+
"male","group B","associate's degree","standard","completed","76","79","80"
|
| 129 |
+
"female","group D","some high school","standard","completed","83","95","97"
|
| 130 |
+
"female","group C","associate's degree","standard","none","69","75","75"
|
| 131 |
+
"female","group C","some college","free/reduced","none","43","65","60"
|
| 132 |
+
"female","group C","associate's degree","free/reduced","none","52","65","60"
|
| 133 |
+
"female","group C","some college","standard","none","56","58","55"
|
| 134 |
+
"male","group D","some high school","free/reduced","completed","47","46","51"
|
| 135 |
+
"male","group D","master's degree","standard","none","71","61","63"
|
| 136 |
+
"female","group C","master's degree","standard","completed","66","70","83"
|
| 137 |
+
"male","group C","some college","standard","none","81","65","60"
|
| 138 |
+
"female","group E","master's degree","standard","none","85","90","88"
|
| 139 |
+
"female","group E","master's degree","standard","none","76","77","77"
|
| 140 |
+
"female","group D","some college","free/reduced","none","50","66","66"
|
| 141 |
+
"male","group C","high school","standard","none","76","81","74"
|
| 142 |
+
"male","group C","some college","standard","none","65","64","61"
|
| 143 |
+
"female","group D","high school","standard","none","59","69","64"
|
| 144 |
+
"male","group C","high school","standard","none","84","77","80"
|
| 145 |
+
"male","group E","bachelor's degree","standard","none","85","77","78"
|
| 146 |
+
"female","group D","associate's degree","standard","none","61","56","60"
|
| 147 |
+
"female","group A","bachelor's degree","standard","completed","73","79","81"
|
| 148 |
+
"male","group D","some high school","standard","none","82","77","72"
|
| 149 |
+
"female","group E","associate's degree","standard","none","75","70","71"
|
| 150 |
+
"male","group C","bachelor's degree","standard","none","91","83","82"
|
| 151 |
+
"female","group C","master's degree","standard","none","67","78","80"
|
| 152 |
+
"male","group D","high school","standard","completed","62","69","67"
|
| 153 |
+
"male","group B","master's degree","standard","none","61","56","52"
|
| 154 |
+
"female","group C","high school","standard","none","66","77","80"
|
| 155 |
+
"male","group A","master's degree","standard","none","59","57","51"
|
| 156 |
+
"male","group E","some college","standard","none","88","76","81"
|
| 157 |
+
"female","group B","associate's degree","free/reduced","none","67","73","74"
|
| 158 |
+
"female","group B","associate's degree","standard","completed","91","99","100"
|
| 159 |
+
"male","group C","associate's degree","free/reduced","completed","87","82","79"
|
| 160 |
+
"male","group B","some college","standard","completed","83","79","80"
|
| 161 |
+
"female","group D","associate's degree","standard","none","70","79","76"
|
| 162 |
+
"male","group E","associate's degree","standard","none","83","83","78"
|
| 163 |
+
"male","group C","associate's degree","standard","none","49","53","47"
|
| 164 |
+
"male","group D","high school","standard","completed","65","60","57"
|
| 165 |
+
"male","group B","associate's degree","free/reduced","completed","50","56","55"
|
| 166 |
+
"male","group A","some college","standard","none","62","58","57"
|
| 167 |
+
"male","group E","bachelor's degree","standard","none","56","50","50"
|
| 168 |
+
"female","group C","associate's degree","standard","none","44","49","53"
|
| 169 |
+
"female","group E","some high school","free/reduced","none","63","72","60"
|
| 170 |
+
"male","group D","high school","standard","completed","72","69","74"
|
| 171 |
+
"female","group D","bachelor's degree","free/reduced","completed","64","77","77"
|
| 172 |
+
"female","group B","some college","standard","completed","61","75","82"
|
| 173 |
+
"male","group D","some college","free/reduced","none","82","72","69"
|
| 174 |
+
"female","group A","some high school","standard","completed","57","68","74"
|
| 175 |
+
"male","group E","master's degree","standard","none","43","45","38"
|
| 176 |
+
"male","group D","some high school","standard","none","69","56","59"
|
| 177 |
+
"female","group D","master's degree","standard","none","62","71","74"
|
| 178 |
+
"female","group B","some high school","standard","none","60","73","68"
|
| 179 |
+
"male","group E","high school","standard","none","81","70","70"
|
| 180 |
+
"female","group C","associate's degree","free/reduced","completed","68","84","87"
|
| 181 |
+
"male","group C","associate's degree","standard","none","65","63","57"
|
| 182 |
+
"female","group B","high school","standard","none","59","72","67"
|
| 183 |
+
"female","group B","associate's degree","standard","none","81","89","86"
|
| 184 |
+
"male","group A","master's degree","free/reduced","none","84","85","87"
|
| 185 |
+
"female","group A","high school","standard","completed","56","68","70"
|
| 186 |
+
"male","group B","master's degree","free/reduced","completed","71","75","73"
|
| 187 |
+
"female","group D","master's degree","free/reduced","none","93","98","94"
|
| 188 |
+
"female","group C","high school","standard","none","77","81","85"
|
| 189 |
+
"male","group C","some college","standard","none","50","40","44"
|
| 190 |
+
"female","group D","some college","standard","none","75","75","78"
|
| 191 |
+
"female","group C","bachelor's degree","standard","none","64","82","80"
|
| 192 |
+
"male","group C","bachelor's degree","standard","none","77","65","69"
|
| 193 |
+
"female","group A","some high school","standard","completed","64","81","87"
|
| 194 |
+
"male","group B","some high school","standard","none","71","63","55"
|
| 195 |
+
"male","group D","some high school","free/reduced","completed","58","57","53"
|
| 196 |
+
"female","group D","high school","free/reduced","none","47","66","66"
|
| 197 |
+
"male","group D","associate's degree","standard","none","57","63","54"
|
| 198 |
+
"male","group C","some college","standard","completed","82","89","86"
|
| 199 |
+
"female","group B","master's degree","standard","none","53","61","59"
|
| 200 |
+
"female","group C","associate's degree","free/reduced","completed","89","98","99"
|
| 201 |
+
"female","group E","some college","standard","completed","89","94","94"
|
| 202 |
+
"female","group A","some college","free/reduced","completed","75","97","92"
|
| 203 |
+
"male","group D","some college","free/reduced","none","62","61","57"
|
| 204 |
+
"female","group B","high school","standard","none","63","76","67"
|
| 205 |
+
"male","group E","high school","standard","none","100","91","85"
|
| 206 |
+
"female","group B","associate's degree","standard","none","62","81","77"
|
| 207 |
+
"female","group B","associate's degree","standard","none","75","95","94"
|
| 208 |
+
"male","group C","some college","standard","none","51","56","53"
|
| 209 |
+
"male","group E","master's degree","free/reduced","none","74","67","67"
|
| 210 |
+
"male","group C","high school","free/reduced","none","66","66","58"
|
| 211 |
+
"male","group C","some high school","standard","completed","52","59","59"
|
| 212 |
+
"male","group E","master's degree","free/reduced","none","69","56","56"
|
| 213 |
+
"female","group E","some high school","free/reduced","completed","46","57","57"
|
| 214 |
+
"female","group E","some college","standard","none","74","77","73"
|
| 215 |
+
"male","group B","master's degree","standard","none","100","90","88"
|
| 216 |
+
"male","group A","some high school","standard","none","83","77","77"
|
| 217 |
+
"male","group D","associate's degree","free/reduced","completed","82","78","90"
|
| 218 |
+
"female","group D","high school","standard","none","58","66","70"
|
| 219 |
+
"male","group A","some high school","free/reduced","completed","59","55","58"
|
| 220 |
+
"female","group D","high school","standard","none","77","90","82"
|
| 221 |
+
"female","group E","high school","standard","none","61","61","57"
|
| 222 |
+
"male","group C","master's degree","standard","none","85","81","80"
|
| 223 |
+
"female","group E","high school","free/reduced","completed","59","68","68"
|
| 224 |
+
"female","group C","master's degree","free/reduced","completed","71","92","93"
|
| 225 |
+
"female","group E","some high school","standard","none","52","71","70"
|
| 226 |
+
"female","group D","some college","standard","none","62","62","68"
|
| 227 |
+
"male","group B","associate's degree","standard","none","47","48","49"
|
| 228 |
+
"male","group D","some college","standard","completed","96","92","88"
|
| 229 |
+
"female","group E","some high school","standard","none","48","60","57"
|
| 230 |
+
"male","group C","high school","free/reduced","none","20","25","15"
|
| 231 |
+
"female","group C","some high school","standard","none","70","75","76"
|
| 232 |
+
"male","group B","high school","free/reduced","completed","59","62","58"
|
| 233 |
+
"female","group E","associate's degree","free/reduced","none","80","80","83"
|
| 234 |
+
"female","group B","some college","standard","none","83","88","90"
|
| 235 |
+
"male","group C","bachelor's degree","standard","none","75","71","76"
|
| 236 |
+
"male","group D","some college","free/reduced","completed","73","68","72"
|
| 237 |
+
"female","group C","associate's degree","standard","none","78","78","82"
|
| 238 |
+
"male","group B","bachelor's degree","standard","completed","94","82","93"
|
| 239 |
+
"female","group B","some high school","free/reduced","completed","46","63","66"
|
| 240 |
+
"male","group D","some college","free/reduced","completed","77","77","77"
|
| 241 |
+
"male","group B","some high school","standard","none","63","56","47"
|
| 242 |
+
"male","group B","bachelor's degree","standard","completed","64","70","72"
|
| 243 |
+
"female","group D","some high school","free/reduced","none","60","69","70"
|
| 244 |
+
"female","group D","some college","standard","none","74","79","73"
|
| 245 |
+
"female","group B","high school","free/reduced","none","67","77","81"
|
| 246 |
+
"male","group C","high school","standard","completed","78","81","80"
|
| 247 |
+
"male","group C","high school","standard","completed","88","75","72"
|
| 248 |
+
"female","group C","associate's degree","free/reduced","completed","52","64","66"
|
| 249 |
+
"male","group C","high school","standard","none","88","66","73"
|
| 250 |
+
"male","group A","high school","standard","completed","78","88","85"
|
| 251 |
+
"female","group C","high school","standard","none","55","62","61"
|
| 252 |
+
"female","group C","some college","standard","none","71","69","73"
|
| 253 |
+
"male","group C","high school","free/reduced","none","75","79","68"
|
| 254 |
+
"male","group B","bachelor's degree","standard","completed","62","60","55"
|
| 255 |
+
"female","group B","bachelor's degree","standard","completed","66","73","72"
|
| 256 |
+
"male","group D","bachelor's degree","standard","none","39","45","36"
|
| 257 |
+
"male","group B","some college","standard","none","85","80","73"
|
| 258 |
+
"female","group B","high school","free/reduced","none","46","57","53"
|
| 259 |
+
"male","group C","master's degree","free/reduced","completed","57","64","66"
|
| 260 |
+
"female","group B","associate's degree","standard","completed","65","78","81"
|
| 261 |
+
"male","group C","some college","standard","none","86","82","72"
|
| 262 |
+
"male","group C","some high school","standard","none","59","50","41"
|
| 263 |
+
"female","group D","some high school","free/reduced","completed","49","69","68"
|
| 264 |
+
"male","group B","some college","free/reduced","none","51","50","44"
|
| 265 |
+
"female","group A","associate's degree","standard","none","53","57","60"
|
| 266 |
+
"female","group C","some college","standard","none","82","84","83"
|
| 267 |
+
"female","group C","high school","free/reduced","none","51","68","66"
|
| 268 |
+
"female","group D","some high school","standard","none","74","79","79"
|
| 269 |
+
"female","group D","master's degree","free/reduced","none","73","72","75"
|
| 270 |
+
"female","group D","high school","free/reduced","none","42","61","63"
|
| 271 |
+
"female","group C","some college","free/reduced","completed","41","59","56"
|
| 272 |
+
"female","group C","some college","standard","none","84","88","84"
|
| 273 |
+
"female","group D","some college","free/reduced","completed","64","66","62"
|
| 274 |
+
"female","group E","high school","free/reduced","none","74","88","75"
|
| 275 |
+
"male","group C","associate's degree","standard","none","91","84","77"
|
| 276 |
+
"male","group D","associate's degree","standard","none","67","72","65"
|
| 277 |
+
"female","group B","high school","standard","none","54","56","59"
|
| 278 |
+
"female","group D","master's degree","standard","none","44","39","37"
|
| 279 |
+
"female","group C","master's degree","standard","completed","65","84","86"
|
| 280 |
+
"male","group A","associate's degree","standard","none","37","40","36"
|
| 281 |
+
"female","group A","associate's degree","free/reduced","none","58","75","78"
|
| 282 |
+
"female","group C","bachelor's degree","free/reduced","none","69","78","78"
|
| 283 |
+
"male","group C","some high school","standard","none","64","56","51"
|
| 284 |
+
"female","group C","high school","standard","none","70","63","63"
|
| 285 |
+
"female","group B","high school","free/reduced","none","55","68","66"
|
| 286 |
+
"female","group B","some college","standard","completed","45","63","67"
|
| 287 |
+
"male","group E","some college","standard","completed","80","70","71"
|
| 288 |
+
"male","group A","some college","standard","none","77","73","69"
|
| 289 |
+
"male","group B","bachelor's degree","free/reduced","none","57","54","44"
|
| 290 |
+
"female","group C","bachelor's degree","standard","none","67","72","72"
|
| 291 |
+
"female","group A","master's degree","standard","none","68","70","72"
|
| 292 |
+
"male","group C","high school","standard","none","49","53","43"
|
| 293 |
+
"female","group D","associate's degree","standard","none","42","48","42"
|
| 294 |
+
"female","group E","associate's degree","standard","none","96","93","100"
|
| 295 |
+
"female","group C","bachelor's degree","free/reduced","none","55","56","54"
|
| 296 |
+
"male","group D","master's degree","standard","none","70","65","56"
|
| 297 |
+
"male","group C","bachelor's degree","free/reduced","none","51","53","51"
|
| 298 |
+
"female","group B","some college","free/reduced","completed","27","49","50"
|
| 299 |
+
"male","group D","high school","standard","none","60","54","47"
|
| 300 |
+
"female","group B","some high school","standard","none","44","56","47"
|
| 301 |
+
"female","group C","high school","standard","completed","63","73","74"
|
| 302 |
+
"female","group C","associate's degree","standard","none","72","77","75"
|
| 303 |
+
"female","group D","some high school","standard","none","82","77","80"
|
| 304 |
+
"female","group B","bachelor's degree","standard","completed","82","85","99"
|
| 305 |
+
"female","group A","some high school","standard","none","70","82","83"
|
| 306 |
+
"male","group E","high school","free/reduced","completed","76","61","61"
|
| 307 |
+
"female","group C","bachelor's degree","free/reduced","completed","62","68","74"
|
| 308 |
+
"female","group B","high school","free/reduced","none","58","62","54"
|
| 309 |
+
"female","group A","high school","standard","none","61","73","70"
|
| 310 |
+
"male","group B","bachelor's degree","standard","completed","88","82","82"
|
| 311 |
+
"female","group C","some college","standard","none","61","64","54"
|
| 312 |
+
"male","group D","high school","standard","completed","88","77","78"
|
| 313 |
+
"male","group E","some high school","free/reduced","none","57","45","46"
|
| 314 |
+
"female","group D","high school","standard","completed","92","95","93"
|
| 315 |
+
"male","group C","master's degree","standard","none","80","79","73"
|
| 316 |
+
"male","group A","some high school","standard","none","62","54","52"
|
| 317 |
+
"female","group D","some college","standard","none","71","74","80"
|
| 318 |
+
"female","group D","high school","free/reduced","none","54","58","63"
|
| 319 |
+
"male","group A","some college","free/reduced","none","43","43","40"
|
| 320 |
+
"female","group C","some college","standard","none","51","57","60"
|
| 321 |
+
"male","group C","some high school","standard","none","57","46","44"
|
| 322 |
+
"male","group C","some high school","standard","completed","62","71","62"
|
| 323 |
+
"female","group B","some high school","standard","none","48","59","55"
|
| 324 |
+
"male","group C","associate's degree","free/reduced","completed","61","69","62"
|
| 325 |
+
"female","group D","some high school","standard","completed","94","91","98"
|
| 326 |
+
"male","group B","some college","free/reduced","none","44","45","41"
|
| 327 |
+
"female","group C","associate's degree","standard","none","56","71","70"
|
| 328 |
+
"male","group D","associate's degree","free/reduced","none","68","69","55"
|
| 329 |
+
"male","group D","some college","free/reduced","none","61","53","48"
|
| 330 |
+
"female","group C","high school","standard","completed","49","68","67"
|
| 331 |
+
"female","group D","some college","standard","none","71","71","76"
|
| 332 |
+
"female","group E","some high school","standard","none","78","86","80"
|
| 333 |
+
"male","group D","associate's degree","standard","none","74","70","63"
|
| 334 |
+
"male","group C","high school","standard","none","66","63","63"
|
| 335 |
+
"male","group C","some high school","free/reduced","none","61","56","53"
|
| 336 |
+
"male","group D","some college","free/reduced","none","59","45","44"
|
| 337 |
+
"female","group B","high school","free/reduced","none","49","65","62"
|
| 338 |
+
"female","group B","associate's degree","free/reduced","none","61","68","67"
|
| 339 |
+
"female","group C","bachelor's degree","free/reduced","completed","54","57","63"
|
| 340 |
+
"female","group B","high school","free/reduced","completed","45","61","63"
|
| 341 |
+
"female","group D","bachelor's degree","free/reduced","completed","81","96","99"
|
| 342 |
+
"female","group B","associate's degree","standard","none","71","87","87"
|
| 343 |
+
"male","group B","associate's degree","standard","none","67","60","61"
|
| 344 |
+
"female","group D","some college","standard","none","56","53","58"
|
| 345 |
+
"female","group B","high school","free/reduced","completed","60","66","64"
|
| 346 |
+
"male","group D","associate's degree","standard","none","95","86","83"
|
| 347 |
+
"male","group B","some college","standard","none","60","59","53"
|
| 348 |
+
"male","group B","some college","standard","none","60","55","52"
|
| 349 |
+
"male","group B","bachelor's degree","standard","none","82","68","69"
|
| 350 |
+
"male","group B","some college","free/reduced","none","78","68","70"
|
| 351 |
+
"female","group C","associate's degree","standard","none","57","67","64"
|
| 352 |
+
"male","group A","some college","standard","none","72","77","67"
|
| 353 |
+
"female","group B","some high school","standard","none","37","51","43"
|
| 354 |
+
"male","group C","some college","standard","none","72","76","64"
|
| 355 |
+
"male","group B","some college","free/reduced","none","52","57","49"
|
| 356 |
+
"male","group A","high school","standard","completed","80","72","72"
|
| 357 |
+
"male","group D","associate's degree","standard","none","89","78","76"
|
| 358 |
+
"female","group C","some college","standard","completed","84","88","87"
|
| 359 |
+
"female","group B","some high school","standard","none","67","73","76"
|
| 360 |
+
"female","group B","master's degree","standard","completed","59","75","79"
|
| 361 |
+
"male","group C","some college","standard","completed","95","85","80"
|
| 362 |
+
"female","group B","master's degree","standard","none","71","68","68"
|
| 363 |
+
"female","group C","high school","standard","none","72","76","74"
|
| 364 |
+
"male","group E","high school","standard","completed","83","80","82"
|
| 365 |
+
"male","group E","some high school","standard","none","94","86","82"
|
| 366 |
+
"male","group B","some college","free/reduced","completed","58","57","58"
|
| 367 |
+
"male","group C","bachelor's degree","standard","completed","75","62","65"
|
| 368 |
+
"female","group B","some high school","free/reduced","none","65","83","77"
|
| 369 |
+
"female","group C","bachelor's degree","free/reduced","completed","68","78","83"
|
| 370 |
+
"female","group C","some high school","free/reduced","none","34","44","43"
|
| 371 |
+
"male","group E","some college","standard","none","97","96","89"
|
| 372 |
+
"female","group D","high school","standard","none","44","47","55"
|
| 373 |
+
"male","group D","some high school","standard","completed","60","57","60"
|
| 374 |
+
"female","group C","high school","free/reduced","completed","66","81","75"
|
| 375 |
+
"male","group E","high school","standard","none","96","94","93"
|
| 376 |
+
"female","group B","high school","free/reduced","none","39","60","52"
|
| 377 |
+
"male","group C","some college","free/reduced","none","56","57","62"
|
| 378 |
+
"male","group C","high school","standard","none","31","27","19"
|
| 379 |
+
"female","group C","bachelor's degree","standard","completed","74","79","84"
|
| 380 |
+
"male","group D","bachelor's degree","standard","completed","100","100","100"
|
| 381 |
+
"female","group A","high school","standard","completed","68","75","73"
|
| 382 |
+
"female","group C","associate's degree","free/reduced","completed","79","89","96"
|
| 383 |
+
"male","group E","bachelor's degree","free/reduced","none","62","69","60"
|
| 384 |
+
"female","group A","associate's degree","standard","none","72","85","81"
|
| 385 |
+
"female","group C","some college","standard","none","66","78","75"
|
| 386 |
+
"male","group C","high school","standard","completed","64","66","69"
|
| 387 |
+
"female","group C","some high school","standard","none","62","64","64"
|
| 388 |
+
"female","group E","bachelor's degree","free/reduced","completed","68","82","86"
|
| 389 |
+
"male","group C","some college","free/reduced","completed","70","75","74"
|
| 390 |
+
"female","group E","bachelor's degree","free/reduced","none","63","61","64"
|
| 391 |
+
"female","group D","high school","standard","completed","91","100","100"
|
| 392 |
+
"female","group D","some college","standard","none","58","62","63"
|
| 393 |
+
"male","group E","some college","standard","none","75","66","59"
|
| 394 |
+
"female","group C","associate's degree","free/reduced","none","44","55","61"
|
| 395 |
+
"female","group C","some college","free/reduced","none","68","64","64"
|
| 396 |
+
"male","group C","bachelor's degree","free/reduced","none","65","61","57"
|
| 397 |
+
"female","group D","some college","free/reduced","completed","66","71","87"
|
| 398 |
+
"male","group C","bachelor's degree","free/reduced","none","73","69","70"
|
| 399 |
+
"female","group B","associate's degree","free/reduced","none","67","76","76"
|
| 400 |
+
"female","group C","associate's degree","free/reduced","none","66","73","69"
|
| 401 |
+
"male","group E","some college","standard","none","81","78","68"
|
| 402 |
+
"male","group E","some high school","standard","none","77","62","57"
|
| 403 |
+
"female","group D","some college","free/reduced","none","43","48","53"
|
| 404 |
+
"female","group C","bachelor's degree","standard","none","58","70","72"
|
| 405 |
+
"male","group C","some college","free/reduced","none","65","77","70"
|
| 406 |
+
"male","group C","high school","standard","none","92","89","83"
|
| 407 |
+
"male","group D","some high school","standard","completed","56","48","54"
|
| 408 |
+
"female","group D","master's degree","standard","none","65","73","77"
|
| 409 |
+
"male","group D","associate's degree","standard","none","72","67","59"
|
| 410 |
+
"male","group D","some high school","standard","completed","100","84","87"
|
| 411 |
+
"female","group C","high school","standard","none","69","81","70"
|
| 412 |
+
"male","group D","some college","standard","completed","70","66","68"
|
| 413 |
+
"male","group E","high school","standard","none","90","80","78"
|
| 414 |
+
"male","group C","high school","standard","none","90","79","75"
|
| 415 |
+
"female","group D","high school","standard","completed","63","78","74"
|
| 416 |
+
"female","group D","associate's degree","standard","none","40","51","51"
|
| 417 |
+
"female","group A","high school","standard","none","64","72","66"
|
| 418 |
+
"male","group C","some college","standard","none","90","76","71"
|
| 419 |
+
"male","group C","some college","standard","none","76","74","73"
|
| 420 |
+
"male","group B","some college","free/reduced","none","42","48","33"
|
| 421 |
+
"female","group D","bachelor's degree","free/reduced","completed","45","68","71"
|
| 422 |
+
"male","group D","bachelor's degree","standard","none","76","65","70"
|
| 423 |
+
"male","group C","some high school","standard","completed","63","69","68"
|
| 424 |
+
"male","group E","some college","standard","completed","84","77","79"
|
| 425 |
+
"female","group A","bachelor's degree","free/reduced","none","62","75","73"
|
| 426 |
+
"female","group C","associate's degree","free/reduced","completed","69","76","82"
|
| 427 |
+
"male","group C","some high school","standard","none","77","79","76"
|
| 428 |
+
"male","group D","bachelor's degree","standard","none","63","65","58"
|
| 429 |
+
"male","group C","high school","standard","completed","72","67","67"
|
| 430 |
+
"male","group E","associate's degree","standard","none","75","68","68"
|
| 431 |
+
"female","group C","bachelor's degree","standard","none","61","66","71"
|
| 432 |
+
"female","group A","high school","standard","none","79","97","85"
|
| 433 |
+
"female","group D","high school","standard","none","53","66","64"
|
| 434 |
+
"male","group B","some college","standard","completed","77","68","66"
|
| 435 |
+
"male","group A","high school","free/reduced","none","44","49","43"
|
| 436 |
+
"male","group B","high school","standard","none","44","50","37"
|
| 437 |
+
"female","group C","associate's degree","standard","completed","71","84","88"
|
| 438 |
+
"female","group B","associate's degree","standard","completed","60","65","67"
|
| 439 |
+
"male","group B","some high school","standard","none","49","39","33"
|
| 440 |
+
"female","group A","high school","standard","completed","82","95","93"
|
| 441 |
+
"male","group E","master's degree","free/reduced","none","68","70","62"
|
| 442 |
+
"female","group D","some high school","free/reduced","none","58","63","65"
|
| 443 |
+
"female","group B","high school","standard","none","65","68","67"
|
| 444 |
+
"male","group C","associate's degree","standard","none","50","42","35"
|
| 445 |
+
"female","group D","associate's degree","free/reduced","completed","73","72","79"
|
| 446 |
+
"male","group D","some high school","free/reduced","completed","40","50","47"
|
| 447 |
+
"female","group C","some high school","free/reduced","completed","60","67","74"
|
| 448 |
+
"male","group C","associate's degree","free/reduced","none","57","58","51"
|
| 449 |
+
"male","group C","some college","free/reduced","none","57","60","57"
|
| 450 |
+
"female","group B","some high school","standard","none","83","86","89"
|
| 451 |
+
"male","group C","master's degree","standard","none","68","56","57"
|
| 452 |
+
"male","group D","bachelor's degree","standard","none","74","76","73"
|
| 453 |
+
"male","group B","master's degree","free/reduced","none","76","68","70"
|
| 454 |
+
"female","group C","some high school","free/reduced","none","38","45","44"
|
| 455 |
+
"female","group C","high school","standard","none","63","64","59"
|
| 456 |
+
"male","group E","bachelor's degree","free/reduced","none","87","79","72"
|
| 457 |
+
"male","group E","high school","free/reduced","none","81","84","78"
|
| 458 |
+
"female","group D","associate's degree","standard","none","84","90","90"
|
| 459 |
+
"female","group E","high school","free/reduced","completed","68","69","71"
|
| 460 |
+
"female","group A","some high school","free/reduced","none","57","70","71"
|
| 461 |
+
"female","group C","master's degree","standard","none","75","82","81"
|
| 462 |
+
"female","group C","high school","free/reduced","none","39","50","41"
|
| 463 |
+
"female","group D","some high school","standard","completed","54","77","78"
|
| 464 |
+
"male","group D","associate's degree","standard","none","71","73","69"
|
| 465 |
+
"male","group A","some college","standard","none","58","64","55"
|
| 466 |
+
"female","group D","associate's degree","standard","none","61","70","73"
|
| 467 |
+
"female","group D","associate's degree","standard","completed","82","85","94"
|
| 468 |
+
"female","group D","associate's degree","standard","completed","73","87","83"
|
| 469 |
+
"female","group D","some high school","standard","none","52","66","63"
|
| 470 |
+
"male","group B","some high school","free/reduced","none","33","47","32"
|
| 471 |
+
"male","group D","associate's degree","standard","completed","67","68","69"
|
| 472 |
+
"female","group B","some high school","free/reduced","none","61","80","82"
|
| 473 |
+
"female","group E","associate's degree","standard","completed","86","89","96"
|
| 474 |
+
"male","group D","bachelor's degree","standard","completed","98","96","100"
|
| 475 |
+
"male","group C","some college","standard","completed","72","56","63"
|
| 476 |
+
"male","group B","associate's degree","free/reduced","none","60","59","52"
|
| 477 |
+
"male","group C","some college","standard","none","66","68","62"
|
| 478 |
+
"male","group C","some high school","standard","completed","86","89","87"
|
| 479 |
+
"female","group B","high school","standard","none","45","52","51"
|
| 480 |
+
"female","group C","some high school","standard","none","75","86","84"
|
| 481 |
+
"female","group A","associate's degree","standard","none","51","69","65"
|
| 482 |
+
"female","group C","high school","standard","none","21","30","26"
|
| 483 |
+
"male","group D","high school","free/reduced","none","54","53","47"
|
| 484 |
+
"male","group D","high school","standard","none","83","78","74"
|
| 485 |
+
"male","group B","associate's degree","free/reduced","none","74","79","65"
|
| 486 |
+
"male","group C","bachelor's degree","standard","none","73","67","73"
|
| 487 |
+
"male","group D","some high school","free/reduced","completed","69","70","75"
|
| 488 |
+
"female","group C","some college","standard","none","81","93","94"
|
| 489 |
+
"male","group E","bachelor's degree","standard","completed","95","90","89"
|
| 490 |
+
"male","group E","some college","standard","completed","97","88","81"
|
| 491 |
+
"female","group C","master's degree","standard","completed","62","68","75"
|
| 492 |
+
"male","group C","some high school","standard","none","63","57","59"
|
| 493 |
+
"female","group D","high school","standard","completed","50","72","70"
|
| 494 |
+
"female","group D","some high school","standard","none","25","33","32"
|
| 495 |
+
"male","group D","some high school","standard","none","73","67","64"
|
| 496 |
+
"male","group D","associate's degree","free/reduced","completed","57","58","54"
|
| 497 |
+
"male","group C","high school","standard","none","64","62","61"
|
| 498 |
+
"female","group E","high school","standard","none","86","89","87"
|
| 499 |
+
"female","group D","associate's degree","free/reduced","none","62","65","69"
|
| 500 |
+
"male","group D","associate's degree","standard","none","97","94","91"
|
| 501 |
+
"female","group A","some college","standard","none","62","64","63"
|
| 502 |
+
"female","group E","some high school","standard","none","91","97","91"
|
| 503 |
+
"male","group C","associate's degree","free/reduced","completed","60","57","61"
|
| 504 |
+
"male","group E","high school","free/reduced","none","59","55","46"
|
| 505 |
+
"female","group D","associate's degree","standard","none","75","87","90"
|
| 506 |
+
"female","group C","master's degree","standard","completed","79","87","89"
|
| 507 |
+
"female","group C","associate's degree","free/reduced","completed","79","92","97"
|
| 508 |
+
"female","group A","high school","free/reduced","none","34","49","47"
|
| 509 |
+
"male","group D","some high school","free/reduced","none","49","49","43"
|
| 510 |
+
"female","group B","some college","standard","completed","47","58","56"
|
| 511 |
+
"male","group E","associate's degree","standard","none","78","73","65"
|
| 512 |
+
"male","group D","some high school","free/reduced","completed","46","53","54"
|
| 513 |
+
"male","group C","associate's degree","free/reduced","none","72","80","75"
|
| 514 |
+
"female","group D","associate's degree","free/reduced","none","45","61","57"
|
| 515 |
+
"female","group C","associate's degree","free/reduced","none","28","32","28"
|
| 516 |
+
"female","group D","some high school","standard","none","83","92","93"
|
| 517 |
+
"female","group E","some college","standard","completed","86","89","89"
|
| 518 |
+
"female","group D","some high school","free/reduced","completed","64","75","81"
|
| 519 |
+
"male","group B","high school","free/reduced","none","65","55","51"
|
| 520 |
+
"female","group B","some college","free/reduced","completed","69","85","84"
|
| 521 |
+
"female","group B","high school","standard","completed","66","62","66"
|
| 522 |
+
"female","group E","some college","free/reduced","none","41","60","55"
|
| 523 |
+
"male","group D","master's degree","free/reduced","completed","67","71","70"
|
| 524 |
+
"male","group C","bachelor's degree","free/reduced","completed","57","65","56"
|
| 525 |
+
"female","group C","associate's degree","free/reduced","completed","42","50","61"
|
| 526 |
+
"female","group D","high school","free/reduced","none","75","81","87"
|
| 527 |
+
"female","group C","associate's degree","standard","completed","77","90","97"
|
| 528 |
+
"male","group B","master's degree","free/reduced","none","65","65","62"
|
| 529 |
+
"female","group E","some high school","standard","completed","87","90","90"
|
| 530 |
+
"female","group D","high school","free/reduced","completed","72","76","78"
|
| 531 |
+
"female","group E","high school","standard","none","71","83","79"
|
| 532 |
+
"female","group C","some college","free/reduced","completed","60","80","76"
|
| 533 |
+
"female","group D","high school","free/reduced","completed","67","75","84"
|
| 534 |
+
"female","group C","high school","standard","none","54","73","64"
|
| 535 |
+
"male","group B","bachelor's degree","free/reduced","completed","48","59","55"
|
| 536 |
+
"male","group C","high school","standard","completed","67","63","67"
|
| 537 |
+
"male","group B","some high school","free/reduced","completed","58","56","53"
|
| 538 |
+
"female","group C","high school","standard","completed","80","83","86"
|
| 539 |
+
"female","group B","some college","standard","none","84","100","96"
|
| 540 |
+
"male","group C","some college","standard","completed","48","38","46"
|
| 541 |
+
"female","group B","some college","free/reduced","completed","55","67","68"
|
| 542 |
+
"female","group C","some high school","standard","completed","69","84","81"
|
| 543 |
+
"male","group C","high school","standard","none","74","72","62"
|
| 544 |
+
"female","group D","some high school","standard","none","62","68","65"
|
| 545 |
+
"male","group D","high school","standard","completed","76","75","77"
|
| 546 |
+
"male","group B","bachelor's degree","standard","none","84","81","72"
|
| 547 |
+
"male","group E","high school","standard","none","93","86","76"
|
| 548 |
+
"male","group E","associate's degree","standard","none","56","44","44"
|
| 549 |
+
"female","group B","some high school","standard","none","52","65","60"
|
| 550 |
+
"female","group C","some college","standard","completed","81","90","93"
|
| 551 |
+
"male","group E","high school","standard","completed","84","79","75"
|
| 552 |
+
"male","group D","some high school","standard","none","55","50","47"
|
| 553 |
+
"male","group C","high school","free/reduced","completed","54","53","51"
|
| 554 |
+
"male","group B","some high school","free/reduced","none","46","41","40"
|
| 555 |
+
"male","group D","high school","free/reduced","none","48","46","50"
|
| 556 |
+
"male","group C","some high school","standard","none","79","65","67"
|
| 557 |
+
"female","group E","high school","free/reduced","completed","66","66","75"
|
| 558 |
+
"male","group A","associate's degree","free/reduced","completed","56","60","63"
|
| 559 |
+
"female","group E","associate's degree","free/reduced","none","60","74","68"
|
| 560 |
+
"female","group B","associate's degree","standard","none","75","91","81"
|
| 561 |
+
"male","group A","some high school","standard","completed","79","65","65"
|
| 562 |
+
"male","group C","high school","free/reduced","completed","41","57","55"
|
| 563 |
+
"female","group C","associate's degree","free/reduced","none","35","40","45"
|
| 564 |
+
"female","group A","some college","free/reduced","none","54","56","58"
|
| 565 |
+
"male","group C","some high school","standard","none","67","65","62"
|
| 566 |
+
"female","group D","high school","standard","completed","85","98","99"
|
| 567 |
+
"female","group E","associate's degree","standard","none","92","100","99"
|
| 568 |
+
"male","group D","associate's degree","standard","completed","99","100","100"
|
| 569 |
+
"female","group C","some high school","free/reduced","completed","52","59","58"
|
| 570 |
+
"male","group C","associate's degree","free/reduced","none","73","66","68"
|
| 571 |
+
"female","group D","some high school","free/reduced","completed","62","75","79"
|
| 572 |
+
"male","group E","some high school","standard","none","75","71","68"
|
| 573 |
+
"female","group B","associate's degree","standard","none","90","94","93"
|
| 574 |
+
"male","group D","high school","free/reduced","none","54","49","48"
|
| 575 |
+
"male","group D","associate's degree","standard","none","81","74","74"
|
| 576 |
+
"male","group C","some high school","free/reduced","none","74","66","64"
|
| 577 |
+
"male","group B","associate's degree","free/reduced","completed","68","73","72"
|
| 578 |
+
"male","group D","some college","standard","none","74","74","70"
|
| 579 |
+
"male","group C","high school","free/reduced","none","51","57","44"
|
| 580 |
+
"female","group C","some high school","standard","none","68","77","75"
|
| 581 |
+
"male","group B","some college","standard","none","69","59","57"
|
| 582 |
+
"male","group E","some college","standard","completed","100","89","86"
|
| 583 |
+
"female","group C","some college","standard","none","53","59","59"
|
| 584 |
+
"male","group C","bachelor's degree","free/reduced","completed","72","70","70"
|
| 585 |
+
"male","group B","bachelor's degree","free/reduced","none","50","40","38"
|
| 586 |
+
"female","group A","high school","standard","none","61","69","69"
|
| 587 |
+
"male","group C","high school","standard","none","65","69","56"
|
| 588 |
+
"female","group D","high school","free/reduced","none","15","39","40"
|
| 589 |
+
"male","group C","some high school","free/reduced","none","64","56","52"
|
| 590 |
+
"male","group C","high school","standard","none","77","70","60"
|
| 591 |
+
"female","group D","some college","standard","completed","61","63","70"
|
| 592 |
+
"female","group B","high school","free/reduced","completed","49","66","60"
|
| 593 |
+
"male","group C","bachelor's degree","standard","none","70","49","53"
|
| 594 |
+
"male","group A","associate's degree","standard","none","60","56","57"
|
| 595 |
+
"female","group D","some college","standard","none","84","97","96"
|
| 596 |
+
"male","group D","high school","free/reduced","none","51","56","50"
|
| 597 |
+
"male","group C","bachelor's degree","standard","none","74","61","68"
|
| 598 |
+
"female","group B","bachelor's degree","standard","completed","64","77","79"
|
| 599 |
+
"female","group C","some college","standard","completed","67","74","81"
|
| 600 |
+
"male","group C","associate's degree","standard","none","76","61","62"
|
| 601 |
+
"male","group D","some high school","standard","completed","70","66","72"
|
| 602 |
+
"female","group C","some college","standard","none","85","92","84"
|
| 603 |
+
"female","group D","some high school","standard","none","53","55","57"
|
| 604 |
+
"male","group C","high school","standard","none","84","71","66"
|
| 605 |
+
"male","group B","some high school","standard","none","55","49","44"
|
| 606 |
+
"female","group C","high school","standard","none","50","62","63"
|
| 607 |
+
"male","group C","some high school","free/reduced","none","79","77","71"
|
| 608 |
+
"male","group C","associate's degree","standard","none","81","77","71"
|
| 609 |
+
"male","group D","associate's degree","standard","completed","89","75","80"
|
| 610 |
+
"male","group C","associate's degree","free/reduced","completed","59","68","66"
|
| 611 |
+
"male","group D","some college","standard","completed","82","79","81"
|
| 612 |
+
"male","group D","associate's degree","standard","none","86","84","82"
|
| 613 |
+
"female","group D","some college","free/reduced","none","41","58","60"
|
| 614 |
+
"female","group D","master's degree","standard","completed","64","67","72"
|
| 615 |
+
"male","group A","associate's degree","free/reduced","completed","68","71","64"
|
| 616 |
+
"male","group E","high school","free/reduced","completed","74","67","61"
|
| 617 |
+
"female","group C","some college","free/reduced","completed","44","44","53"
|
| 618 |
+
"female","group C","high school","free/reduced","completed","34","66","59"
|
| 619 |
+
"male","group B","some high school","standard","completed","45","50","48"
|
| 620 |
+
"female","group C","master's degree","standard","completed","83","86","90"
|
| 621 |
+
"male","group C","some college","standard","none","55","65","57"
|
| 622 |
+
"male","group E","high school","free/reduced","none","61","56","52"
|
| 623 |
+
"female","group B","high school","standard","completed","81","89","88"
|
| 624 |
+
"male","group B","associate's degree","free/reduced","none","45","52","45"
|
| 625 |
+
"male","group B","high school","standard","none","71","63","61"
|
| 626 |
+
"male","group C","bachelor's degree","standard","completed","62","67","68"
|
| 627 |
+
"female","group E","some college","standard","completed","78","83","76"
|
| 628 |
+
"male","group D","some college","standard","none","76","74","71"
|
| 629 |
+
"female","group A","associate's degree","standard","completed","73","68","81"
|
| 630 |
+
"female","group C","associate's degree","standard","none","82","91","85"
|
| 631 |
+
"male","group D","some college","standard","completed","69","58","60"
|
| 632 |
+
"male","group D","bachelor's degree","free/reduced","none","72","71","65"
|
| 633 |
+
"female","group B","high school","standard","completed","72","73","72"
|
| 634 |
+
"male","group B","associate's degree","free/reduced","none","57","59","62"
|
| 635 |
+
"male","group A","high school","standard","completed","83","71","69"
|
| 636 |
+
"male","group C","some high school","standard","none","68","76","72"
|
| 637 |
+
"female","group C","some high school","free/reduced","completed","62","74","71"
|
| 638 |
+
"male","group D","associate's degree","standard","none","99","97","95"
|
| 639 |
+
"male","group B","high school","standard","completed","88","87","85"
|
| 640 |
+
"female","group C","high school","standard","none","56","68","66"
|
| 641 |
+
"female","group B","associate's degree","standard","none","68","70","76"
|
| 642 |
+
"male","group C","high school","standard","completed","75","69","67"
|
| 643 |
+
"female","group C","some college","standard","none","45","46","47"
|
| 644 |
+
"male","group C","high school","free/reduced","none","72","68","62"
|
| 645 |
+
"male","group E","some college","standard","completed","99","98","93"
|
| 646 |
+
"male","group C","some college","free/reduced","none","76","72","65"
|
| 647 |
+
"female","group B","some high school","free/reduced","completed","64","72","79"
|
| 648 |
+
"female","group B","some college","standard","none","56","61","65"
|
| 649 |
+
"female","group E","some college","free/reduced","none","74","78","81"
|
| 650 |
+
"male","group D","bachelor's degree","standard","completed","97","91","96"
|
| 651 |
+
"female","group B","some college","standard","none","83","89","88"
|
| 652 |
+
"female","group B","bachelor's degree","standard","completed","55","64","63"
|
| 653 |
+
"female","group B","some college","standard","completed","77","90","93"
|
| 654 |
+
"female","group D","bachelor's degree","standard","none","78","80","79"
|
| 655 |
+
"female","group E","some high school","standard","completed","89","95","99"
|
| 656 |
+
"male","group A","high school","standard","none","78","72","66"
|
| 657 |
+
"male","group C","some college","free/reduced","none","33","42","41"
|
| 658 |
+
"female","group D","associate's degree","standard","none","66","72","74"
|
| 659 |
+
"male","group E","some college","standard","completed","87","87","79"
|
| 660 |
+
"female","group B","some college","standard","none","50","48","52"
|
| 661 |
+
"female","group A","high school","standard","none","79","86","84"
|
| 662 |
+
"male","group B","bachelor's degree","free/reduced","none","70","70","66"
|
| 663 |
+
"female","group B","some college","free/reduced","completed","47","61","64"
|
| 664 |
+
"female","group C","high school","standard","none","80","84","81"
|
| 665 |
+
"male","group E","some college","standard","completed","91","76","78"
|
| 666 |
+
"female","group D","high school","free/reduced","completed","78","86","88"
|
| 667 |
+
"male","group D","some college","free/reduced","completed","56","61","62"
|
| 668 |
+
"male","group C","some high school","standard","none","54","56","47"
|
| 669 |
+
"male","group A","associate's degree","standard","completed","79","65","69"
|
| 670 |
+
"male","group E","associate's degree","standard","completed","93","87","84"
|
| 671 |
+
"male","group D","some high school","standard","completed","74","78","78"
|
| 672 |
+
"female","group E","associate's degree","free/reduced","none","83","90","95"
|
| 673 |
+
"male","group C","high school","standard","none","90","78","78"
|
| 674 |
+
"female","group C","some college","free/reduced","completed","62","78","71"
|
| 675 |
+
"female","group D","bachelor's degree","standard","none","58","61","59"
|
| 676 |
+
"male","group E","some college","free/reduced","none","73","73","63"
|
| 677 |
+
"male","group C","some high school","standard","none","63","59","51"
|
| 678 |
+
"male","group D","associate's degree","standard","completed","89","83","81"
|
| 679 |
+
"male","group D","some college","standard","none","75","66","72"
|
| 680 |
+
"male","group C","some college","free/reduced","none","51","54","51"
|
| 681 |
+
"female","group C","some high school","free/reduced","completed","58","80","76"
|
| 682 |
+
"female","group C","bachelor's degree","standard","completed","92","88","94"
|
| 683 |
+
"female","group D","associate's degree","free/reduced","none","39","65","64"
|
| 684 |
+
"female","group B","associate's degree","standard","none","84","90","89"
|
| 685 |
+
"male","group C","some college","standard","completed","71","66","70"
|
| 686 |
+
"female","group E","high school","standard","none","85","86","88"
|
| 687 |
+
"female","group B","high school","free/reduced","none","59","74","68"
|
| 688 |
+
"male","group D","bachelor's degree","standard","none","71","67","64"
|
| 689 |
+
"male","group E","some high school","standard","none","74","60","59"
|
| 690 |
+
"male","group D","some college","free/reduced","none","62","58","56"
|
| 691 |
+
"female","group E","associate's degree","free/reduced","completed","83","86","91"
|
| 692 |
+
"male","group D","some college","standard","none","74","63","65"
|
| 693 |
+
"male","group B","some high school","free/reduced","completed","64","62","55"
|
| 694 |
+
"male","group C","some college","standard","none","79","76","69"
|
| 695 |
+
"female","group C","high school","free/reduced","none","24","48","46"
|
| 696 |
+
"male","group E","associate's degree","free/reduced","completed","66","60","64"
|
| 697 |
+
"female","group D","some high school","standard","completed","69","86","87"
|
| 698 |
+
"male","group C","some high school","standard","none","65","58","57"
|
| 699 |
+
"male","group E","some high school","standard","none","66","63","60"
|
| 700 |
+
"female","group E","high school","standard","none","54","56","56"
|
| 701 |
+
"male","group D","some high school","standard","none","59","48","48"
|
| 702 |
+
"male","group C","some college","free/reduced","none","60","67","61"
|
| 703 |
+
"female","group D","some college","standard","none","68","76","79"
|
| 704 |
+
"female","group A","high school","standard","none","61","69","66"
|
| 705 |
+
"female","group E","some college","free/reduced","none","84","88","82"
|
| 706 |
+
"female","group B","master's degree","standard","none","62","67","70"
|
| 707 |
+
"female","group A","some high school","standard","none","70","75","70"
|
| 708 |
+
"male","group B","high school","free/reduced","completed","76","81","72"
|
| 709 |
+
"female","group B","associate's degree","standard","completed","81","92","97"
|
| 710 |
+
"male","group B","master's degree","free/reduced","none","54","60","60"
|
| 711 |
+
"male","group D","high school","standard","none","67","65","59"
|
| 712 |
+
"male","group A","some high school","standard","completed","56","53","53"
|
| 713 |
+
"male","group D","bachelor's degree","free/reduced","none","63","59","51"
|
| 714 |
+
"male","group C","associate's degree","free/reduced","none","39","44","36"
|
| 715 |
+
"male","group C","master's degree","standard","none","93","78","77"
|
| 716 |
+
"female","group E","some high school","free/reduced","completed","65","72","76"
|
| 717 |
+
"male","group A","associate's degree","standard","none","83","83","70"
|
| 718 |
+
"male","group D","associate's degree","free/reduced","completed","75","78","77"
|
| 719 |
+
"male","group C","some college","free/reduced","none","71","74","73"
|
| 720 |
+
"female","group C","some college","standard","none","46","52","48"
|
| 721 |
+
"female","group D","bachelor's degree","standard","completed","60","74","72"
|
| 722 |
+
"male","group D","bachelor's degree","standard","none","55","35","43"
|
| 723 |
+
"male","group C","master's degree","standard","completed","79","72","74"
|
| 724 |
+
"male","group C","associate's degree","free/reduced","none","62","55","50"
|
| 725 |
+
"female","group C","high school","standard","completed","55","72","70"
|
| 726 |
+
"female","group B","some college","standard","none","58","64","56"
|
| 727 |
+
"male","group D","associate's degree","free/reduced","none","82","76","75"
|
| 728 |
+
"female","group B","high school","free/reduced","none","30","47","46"
|
| 729 |
+
"male","group C","some college","standard","none","80","79","74"
|
| 730 |
+
"male","group D","some college","standard","none","98","88","85"
|
| 731 |
+
"female","group A","some college","standard","none","83","91","92"
|
| 732 |
+
"female","group B","bachelor's degree","standard","none","81","84","86"
|
| 733 |
+
"female","group C","high school","free/reduced","completed","54","68","69"
|
| 734 |
+
"female","group D","associate's degree","standard","completed","82","95","100"
|
| 735 |
+
"female","group E","high school","free/reduced","none","62","70","64"
|
| 736 |
+
"female","group E","high school","free/reduced","completed","70","77","86"
|
| 737 |
+
"female","group C","some college","standard","none","77","85","85"
|
| 738 |
+
"male","group C","some college","standard","none","55","48","46"
|
| 739 |
+
"male","group D","high school","standard","completed","78","76","80"
|
| 740 |
+
"male","group A","associate's degree","free/reduced","completed","69","77","77"
|
| 741 |
+
"female","group B","some college","free/reduced","completed","58","62","64"
|
| 742 |
+
"female","group D","high school","free/reduced","completed","39","52","58"
|
| 743 |
+
"male","group D","some high school","standard","none","80","80","79"
|
| 744 |
+
"male","group B","some college","standard","none","76","70","67"
|
| 745 |
+
"female","group A","high school","standard","none","52","68","66"
|
| 746 |
+
"male","group B","master's degree","standard","none","88","78","84"
|
| 747 |
+
"male","group C","master's degree","free/reduced","none","82","69","76"
|
| 748 |
+
"male","group C","some college","free/reduced","none","62","65","61"
|
| 749 |
+
"female","group E","some high school","standard","completed","90","96","98"
|
| 750 |
+
"female","group A","associate's degree","free/reduced","none","41","49","51"
|
| 751 |
+
"male","group C","some college","free/reduced","completed","59","69","63"
|
| 752 |
+
"female","group B","some college","standard","none","61","69","73"
|
| 753 |
+
"male","group C","bachelor's degree","standard","none","68","56","57"
|
| 754 |
+
"female","group C","associate's degree","standard","none","60","75","72"
|
| 755 |
+
"female","group B","some high school","free/reduced","completed","37","48","46"
|
| 756 |
+
"male","group E","some college","free/reduced","none","67","67","62"
|
| 757 |
+
"female","group A","associate's degree","standard","none","73","76","74"
|
| 758 |
+
"male","group A","some college","free/reduced","completed","74","75","78"
|
| 759 |
+
"female","group C","some college","free/reduced","completed","67","89","89"
|
| 760 |
+
"female","group B","some college","free/reduced","none","37","51","51"
|
| 761 |
+
"female","group A","high school","standard","none","61","73","74"
|
| 762 |
+
"female","group C","some college","free/reduced","completed","64","81","87"
|
| 763 |
+
"female","group D","some college","standard","none","74","81","82"
|
| 764 |
+
"male","group C","high school","free/reduced","none","34","37","27"
|
| 765 |
+
"female","group D","high school","standard","none","54","62","62"
|
| 766 |
+
"female","group B","some college","standard","none","65","76","70"
|
| 767 |
+
"male","group D","some college","standard","none","81","86","78"
|
| 768 |
+
"male","group E","master's degree","standard","completed","88","89","87"
|
| 769 |
+
"male","group D","some high school","standard","none","82","70","67"
|
| 770 |
+
"female","group C","some high school","standard","none","70","75","78"
|
| 771 |
+
"male","group C","some high school","standard","completed","60","51","55"
|
| 772 |
+
"female","group C","master's degree","standard","none","70","81","75"
|
| 773 |
+
"female","group C","some high school","standard","none","67","72","71"
|
| 774 |
+
"female","group E","bachelor's degree","standard","completed","98","100","99"
|
| 775 |
+
"male","group D","some high school","free/reduced","completed","35","56","54"
|
| 776 |
+
"female","group C","associate's degree","standard","none","69","82","78"
|
| 777 |
+
"male","group D","high school","free/reduced","completed","38","38","41"
|
| 778 |
+
"male","group A","high school","free/reduced","none","70","74","65"
|
| 779 |
+
"female","group E","some high school","free/reduced","completed","42","59","59"
|
| 780 |
+
"female","group A","some high school","free/reduced","none","47","58","54"
|
| 781 |
+
"female","group B","bachelor's degree","free/reduced","completed","49","57","61"
|
| 782 |
+
"male","group E","some college","standard","completed","90","93","91"
|
| 783 |
+
"male","group D","associate's degree","free/reduced","none","49","54","50"
|
| 784 |
+
"male","group D","master's degree","free/reduced","none","83","86","87"
|
| 785 |
+
"male","group C","associate's degree","free/reduced","none","82","86","78"
|
| 786 |
+
"female","group C","associate's degree","standard","none","72","69","70"
|
| 787 |
+
"female","group D","associate's degree","standard","none","67","67","67"
|
| 788 |
+
"male","group B","master's degree","standard","none","92","89","83"
|
| 789 |
+
"female","group C","master's degree","standard","none","59","64","64"
|
| 790 |
+
"male","group D","bachelor's degree","standard","none","64","63","64"
|
| 791 |
+
"female","group C","some high school","standard","none","88","90","90"
|
| 792 |
+
"male","group D","some college","standard","none","92","77","84"
|
| 793 |
+
"male","group C","associate's degree","free/reduced","none","82","73","74"
|
| 794 |
+
"female","group C","some college","standard","none","59","72","70"
|
| 795 |
+
"male","group C","high school","free/reduced","none","45","43","47"
|
| 796 |
+
"male","group C","high school","free/reduced","none","56","67","62"
|
| 797 |
+
"male","group B","high school","standard","none","52","48","49"
|
| 798 |
+
"male","group D","associate's degree","standard","none","86","72","76"
|
| 799 |
+
"female","group D","some college","standard","completed","81","93","94"
|
| 800 |
+
"female","group B","associate's degree","free/reduced","none","61","64","63"
|
| 801 |
+
"male","group B","high school","standard","none","51","52","46"
|
| 802 |
+
"female","group D","bachelor's degree","free/reduced","none","69","85","83"
|
| 803 |
+
"male","group B","high school","standard","none","81","71","62"
|
| 804 |
+
"female","group D","bachelor's degree","free/reduced","none","73","85","83"
|
| 805 |
+
"female","group E","bachelor's degree","standard","completed","92","87","92"
|
| 806 |
+
"male","group E","associate's degree","standard","none","71","63","53"
|
| 807 |
+
"female","group C","high school","standard","none","61","57","55"
|
| 808 |
+
"male","group C","associate's degree","standard","none","80","76","74"
|
| 809 |
+
"male","group B","some high school","free/reduced","none","38","38","30"
|
| 810 |
+
"male","group B","some high school","standard","completed","72","62","62"
|
| 811 |
+
"female","group E","some college","standard","completed","96","98","100"
|
| 812 |
+
"female","group B","associate's degree","standard","completed","64","66","72"
|
| 813 |
+
"female","group B","some high school","standard","none","44","65","59"
|
| 814 |
+
"female","group D","some college","standard","completed","81","99","96"
|
| 815 |
+
"male","group B","high school","standard","completed","85","75","72"
|
| 816 |
+
"male","group E","associate's degree","standard","none","82","76","71"
|
| 817 |
+
"male","group B","associate's degree","standard","none","72","67","64"
|
| 818 |
+
"female","group C","master's degree","free/reduced","none","43","57","59"
|
| 819 |
+
"female","group B","some college","standard","none","58","69","63"
|
| 820 |
+
"male","group E","some college","free/reduced","completed","72","73","75"
|
| 821 |
+
"male","group D","some college","standard","completed","80","67","72"
|
| 822 |
+
"male","group D","high school","standard","none","81","62","61"
|
| 823 |
+
"male","group E","some high school","free/reduced","none","66","60","59"
|
| 824 |
+
"male","group B","associate's degree","standard","none","74","65","61"
|
| 825 |
+
"male","group D","master's degree","free/reduced","completed","75","70","76"
|
| 826 |
+
"male","group C","some college","standard","none","68","58","54"
|
| 827 |
+
"male","group D","some high school","free/reduced","none","67","63","63"
|
| 828 |
+
"male","group B","some college","standard","none","58","47","45"
|
| 829 |
+
"male","group D","some college","standard","none","79","56","68"
|
| 830 |
+
"male","group C","some high school","standard","none","63","63","63"
|
| 831 |
+
"female","group B","associate's degree","free/reduced","none","59","72","72"
|
| 832 |
+
"male","group C","bachelor's degree","free/reduced","none","47","53","42"
|
| 833 |
+
"male","group D","some college","free/reduced","completed","67","78","70"
|
| 834 |
+
"male","group A","some college","standard","completed","92","86","88"
|
| 835 |
+
"male","group D","associate's degree","standard","none","44","45","41"
|
| 836 |
+
"male","group C","master's degree","free/reduced","none","57","54","48"
|
| 837 |
+
"female","group D","bachelor's degree","standard","completed","83","100","100"
|
| 838 |
+
"female","group A","master's degree","standard","completed","68","76","76"
|
| 839 |
+
"male","group B","associate's degree","standard","none","59","52","45"
|
| 840 |
+
"female","group B","some high school","free/reduced","none","36","51","49"
|
| 841 |
+
"male","group A","some college","standard","completed","56","51","44"
|
| 842 |
+
"female","group E","high school","free/reduced","completed","80","94","97"
|
| 843 |
+
"male","group C","some college","free/reduced","completed","62","72","67"
|
| 844 |
+
"male","group D","some high school","standard","none","90","72","79"
|
| 845 |
+
"male","group A","associate's degree","standard","completed","55","62","58"
|
| 846 |
+
"female","group C","bachelor's degree","free/reduced","completed","44","45","52"
|
| 847 |
+
"male","group C","high school","standard","completed","72","63","66"
|
| 848 |
+
"female","group E","high school","standard","none","92","94","94"
|
| 849 |
+
"male","group B","high school","free/reduced","completed","73","68","71"
|
| 850 |
+
"female","group D","high school","standard","completed","75","74","75"
|
| 851 |
+
"male","group E","associate's degree","standard","completed","82","78","78"
|
| 852 |
+
"male","group C","some high school","standard","none","84","84","74"
|
| 853 |
+
"male","group C","master's degree","standard","none","81","80","73"
|
| 854 |
+
"male","group A","some college","standard","none","82","68","63"
|
| 855 |
+
"female","group C","master's degree","standard","completed","79","92","87"
|
| 856 |
+
"female","group C","high school","standard","none","31","49","42"
|
| 857 |
+
"male","group E","some high school","standard","none","73","62","59"
|
| 858 |
+
"female","group E","some college","standard","none","89","93","98"
|
| 859 |
+
"male","group E","bachelor's degree","standard","completed","100","100","100"
|
| 860 |
+
"female","group D","associate's degree","free/reduced","completed","47","58","56"
|
| 861 |
+
"male","group E","some high school","standard","none","94","75","75"
|
| 862 |
+
"male","group B","associate's degree","standard","completed","79","77","75"
|
| 863 |
+
"male","group C","high school","free/reduced","completed","77","80","74"
|
| 864 |
+
"male","group D","some college","standard","none","63","60","53"
|
| 865 |
+
"male","group A","high school","standard","none","56","45","38"
|
| 866 |
+
"female","group B","associate's degree","free/reduced","completed","58","67","70"
|
| 867 |
+
"male","group C","some college","standard","completed","77","80","85"
|
| 868 |
+
"female","group E","some college","standard","completed","82","85","91"
|
| 869 |
+
"female","group B","high school","free/reduced","none","51","69","64"
|
| 870 |
+
"male","group E","some high school","standard","none","92","80","78"
|
| 871 |
+
"female","group C","high school","standard","none","87","90","85"
|
| 872 |
+
"male","group E","associate's degree","standard","completed","88","78","86"
|
| 873 |
+
"female","group C","some college","standard","none","77","79","78"
|
| 874 |
+
"female","group E","some college","standard","none","62","65","65"
|
| 875 |
+
"male","group D","associate's degree","standard","none","61","56","56"
|
| 876 |
+
"female","group C","associate's degree","free/reduced","none","65","66","66"
|
| 877 |
+
"male","group E","master's degree","standard","completed","84","76","81"
|
| 878 |
+
"female","group D","some high school","free/reduced","none","30","59","51"
|
| 879 |
+
"male","group A","associate's degree","free/reduced","completed","63","61","64"
|
| 880 |
+
"female","group E","high school","standard","none","79","78","83"
|
| 881 |
+
"female","group C","some college","standard","none","51","72","63"
|
| 882 |
+
"female","group D","some college","standard","none","66","70","67"
|
| 883 |
+
"female","group D","associate's degree","standard","none","63","69","66"
|
| 884 |
+
"female","group D","associate's degree","free/reduced","none","71","78","81"
|
| 885 |
+
"female","group C","master's degree","standard","none","69","76","71"
|
| 886 |
+
"female","group C","some college","free/reduced","none","70","81","76"
|
| 887 |
+
"male","group D","some high school","standard","none","67","59","59"
|
| 888 |
+
"female","group C","some high school","standard","none","53","48","49"
|
| 889 |
+
"female","group B","bachelor's degree","free/reduced","none","50","62","62"
|
| 890 |
+
"female","group C","high school","standard","none","59","63","61"
|
| 891 |
+
"female","group C","high school","free/reduced","completed","54","72","68"
|
| 892 |
+
"male","group E","some college","standard","none","81","72","70"
|
| 893 |
+
"male","group C","high school","standard","none","69","58","52"
|
| 894 |
+
"male","group E","high school","standard","none","87","84","76"
|
| 895 |
+
"female","group B","bachelor's degree","standard","none","88","84","88"
|
| 896 |
+
"female","group E","bachelor's degree","standard","none","52","53","55"
|
| 897 |
+
"female","group C","some high school","standard","none","60","61","57"
|
| 898 |
+
"female","group D","some high school","standard","completed","77","83","84"
|
| 899 |
+
"male","group C","associate's degree","free/reduced","completed","47","49","49"
|
| 900 |
+
"male","group C","some college","standard","none","76","65","58"
|
| 901 |
+
"female","group B","some college","standard","completed","92","100","100"
|
| 902 |
+
"female","group E","some high school","standard","none","87","87","84"
|
| 903 |
+
"female","group D","high school","standard","none","74","82","81"
|
| 904 |
+
"male","group A","some high school","standard","completed","67","60","69"
|
| 905 |
+
"male","group B","some college","free/reduced","none","56","47","48"
|
| 906 |
+
"female","group D","associate's degree","standard","none","84","92","90"
|
| 907 |
+
"male","group B","associate's degree","standard","none","73","54","57"
|
| 908 |
+
"male","group D","master's degree","free/reduced","none","75","65","65"
|
| 909 |
+
"male","group D","high school","standard","completed","70","72","67"
|
| 910 |
+
"male","group C","high school","standard","none","79","72","72"
|
| 911 |
+
"male","group C","bachelor's degree","standard","completed","86","77","80"
|
| 912 |
+
"female","group B","high school","standard","completed","77","83","91"
|
| 913 |
+
"male","group D","high school","free/reduced","completed","58","67","67"
|
| 914 |
+
"male","group C","some college","free/reduced","completed","70","66","68"
|
| 915 |
+
"female","group D","master's degree","standard","none","69","67","78"
|
| 916 |
+
"male","group D","some college","standard","completed","94","97","95"
|
| 917 |
+
"female","group E","some college","free/reduced","none","76","82","81"
|
| 918 |
+
"female","group C","high school","standard","none","71","72","69"
|
| 919 |
+
"male","group C","associate's degree","standard","none","76","72","73"
|
| 920 |
+
"male","group D","bachelor's degree","free/reduced","none","85","78","81"
|
| 921 |
+
"male","group C","some high school","standard","none","94","84","80"
|
| 922 |
+
"male","group E","master's degree","standard","none","91","82","74"
|
| 923 |
+
"male","group D","associate's degree","standard","completed","100","100","98"
|
| 924 |
+
"male","group B","high school","standard","none","65","66","61"
|
| 925 |
+
"female","group D","bachelor's degree","free/reduced","none","68","79","78"
|
| 926 |
+
"male","group C","high school","free/reduced","none","59","60","56"
|
| 927 |
+
"female","group B","bachelor's degree","standard","none","73","87","89"
|
| 928 |
+
"male","group B","some college","free/reduced","completed","76","83","78"
|
| 929 |
+
"female","group C","some high school","standard","none","86","92","83"
|
| 930 |
+
"female","group C","associate's degree","standard","completed","75","74","80"
|
| 931 |
+
"male","group D","some high school","standard","none","68","53","53"
|
| 932 |
+
"female","group D","high school","free/reduced","none","68","73","71"
|
| 933 |
+
"male","group D","some college","standard","none","59","62","52"
|
| 934 |
+
"male","group B","bachelor's degree","standard","none","84","80","77"
|
| 935 |
+
"male","group D","some college","free/reduced","none","67","58","58"
|
| 936 |
+
"male","group C","associate's degree","free/reduced","none","59","64","60"
|
| 937 |
+
"male","group C","bachelor's degree","free/reduced","none","58","66","67"
|
| 938 |
+
"male","group D","associate's degree","standard","none","72","62","60"
|
| 939 |
+
"female","group A","associate's degree","standard","none","61","65","59"
|
| 940 |
+
"female","group B","some high school","free/reduced","none","55","70","60"
|
| 941 |
+
"female","group D","bachelor's degree","standard","none","41","51","53"
|
| 942 |
+
"female","group D","some college","free/reduced","none","36","45","44"
|
| 943 |
+
"male","group E","associate's degree","standard","completed","84","75","75"
|
| 944 |
+
"male","group E","associate's degree","free/reduced","none","57","45","42"
|
| 945 |
+
"female","group C","associate's degree","standard","none","81","96","93"
|
| 946 |
+
"male","group A","some high school","standard","none","59","60","50"
|
| 947 |
+
"male","group D","some college","free/reduced","none","66","56","56"
|
| 948 |
+
"male","group C","some college","free/reduced","completed","65","62","63"
|
| 949 |
+
"female","group C","associate's degree","standard","none","65","85","80"
|
| 950 |
+
"female","group A","some high school","free/reduced","completed","53","77","75"
|
| 951 |
+
"male","group B","some high school","standard","none","79","69","70"
|
| 952 |
+
"female","group C","associate's degree","standard","completed","89","86","92"
|
| 953 |
+
"female","group E","high school","free/reduced","none","85","91","88"
|
| 954 |
+
"female","group C","some college","standard","none","79","93","81"
|
| 955 |
+
"female","group B","associate's degree","standard","completed","83","96","96"
|
| 956 |
+
"female","group E","some high school","free/reduced","none","62","71","61"
|
| 957 |
+
"female","group E","some college","standard","none","64","68","60"
|
| 958 |
+
"female","group E","bachelor's degree","standard","none","66","65","76"
|
| 959 |
+
"female","group B","some high school","free/reduced","none","36","52","51"
|
| 960 |
+
"female","group C","some high school","standard","none","74","77","72"
|
| 961 |
+
"female","group B","bachelor's degree","standard","completed","85","96","95"
|
| 962 |
+
"female","group C","high school","standard","completed","44","69","68"
|
| 963 |
+
"female","group E","some college","standard","completed","68","78","77"
|
| 964 |
+
"female","group C","some college","standard","completed","59","66","71"
|
| 965 |
+
"male","group B","high school","standard","none","64","57","52"
|
| 966 |
+
"female","group C","some college","free/reduced","none","62","74","74"
|
| 967 |
+
"male","group C","master's degree","free/reduced","none","45","53","45"
|
| 968 |
+
"male","group D","high school","standard","none","85","81","83"
|
| 969 |
+
"male","group C","some high school","standard","none","45","48","46"
|
| 970 |
+
"male","group B","associate's degree","standard","none","81","66","58"
|
| 971 |
+
"male","group C","high school","standard","none","65","70","57"
|
| 972 |
+
"female","group C","high school","free/reduced","none","48","60","55"
|
| 973 |
+
"female","group C","high school","standard","none","59","66","69"
|
| 974 |
+
"female","group C","some college","standard","completed","80","88","90"
|
| 975 |
+
"female","group A","bachelor's degree","standard","completed","66","80","75"
|
| 976 |
+
"female","group B","bachelor's degree","standard","completed","80","93","99"
|
| 977 |
+
"male","group E","some high school","free/reduced","none","47","54","48"
|
| 978 |
+
"female","group B","high school","standard","none","74","90","83"
|
| 979 |
+
"male","group B","bachelor's degree","free/reduced","none","55","59","49"
|
| 980 |
+
"male","group D","associate's degree","standard","none","100","93","89"
|
| 981 |
+
"male","group C","some high school","standard","none","83","84","78"
|
| 982 |
+
"male","group C","associate's degree","standard","none","76","74","67"
|
| 983 |
+
"male","group E","some high school","standard","completed","87","83","80"
|
| 984 |
+
"male","group C","some high school","standard","none","28","27","23"
|
| 985 |
+
"male","group D","some high school","standard","completed","76","78","79"
|
| 986 |
+
"female","group E","bachelor's degree","standard","none","86","87","90"
|
| 987 |
+
"female","group A","bachelor's degree","free/reduced","none","65","64","73"
|
| 988 |
+
"male","group D","master's degree","standard","none","88","72","78"
|
| 989 |
+
"female","group D","master's degree","standard","completed","87","95","100"
|
| 990 |
+
"male","group D","some high school","standard","none","51","53","45"
|
| 991 |
+
"male","group D","associate's degree","standard","completed","67","62","67"
|
| 992 |
+
"female","group C","some high school","standard","none","70","77","76"
|
| 993 |
+
"female","group A","associate's degree","standard","none","72","77","77"
|
| 994 |
+
"male","group A","associate's degree","free/reduced","completed","75","67","67"
|
| 995 |
+
"male","group D","some high school","standard","none","83","74","80"
|
| 996 |
+
"female","group B","associate's degree","standard","none","82","97","90"
|
| 997 |
+
"male","group C","some college","standard","none","77","77","71"
|
| 998 |
+
"male","group C","some college","standard","none","80","66","66"
|
| 999 |
+
"female","group A","high school","standard","completed","67","86","86"
|
| 1000 |
+
"male","group E","high school","standard","none","80","72","62"
|
| 1001 |
+
"male","group D","high school","standard","none","58","47","45"
|