30 lines
706 B
Python
30 lines
706 B
Python
import numpy as np
|
|
|
|
from analyze import analyze
|
|
|
|
dataset = np.load("clean.npy")
|
|
print(f"dataset shape: {dataset.shape}; analyzing column 9 (commute)")
|
|
print("\t0 - dorms")
|
|
print("\t1 - <= 15m")
|
|
print("\t2 - <= 30m")
|
|
print("\t3 - <= 1h")
|
|
print("\t4 - > 1h")
|
|
print("")
|
|
|
|
|
|
def analyze_living(name: str, col: np.ndarray):
|
|
occupation_col = dataset[:, 9]
|
|
analyze(name, [
|
|
col[occupation_col == 0],
|
|
col[occupation_col == 1],
|
|
col[occupation_col == 2],
|
|
col[occupation_col == 3],
|
|
col[occupation_col == 4]
|
|
])
|
|
|
|
|
|
analyze_living("gpa", dataset[:, 2])
|
|
analyze_living("math", dataset[:, 3])
|
|
analyze_living("slovak", dataset[:, 4])
|
|
analyze_living("english", dataset[:, 5])
|